@sapui5/types 1.121.2 → 1.122.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/package.json +1 -1
- package/types/index.d.ts +7 -7
- 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 +11 -5
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +47 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +81 -267
- package/types/sap.fe.navigation.d.ts +109 -10
- 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 +57 -2
- package/types/sap.insights.d.ts +22 -1
- package/types/{mobile-1.121.0-esm-d.ts → sap.m.d.ts} +1042 -56
- 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 +297 -210
- package/types/sap.suite.ui.commons.d.ts +1488 -113
- package/types/sap.suite.ui.generic.template.d.ts +5 -3
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/{tnt-1.121.0-esm-d.ts → sap.tnt.d.ts} +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/{commons-1.121.0-esm-d.ts → sap.ui.commons.d.ts} +4 -1
- package/types/sap.ui.comp.d.ts +227 -28
- package/types/{core-1.121.0-esm-d.ts → sap.ui.core.d.ts} +349 -177
- package/types/sap.ui.dt.d.ts +3 -0
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -3
- 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 +5 -1
- package/types/sap.ui.layout.d.ts +4 -4
- package/types/{mdc-1.121.0-esm-d.ts → sap.ui.mdc.d.ts} +161 -40
- 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 +15 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +4 -4
- package/types/{ux3-1.121.0-esm-d.ts → sap.ui.ux3.d.ts} +3 -3
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +96 -289
- 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 +7 -480
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +52 -3
- 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/dt-1.121.0-esm-d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.122.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -1698,6 +1698,187 @@ declare module "sap/suite/ui/commons/library" {
|
|
|
1698
1698
|
}
|
|
1699
1699
|
}
|
|
1700
1700
|
|
|
1701
|
+
declare module "sap/suite/ui/commons/App" {
|
|
1702
|
+
import {
|
|
1703
|
+
default as BaseApp,
|
|
1704
|
+
$BaseAppSettings,
|
|
1705
|
+
} from "sap/suite/ui/commons/BaseApp";
|
|
1706
|
+
|
|
1707
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1708
|
+
|
|
1709
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1710
|
+
|
|
1711
|
+
/**
|
|
1712
|
+
* Provides the App Class.
|
|
1713
|
+
*
|
|
1714
|
+
* @since 1.121.0
|
|
1715
|
+
* @experimental (since 1.121)
|
|
1716
|
+
*/
|
|
1717
|
+
export default class App extends BaseApp {
|
|
1718
|
+
/**
|
|
1719
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1720
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1721
|
+
* of the syntax of the settings object.
|
|
1722
|
+
*/
|
|
1723
|
+
constructor();
|
|
1724
|
+
|
|
1725
|
+
/**
|
|
1726
|
+
* Creates a new subclass of class sap.suite.ui.commons.App with name `sClassName` and enriches it with
|
|
1727
|
+
* the information contained in `oClassInfo`.
|
|
1728
|
+
*
|
|
1729
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseApp.extend}.
|
|
1730
|
+
*
|
|
1731
|
+
*
|
|
1732
|
+
* @returns Created class / constructor function
|
|
1733
|
+
*/
|
|
1734
|
+
static extend<T extends Record<string, unknown>>(
|
|
1735
|
+
/**
|
|
1736
|
+
* Name of the class being created
|
|
1737
|
+
*/
|
|
1738
|
+
sClassName: string,
|
|
1739
|
+
/**
|
|
1740
|
+
* Object literal with information about the class
|
|
1741
|
+
*/
|
|
1742
|
+
oClassInfo?: sap.ClassInfo<T, App>,
|
|
1743
|
+
/**
|
|
1744
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1745
|
+
* used by this class
|
|
1746
|
+
*/
|
|
1747
|
+
FNMetaImpl?: Function
|
|
1748
|
+
): Function;
|
|
1749
|
+
/**
|
|
1750
|
+
* Returns a metadata object for class sap.suite.ui.commons.App.
|
|
1751
|
+
*
|
|
1752
|
+
*
|
|
1753
|
+
* @returns Metadata object describing this class
|
|
1754
|
+
*/
|
|
1755
|
+
static getMetadata(): ElementMetadata;
|
|
1756
|
+
/**
|
|
1757
|
+
* Gets current value of property {@link #getUrl url}.
|
|
1758
|
+
*
|
|
1759
|
+
* Url of the app where the user navigates to on click
|
|
1760
|
+
*
|
|
1761
|
+
* Default value is `empty string`.
|
|
1762
|
+
*
|
|
1763
|
+
*
|
|
1764
|
+
* @returns Value of property `url`
|
|
1765
|
+
*/
|
|
1766
|
+
getUrl(): string;
|
|
1767
|
+
/**
|
|
1768
|
+
* Gets current value of property {@link #getVizId vizId}.
|
|
1769
|
+
*
|
|
1770
|
+
* VizId of the app. Used for enabling addition of apps to FavoriteApp panel
|
|
1771
|
+
*
|
|
1772
|
+
* Default value is `empty string`.
|
|
1773
|
+
*
|
|
1774
|
+
*
|
|
1775
|
+
* @returns Value of property `vizId`
|
|
1776
|
+
*/
|
|
1777
|
+
getVizId(): string;
|
|
1778
|
+
/**
|
|
1779
|
+
* Sets a new value for property {@link #getUrl url}.
|
|
1780
|
+
*
|
|
1781
|
+
* Url of the app where the user navigates to on click
|
|
1782
|
+
*
|
|
1783
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1784
|
+
*
|
|
1785
|
+
* Default value is `empty string`.
|
|
1786
|
+
*
|
|
1787
|
+
*
|
|
1788
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1789
|
+
*/
|
|
1790
|
+
setUrl(
|
|
1791
|
+
/**
|
|
1792
|
+
* New value for property `url`
|
|
1793
|
+
*/
|
|
1794
|
+
sUrl?: string
|
|
1795
|
+
): this;
|
|
1796
|
+
/**
|
|
1797
|
+
* Sets a new value for property {@link #getVizId vizId}.
|
|
1798
|
+
*
|
|
1799
|
+
* VizId of the app. Used for enabling addition of apps to FavoriteApp panel
|
|
1800
|
+
*
|
|
1801
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1802
|
+
*
|
|
1803
|
+
* Default value is `empty string`.
|
|
1804
|
+
*
|
|
1805
|
+
*
|
|
1806
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1807
|
+
*/
|
|
1808
|
+
setVizId(
|
|
1809
|
+
/**
|
|
1810
|
+
* New value for property `vizId`
|
|
1811
|
+
*/
|
|
1812
|
+
sVizId?: string
|
|
1813
|
+
): this;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
export interface $AppSettings extends $BaseAppSettings {
|
|
1817
|
+
/**
|
|
1818
|
+
* Url of the app where the user navigates to on click
|
|
1819
|
+
*/
|
|
1820
|
+
url?: string | PropertyBindingInfo;
|
|
1821
|
+
|
|
1822
|
+
/**
|
|
1823
|
+
* VizId of the app. Used for enabling addition of apps to FavoriteApp panel
|
|
1824
|
+
*/
|
|
1825
|
+
vizId?: string | PropertyBindingInfo;
|
|
1826
|
+
}
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
declare module "sap/suite/ui/commons/AppsContainer" {
|
|
1830
|
+
import {
|
|
1831
|
+
default as BaseContainer,
|
|
1832
|
+
$BaseContainerSettings,
|
|
1833
|
+
} from "sap/suite/ui/commons/BaseContainer";
|
|
1834
|
+
|
|
1835
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1836
|
+
|
|
1837
|
+
/**
|
|
1838
|
+
* Container class for Apps Panel
|
|
1839
|
+
*
|
|
1840
|
+
* @since 1.121
|
|
1841
|
+
* @experimental (since 1.121)
|
|
1842
|
+
*/
|
|
1843
|
+
export default class AppsContainer extends BaseContainer {
|
|
1844
|
+
constructor();
|
|
1845
|
+
|
|
1846
|
+
/**
|
|
1847
|
+
* Creates a new subclass of class sap.suite.ui.commons.AppsContainer with name `sClassName` and enriches
|
|
1848
|
+
* it with the information contained in `oClassInfo`.
|
|
1849
|
+
*
|
|
1850
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseContainer.extend}.
|
|
1851
|
+
*
|
|
1852
|
+
*
|
|
1853
|
+
* @returns Created class / constructor function
|
|
1854
|
+
*/
|
|
1855
|
+
static extend<T extends Record<string, unknown>>(
|
|
1856
|
+
/**
|
|
1857
|
+
* Name of the class being created
|
|
1858
|
+
*/
|
|
1859
|
+
sClassName: string,
|
|
1860
|
+
/**
|
|
1861
|
+
* Object literal with information about the class
|
|
1862
|
+
*/
|
|
1863
|
+
oClassInfo?: sap.ClassInfo<T, AppsContainer>,
|
|
1864
|
+
/**
|
|
1865
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1866
|
+
* used by this class
|
|
1867
|
+
*/
|
|
1868
|
+
FNMetaImpl?: Function
|
|
1869
|
+
): Function;
|
|
1870
|
+
/**
|
|
1871
|
+
* Returns a metadata object for class sap.suite.ui.commons.AppsContainer.
|
|
1872
|
+
*
|
|
1873
|
+
*
|
|
1874
|
+
* @returns Metadata object describing this class
|
|
1875
|
+
*/
|
|
1876
|
+
static getMetadata(): ElementMetadata;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
export interface $AppsContainerSettings extends $BaseContainerSettings {}
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1701
1882
|
declare module "sap/suite/ui/commons/AriaProperties" {
|
|
1702
1883
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
1703
1884
|
|
|
@@ -1929,6 +2110,516 @@ declare module "sap/suite/ui/commons/AriaProperties" {
|
|
|
1929
2110
|
}
|
|
1930
2111
|
}
|
|
1931
2112
|
|
|
2113
|
+
declare module "sap/suite/ui/commons/BaseApp" {
|
|
2114
|
+
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
2115
|
+
|
|
2116
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2117
|
+
|
|
2118
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2119
|
+
|
|
2120
|
+
/**
|
|
2121
|
+
* BaseApp class for managing apps.
|
|
2122
|
+
*
|
|
2123
|
+
* @since 1.121.0
|
|
2124
|
+
* @experimental (since 1.121)
|
|
2125
|
+
*/
|
|
2126
|
+
export default abstract class BaseApp extends UI5Element {
|
|
2127
|
+
/**
|
|
2128
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2129
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2130
|
+
* of the syntax of the settings object.
|
|
2131
|
+
*/
|
|
2132
|
+
constructor();
|
|
2133
|
+
|
|
2134
|
+
/**
|
|
2135
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseApp with name `sClassName` and enriches it with
|
|
2136
|
+
* the information contained in `oClassInfo`.
|
|
2137
|
+
*
|
|
2138
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2139
|
+
*
|
|
2140
|
+
*
|
|
2141
|
+
* @returns Created class / constructor function
|
|
2142
|
+
*/
|
|
2143
|
+
static extend<T extends Record<string, unknown>>(
|
|
2144
|
+
/**
|
|
2145
|
+
* Name of the class being created
|
|
2146
|
+
*/
|
|
2147
|
+
sClassName: string,
|
|
2148
|
+
/**
|
|
2149
|
+
* Object literal with information about the class
|
|
2150
|
+
*/
|
|
2151
|
+
oClassInfo?: sap.ClassInfo<T, BaseApp>,
|
|
2152
|
+
/**
|
|
2153
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2154
|
+
* used by this class
|
|
2155
|
+
*/
|
|
2156
|
+
FNMetaImpl?: Function
|
|
2157
|
+
): Function;
|
|
2158
|
+
/**
|
|
2159
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseApp.
|
|
2160
|
+
*
|
|
2161
|
+
*
|
|
2162
|
+
* @returns Metadata object describing this class
|
|
2163
|
+
*/
|
|
2164
|
+
static getMetadata(): ElementMetadata;
|
|
2165
|
+
/**
|
|
2166
|
+
* Gets current value of property {@link #getBgColor bgColor}.
|
|
2167
|
+
*
|
|
2168
|
+
* Background color of the app
|
|
2169
|
+
*
|
|
2170
|
+
* Default value is `empty string`.
|
|
2171
|
+
*
|
|
2172
|
+
*
|
|
2173
|
+
* @returns Value of property `bgColor`
|
|
2174
|
+
*/
|
|
2175
|
+
getBgColor(): string;
|
|
2176
|
+
/**
|
|
2177
|
+
* Gets current value of property {@link #getIcon icon}.
|
|
2178
|
+
*
|
|
2179
|
+
* Icon of the app
|
|
2180
|
+
*
|
|
2181
|
+
* Default value is `empty string`.
|
|
2182
|
+
*
|
|
2183
|
+
*
|
|
2184
|
+
* @returns Value of property `icon`
|
|
2185
|
+
*/
|
|
2186
|
+
getIcon(): string;
|
|
2187
|
+
/**
|
|
2188
|
+
* Gets current value of property {@link #getStatus status}.
|
|
2189
|
+
*
|
|
2190
|
+
* Whether the app is in loaded or loading status
|
|
2191
|
+
*
|
|
2192
|
+
* Default value is `'Loaded'`.
|
|
2193
|
+
*
|
|
2194
|
+
*
|
|
2195
|
+
* @returns Value of property `status`
|
|
2196
|
+
*/
|
|
2197
|
+
getStatus(): string;
|
|
2198
|
+
/**
|
|
2199
|
+
* Gets current value of property {@link #getSubTitle subTitle}.
|
|
2200
|
+
*
|
|
2201
|
+
* Sub header of the app
|
|
2202
|
+
*
|
|
2203
|
+
* Default value is `empty string`.
|
|
2204
|
+
*
|
|
2205
|
+
*
|
|
2206
|
+
* @returns Value of property `subTitle`
|
|
2207
|
+
*/
|
|
2208
|
+
getSubTitle(): string;
|
|
2209
|
+
/**
|
|
2210
|
+
* Gets current value of property {@link #getTitle title}.
|
|
2211
|
+
*
|
|
2212
|
+
* Title of the app
|
|
2213
|
+
*
|
|
2214
|
+
* Default value is `empty string`.
|
|
2215
|
+
*
|
|
2216
|
+
*
|
|
2217
|
+
* @returns Value of property `title`
|
|
2218
|
+
*/
|
|
2219
|
+
getTitle(): string;
|
|
2220
|
+
/**
|
|
2221
|
+
* Sets a new value for property {@link #getBgColor bgColor}.
|
|
2222
|
+
*
|
|
2223
|
+
* Background color of the app
|
|
2224
|
+
*
|
|
2225
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2226
|
+
*
|
|
2227
|
+
* Default value is `empty string`.
|
|
2228
|
+
*
|
|
2229
|
+
*
|
|
2230
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2231
|
+
*/
|
|
2232
|
+
setBgColor(
|
|
2233
|
+
/**
|
|
2234
|
+
* New value for property `bgColor`
|
|
2235
|
+
*/
|
|
2236
|
+
sBgColor?: string
|
|
2237
|
+
): this;
|
|
2238
|
+
/**
|
|
2239
|
+
* Sets a new value for property {@link #getIcon icon}.
|
|
2240
|
+
*
|
|
2241
|
+
* Icon of the app
|
|
2242
|
+
*
|
|
2243
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2244
|
+
*
|
|
2245
|
+
* Default value is `empty string`.
|
|
2246
|
+
*
|
|
2247
|
+
*
|
|
2248
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2249
|
+
*/
|
|
2250
|
+
setIcon(
|
|
2251
|
+
/**
|
|
2252
|
+
* New value for property `icon`
|
|
2253
|
+
*/
|
|
2254
|
+
sIcon?: string
|
|
2255
|
+
): this;
|
|
2256
|
+
/**
|
|
2257
|
+
* Sets a new value for property {@link #getStatus status}.
|
|
2258
|
+
*
|
|
2259
|
+
* Whether the app is in loaded or loading status
|
|
2260
|
+
*
|
|
2261
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2262
|
+
*
|
|
2263
|
+
* Default value is `'Loaded'`.
|
|
2264
|
+
*
|
|
2265
|
+
*
|
|
2266
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2267
|
+
*/
|
|
2268
|
+
setStatus(
|
|
2269
|
+
/**
|
|
2270
|
+
* New value for property `status`
|
|
2271
|
+
*/
|
|
2272
|
+
sStatus?: string
|
|
2273
|
+
): this;
|
|
2274
|
+
/**
|
|
2275
|
+
* Sets a new value for property {@link #getSubTitle subTitle}.
|
|
2276
|
+
*
|
|
2277
|
+
* Sub header of the app
|
|
2278
|
+
*
|
|
2279
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2280
|
+
*
|
|
2281
|
+
* Default value is `empty string`.
|
|
2282
|
+
*
|
|
2283
|
+
*
|
|
2284
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2285
|
+
*/
|
|
2286
|
+
setSubTitle(
|
|
2287
|
+
/**
|
|
2288
|
+
* New value for property `subTitle`
|
|
2289
|
+
*/
|
|
2290
|
+
sSubTitle?: string
|
|
2291
|
+
): this;
|
|
2292
|
+
/**
|
|
2293
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
2294
|
+
*
|
|
2295
|
+
* Title of the app
|
|
2296
|
+
*
|
|
2297
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2298
|
+
*
|
|
2299
|
+
* Default value is `empty string`.
|
|
2300
|
+
*
|
|
2301
|
+
*
|
|
2302
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2303
|
+
*/
|
|
2304
|
+
setTitle(
|
|
2305
|
+
/**
|
|
2306
|
+
* New value for property `title`
|
|
2307
|
+
*/
|
|
2308
|
+
sTitle?: string
|
|
2309
|
+
): this;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
export interface $BaseAppSettings extends $ElementSettings {
|
|
2313
|
+
/**
|
|
2314
|
+
* Title of the app
|
|
2315
|
+
*/
|
|
2316
|
+
title?: string | PropertyBindingInfo;
|
|
2317
|
+
|
|
2318
|
+
/**
|
|
2319
|
+
* Sub header of the app
|
|
2320
|
+
*/
|
|
2321
|
+
subTitle?: string | PropertyBindingInfo;
|
|
2322
|
+
|
|
2323
|
+
/**
|
|
2324
|
+
* Background color of the app
|
|
2325
|
+
*/
|
|
2326
|
+
bgColor?: string | PropertyBindingInfo;
|
|
2327
|
+
|
|
2328
|
+
/**
|
|
2329
|
+
* Icon of the app
|
|
2330
|
+
*/
|
|
2331
|
+
icon?: string | PropertyBindingInfo;
|
|
2332
|
+
|
|
2333
|
+
/**
|
|
2334
|
+
* Whether the app is in loaded or loading status
|
|
2335
|
+
*/
|
|
2336
|
+
status?: string | PropertyBindingInfo;
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
declare module "sap/suite/ui/commons/BaseAppPanel" {
|
|
2341
|
+
import {
|
|
2342
|
+
default as BasePanel,
|
|
2343
|
+
$BasePanelSettings,
|
|
2344
|
+
} from "sap/suite/ui/commons/BasePanel";
|
|
2345
|
+
|
|
2346
|
+
import App from "sap/suite/ui/commons/App";
|
|
2347
|
+
|
|
2348
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2349
|
+
|
|
2350
|
+
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2351
|
+
|
|
2352
|
+
/**
|
|
2353
|
+
* Abstract Panel class for managing Apps
|
|
2354
|
+
*
|
|
2355
|
+
* @since 1.121.0
|
|
2356
|
+
* @experimental (since 1.121)
|
|
2357
|
+
*/
|
|
2358
|
+
export default abstract class BaseAppPanel extends BasePanel {
|
|
2359
|
+
/**
|
|
2360
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2361
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2362
|
+
* of the syntax of the settings object.
|
|
2363
|
+
*/
|
|
2364
|
+
constructor();
|
|
2365
|
+
|
|
2366
|
+
/**
|
|
2367
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseAppPanel with name `sClassName` and enriches
|
|
2368
|
+
* it with the information contained in `oClassInfo`.
|
|
2369
|
+
*
|
|
2370
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BasePanel.extend}.
|
|
2371
|
+
*
|
|
2372
|
+
*
|
|
2373
|
+
* @returns Created class / constructor function
|
|
2374
|
+
*/
|
|
2375
|
+
static extend<T extends Record<string, unknown>>(
|
|
2376
|
+
/**
|
|
2377
|
+
* Name of the class being created
|
|
2378
|
+
*/
|
|
2379
|
+
sClassName: string,
|
|
2380
|
+
/**
|
|
2381
|
+
* Object literal with information about the class
|
|
2382
|
+
*/
|
|
2383
|
+
oClassInfo?: sap.ClassInfo<T, BaseAppPanel>,
|
|
2384
|
+
/**
|
|
2385
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2386
|
+
* used by this class
|
|
2387
|
+
*/
|
|
2388
|
+
FNMetaImpl?: Function
|
|
2389
|
+
): Function;
|
|
2390
|
+
/**
|
|
2391
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseAppPanel.
|
|
2392
|
+
*
|
|
2393
|
+
*
|
|
2394
|
+
* @returns Metadata object describing this class
|
|
2395
|
+
*/
|
|
2396
|
+
static getMetadata(): ElementMetadata;
|
|
2397
|
+
/**
|
|
2398
|
+
* Adds some app to the aggregation {@link #getApps apps}.
|
|
2399
|
+
*
|
|
2400
|
+
*
|
|
2401
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2402
|
+
*/
|
|
2403
|
+
addApp(
|
|
2404
|
+
/**
|
|
2405
|
+
* The app to add; if empty, nothing is inserted
|
|
2406
|
+
*/
|
|
2407
|
+
oApp: App
|
|
2408
|
+
): this;
|
|
2409
|
+
/**
|
|
2410
|
+
* Destroys all the apps in the aggregation {@link #getApps apps}.
|
|
2411
|
+
*
|
|
2412
|
+
*
|
|
2413
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2414
|
+
*/
|
|
2415
|
+
destroyApps(): this;
|
|
2416
|
+
/**
|
|
2417
|
+
* Gets content of aggregation {@link #getApps apps}.
|
|
2418
|
+
*
|
|
2419
|
+
* Holds the apps aggregation
|
|
2420
|
+
*/
|
|
2421
|
+
getApps(): App[];
|
|
2422
|
+
/**
|
|
2423
|
+
* Checks for the provided `sap.suite.ui.commons.App` in the aggregation {@link #getApps apps}. and returns
|
|
2424
|
+
* its index if found or -1 otherwise.
|
|
2425
|
+
*
|
|
2426
|
+
*
|
|
2427
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2428
|
+
*/
|
|
2429
|
+
indexOfApp(
|
|
2430
|
+
/**
|
|
2431
|
+
* The app whose index is looked for
|
|
2432
|
+
*/
|
|
2433
|
+
oApp: App
|
|
2434
|
+
): int;
|
|
2435
|
+
/**
|
|
2436
|
+
* Inserts a app into the aggregation {@link #getApps apps}.
|
|
2437
|
+
*
|
|
2438
|
+
*
|
|
2439
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2440
|
+
*/
|
|
2441
|
+
insertApp(
|
|
2442
|
+
/**
|
|
2443
|
+
* The app to insert; if empty, nothing is inserted
|
|
2444
|
+
*/
|
|
2445
|
+
oApp: App,
|
|
2446
|
+
/**
|
|
2447
|
+
* The `0`-based index the app should be inserted at; for a negative value of `iIndex`, the app is inserted
|
|
2448
|
+
* at position 0; for a value greater than the current size of the aggregation, the app is inserted at the
|
|
2449
|
+
* last position
|
|
2450
|
+
*/
|
|
2451
|
+
iIndex: int
|
|
2452
|
+
): this;
|
|
2453
|
+
/**
|
|
2454
|
+
* Removes all the controls from the aggregation {@link #getApps apps}.
|
|
2455
|
+
*
|
|
2456
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
2457
|
+
*
|
|
2458
|
+
*
|
|
2459
|
+
* @returns An array of the removed elements (might be empty)
|
|
2460
|
+
*/
|
|
2461
|
+
removeAllApps(): App[];
|
|
2462
|
+
/**
|
|
2463
|
+
* Removes a app from the aggregation {@link #getApps apps}.
|
|
2464
|
+
*
|
|
2465
|
+
*
|
|
2466
|
+
* @returns The removed app or `null`
|
|
2467
|
+
*/
|
|
2468
|
+
removeApp(
|
|
2469
|
+
/**
|
|
2470
|
+
* The app to remove or its index or id
|
|
2471
|
+
*/
|
|
2472
|
+
vApp: int | string | App
|
|
2473
|
+
): App | null;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
export interface $BaseAppPanelSettings extends $BasePanelSettings {
|
|
2477
|
+
/**
|
|
2478
|
+
* Holds the apps aggregation
|
|
2479
|
+
*/
|
|
2480
|
+
apps?: App[] | App | AggregationBindingInfo | `{${string}}`;
|
|
2481
|
+
}
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
declare module "sap/suite/ui/commons/BaseAppPersPanel" {
|
|
2485
|
+
import {
|
|
2486
|
+
default as BaseAppPanel,
|
|
2487
|
+
$BaseAppPanelSettings,
|
|
2488
|
+
} from "sap/suite/ui/commons/BaseAppPanel";
|
|
2489
|
+
|
|
2490
|
+
import App from "sap/suite/ui/commons/App";
|
|
2491
|
+
|
|
2492
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2493
|
+
|
|
2494
|
+
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2495
|
+
|
|
2496
|
+
/**
|
|
2497
|
+
* Provides the BaseAppPersPanel Class which is BaseAppPanel with personalisation.
|
|
2498
|
+
*
|
|
2499
|
+
* @since 1.121.0
|
|
2500
|
+
* @experimental (since 1.121)
|
|
2501
|
+
*/
|
|
2502
|
+
export default abstract class BaseAppPersPanel extends BaseAppPanel {
|
|
2503
|
+
/**
|
|
2504
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2505
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2506
|
+
* of the syntax of the settings object.
|
|
2507
|
+
*/
|
|
2508
|
+
constructor();
|
|
2509
|
+
|
|
2510
|
+
/**
|
|
2511
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseAppPersPanel with name `sClassName` and enriches
|
|
2512
|
+
* it with the information contained in `oClassInfo`.
|
|
2513
|
+
*
|
|
2514
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseAppPanel.extend}.
|
|
2515
|
+
*
|
|
2516
|
+
*
|
|
2517
|
+
* @returns Created class / constructor function
|
|
2518
|
+
*/
|
|
2519
|
+
static extend<T extends Record<string, unknown>>(
|
|
2520
|
+
/**
|
|
2521
|
+
* Name of the class being created
|
|
2522
|
+
*/
|
|
2523
|
+
sClassName: string,
|
|
2524
|
+
/**
|
|
2525
|
+
* Object literal with information about the class
|
|
2526
|
+
*/
|
|
2527
|
+
oClassInfo?: sap.ClassInfo<T, BaseAppPersPanel>,
|
|
2528
|
+
/**
|
|
2529
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2530
|
+
* used by this class
|
|
2531
|
+
*/
|
|
2532
|
+
FNMetaImpl?: Function
|
|
2533
|
+
): Function;
|
|
2534
|
+
/**
|
|
2535
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseAppPersPanel.
|
|
2536
|
+
*
|
|
2537
|
+
*
|
|
2538
|
+
* @returns Metadata object describing this class
|
|
2539
|
+
*/
|
|
2540
|
+
static getMetadata(): ElementMetadata;
|
|
2541
|
+
/**
|
|
2542
|
+
* Adds some app to the aggregation {@link #getApps apps}.
|
|
2543
|
+
*
|
|
2544
|
+
*
|
|
2545
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2546
|
+
*/
|
|
2547
|
+
addApp(
|
|
2548
|
+
/**
|
|
2549
|
+
* The app to add; if empty, nothing is inserted
|
|
2550
|
+
*/
|
|
2551
|
+
oApp: App
|
|
2552
|
+
): this;
|
|
2553
|
+
/**
|
|
2554
|
+
* Destroys all the apps in the aggregation {@link #getApps apps}.
|
|
2555
|
+
*
|
|
2556
|
+
*
|
|
2557
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2558
|
+
*/
|
|
2559
|
+
destroyApps(): this;
|
|
2560
|
+
/**
|
|
2561
|
+
* Gets content of aggregation {@link #getApps apps}.
|
|
2562
|
+
*/
|
|
2563
|
+
getApps(): App[];
|
|
2564
|
+
/**
|
|
2565
|
+
* Checks for the provided `sap.suite.ui.commons.App` in the aggregation {@link #getApps apps}. and returns
|
|
2566
|
+
* its index if found or -1 otherwise.
|
|
2567
|
+
*
|
|
2568
|
+
*
|
|
2569
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2570
|
+
*/
|
|
2571
|
+
indexOfApp(
|
|
2572
|
+
/**
|
|
2573
|
+
* The app whose index is looked for
|
|
2574
|
+
*/
|
|
2575
|
+
oApp: App
|
|
2576
|
+
): int;
|
|
2577
|
+
/**
|
|
2578
|
+
* Inserts a app into the aggregation {@link #getApps apps}.
|
|
2579
|
+
*
|
|
2580
|
+
*
|
|
2581
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2582
|
+
*/
|
|
2583
|
+
insertApp(
|
|
2584
|
+
/**
|
|
2585
|
+
* The app to insert; if empty, nothing is inserted
|
|
2586
|
+
*/
|
|
2587
|
+
oApp: App,
|
|
2588
|
+
/**
|
|
2589
|
+
* The `0`-based index the app should be inserted at; for a negative value of `iIndex`, the app is inserted
|
|
2590
|
+
* at position 0; for a value greater than the current size of the aggregation, the app is inserted at the
|
|
2591
|
+
* last position
|
|
2592
|
+
*/
|
|
2593
|
+
iIndex: int
|
|
2594
|
+
): this;
|
|
2595
|
+
/**
|
|
2596
|
+
* Removes all the controls from the aggregation {@link #getApps apps}.
|
|
2597
|
+
*
|
|
2598
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
2599
|
+
*
|
|
2600
|
+
*
|
|
2601
|
+
* @returns An array of the removed elements (might be empty)
|
|
2602
|
+
*/
|
|
2603
|
+
removeAllApps(): App[];
|
|
2604
|
+
/**
|
|
2605
|
+
* Removes a app from the aggregation {@link #getApps apps}.
|
|
2606
|
+
*
|
|
2607
|
+
*
|
|
2608
|
+
* @returns The removed app or `null`
|
|
2609
|
+
*/
|
|
2610
|
+
removeApp(
|
|
2611
|
+
/**
|
|
2612
|
+
* The app to remove or its index or id
|
|
2613
|
+
*/
|
|
2614
|
+
vApp: int | string | App
|
|
2615
|
+
): App | null;
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
export interface $BaseAppPersPanelSettings extends $BaseAppPanelSettings {
|
|
2619
|
+
apps?: App[] | App | AggregationBindingInfo | `{${string}}`;
|
|
2620
|
+
}
|
|
2621
|
+
}
|
|
2622
|
+
|
|
1932
2623
|
declare module "sap/suite/ui/commons/BaseContainer" {
|
|
1933
2624
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
1934
2625
|
|
|
@@ -1936,13 +2627,18 @@ declare module "sap/suite/ui/commons/BaseContainer" {
|
|
|
1936
2627
|
|
|
1937
2628
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1938
2629
|
|
|
1939
|
-
import {
|
|
2630
|
+
import { CSSSize } from "sap/ui/core/library";
|
|
2631
|
+
|
|
2632
|
+
import {
|
|
2633
|
+
PropertyBindingInfo,
|
|
2634
|
+
AggregationBindingInfo,
|
|
2635
|
+
} from "sap/ui/base/ManagedObject";
|
|
1940
2636
|
|
|
1941
2637
|
/**
|
|
1942
|
-
* Abstract base class for
|
|
2638
|
+
* Abstract base class for My Home layout control container.
|
|
1943
2639
|
*
|
|
1944
2640
|
* @since 1.121
|
|
1945
|
-
* @experimental
|
|
2641
|
+
* @experimental (since 1.121)
|
|
1946
2642
|
*/
|
|
1947
2643
|
export default abstract class BaseContainer extends Control {
|
|
1948
2644
|
/**
|
|
@@ -2004,8 +2700,21 @@ declare module "sap/suite/ui/commons/BaseContainer" {
|
|
|
2004
2700
|
destroyContent(): this;
|
|
2005
2701
|
/**
|
|
2006
2702
|
* Gets content of aggregation {@link #getContent content}.
|
|
2703
|
+
*
|
|
2704
|
+
* The container content aggregation which should be of type BasePanel
|
|
2007
2705
|
*/
|
|
2008
2706
|
getContent(): BasePanel[];
|
|
2707
|
+
/**
|
|
2708
|
+
* Gets current value of property {@link #getWidth width}.
|
|
2709
|
+
*
|
|
2710
|
+
* Width to be set for the container
|
|
2711
|
+
*
|
|
2712
|
+
* Default value is `"100%"`.
|
|
2713
|
+
*
|
|
2714
|
+
*
|
|
2715
|
+
* @returns Value of property `width`
|
|
2716
|
+
*/
|
|
2717
|
+
getWidth(): CSSSize;
|
|
2009
2718
|
/**
|
|
2010
2719
|
* Checks for the provided `sap.suite.ui.commons.BasePanel` in the aggregation {@link #getContent content}.
|
|
2011
2720
|
* and returns its index if found or -1 otherwise.
|
|
@@ -2055,27 +2764,194 @@ declare module "sap/suite/ui/commons/BaseContainer" {
|
|
|
2055
2764
|
*/
|
|
2056
2765
|
panel: Object
|
|
2057
2766
|
): void;
|
|
2767
|
+
/**
|
|
2768
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
2769
|
+
*
|
|
2770
|
+
* Width to be set for the container
|
|
2771
|
+
*
|
|
2772
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2773
|
+
*
|
|
2774
|
+
* Default value is `"100%"`.
|
|
2775
|
+
*
|
|
2776
|
+
*
|
|
2777
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2778
|
+
*/
|
|
2779
|
+
setWidth(
|
|
2780
|
+
/**
|
|
2781
|
+
* New value for property `width`
|
|
2782
|
+
*/
|
|
2783
|
+
sWidth?: CSSSize
|
|
2784
|
+
): this;
|
|
2058
2785
|
}
|
|
2059
2786
|
|
|
2060
2787
|
export interface $BaseContainerSettings extends $ControlSettings {
|
|
2788
|
+
/**
|
|
2789
|
+
* Width to be set for the container
|
|
2790
|
+
*/
|
|
2791
|
+
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2792
|
+
|
|
2793
|
+
/**
|
|
2794
|
+
* The container content aggregation which should be of type BasePanel
|
|
2795
|
+
*/
|
|
2061
2796
|
content?: BasePanel[] | BasePanel | AggregationBindingInfo | `{${string}}`;
|
|
2062
2797
|
}
|
|
2063
2798
|
}
|
|
2064
2799
|
|
|
2065
|
-
declare module "sap/suite/ui/commons/
|
|
2066
|
-
import { default as
|
|
2800
|
+
declare module "sap/suite/ui/commons/BaseLayout" {
|
|
2801
|
+
import { default as Page, $PageSettings } from "sap/m/Page";
|
|
2067
2802
|
|
|
2068
|
-
import
|
|
2803
|
+
import BaseContainer from "sap/suite/ui/commons/BaseContainer";
|
|
2069
2804
|
|
|
2070
2805
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2071
2806
|
|
|
2072
|
-
import {
|
|
2807
|
+
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2073
2808
|
|
|
2074
2809
|
/**
|
|
2075
|
-
* Abstract base class for
|
|
2810
|
+
* Abstract base class for My Home layout control.
|
|
2076
2811
|
*
|
|
2077
2812
|
* @since 1.121
|
|
2078
|
-
* @experimental
|
|
2813
|
+
* @experimental (since 1.121)
|
|
2814
|
+
*/
|
|
2815
|
+
export default abstract class BaseLayout extends Page {
|
|
2816
|
+
/**
|
|
2817
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2818
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2819
|
+
* of the syntax of the settings object.
|
|
2820
|
+
*/
|
|
2821
|
+
constructor();
|
|
2822
|
+
|
|
2823
|
+
/**
|
|
2824
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseLayout with name `sClassName` and enriches it
|
|
2825
|
+
* with the information contained in `oClassInfo`.
|
|
2826
|
+
*
|
|
2827
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Page.extend}.
|
|
2828
|
+
*
|
|
2829
|
+
*
|
|
2830
|
+
* @returns Created class / constructor function
|
|
2831
|
+
*/
|
|
2832
|
+
static extend<T extends Record<string, unknown>>(
|
|
2833
|
+
/**
|
|
2834
|
+
* Name of the class being created
|
|
2835
|
+
*/
|
|
2836
|
+
sClassName: string,
|
|
2837
|
+
/**
|
|
2838
|
+
* Object literal with information about the class
|
|
2839
|
+
*/
|
|
2840
|
+
oClassInfo?: sap.ClassInfo<T, BaseLayout>,
|
|
2841
|
+
/**
|
|
2842
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2843
|
+
* used by this class
|
|
2844
|
+
*/
|
|
2845
|
+
FNMetaImpl?: Function
|
|
2846
|
+
): Function;
|
|
2847
|
+
/**
|
|
2848
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseLayout.
|
|
2849
|
+
*
|
|
2850
|
+
*
|
|
2851
|
+
* @returns Metadata object describing this class
|
|
2852
|
+
*/
|
|
2853
|
+
static getMetadata(): ElementMetadata;
|
|
2854
|
+
/**
|
|
2855
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
2856
|
+
*
|
|
2857
|
+
*
|
|
2858
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2859
|
+
*/
|
|
2860
|
+
addContent(
|
|
2861
|
+
/**
|
|
2862
|
+
* The content to add; if empty, nothing is inserted
|
|
2863
|
+
*/
|
|
2864
|
+
oContent: BaseContainer
|
|
2865
|
+
): this;
|
|
2866
|
+
/**
|
|
2867
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
2868
|
+
*
|
|
2869
|
+
*
|
|
2870
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2871
|
+
*/
|
|
2872
|
+
destroyContent(): this;
|
|
2873
|
+
/**
|
|
2874
|
+
* Gets content of aggregation {@link #getContent content}.
|
|
2875
|
+
*
|
|
2876
|
+
* The content aggregation which should be of type BaseContainer
|
|
2877
|
+
*/
|
|
2878
|
+
getContent(): BaseContainer[];
|
|
2879
|
+
/**
|
|
2880
|
+
* Checks for the provided `sap.suite.ui.commons.BaseContainer` in the aggregation {@link #getContent content}.
|
|
2881
|
+
* and returns its index if found or -1 otherwise.
|
|
2882
|
+
*
|
|
2883
|
+
*
|
|
2884
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2885
|
+
*/
|
|
2886
|
+
indexOfContent(
|
|
2887
|
+
/**
|
|
2888
|
+
* The content whose index is looked for
|
|
2889
|
+
*/
|
|
2890
|
+
oContent: BaseContainer
|
|
2891
|
+
): int;
|
|
2892
|
+
/**
|
|
2893
|
+
* Inserts a content into the aggregation {@link #getContent content}.
|
|
2894
|
+
*
|
|
2895
|
+
*
|
|
2896
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2897
|
+
*/
|
|
2898
|
+
insertContent(
|
|
2899
|
+
/**
|
|
2900
|
+
* The content to insert; if empty, nothing is inserted
|
|
2901
|
+
*/
|
|
2902
|
+
oContent: BaseContainer,
|
|
2903
|
+
/**
|
|
2904
|
+
* The `0`-based index the content should be inserted at; for a negative value of `iIndex`, the content
|
|
2905
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the content
|
|
2906
|
+
* is inserted at the last position
|
|
2907
|
+
*/
|
|
2908
|
+
iIndex: int
|
|
2909
|
+
): this;
|
|
2910
|
+
/**
|
|
2911
|
+
* Removes all the controls from the aggregation {@link #getContent content}.
|
|
2912
|
+
*
|
|
2913
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
2914
|
+
*
|
|
2915
|
+
*
|
|
2916
|
+
* @returns An array of the removed elements (might be empty)
|
|
2917
|
+
*/
|
|
2918
|
+
removeAllContent(): BaseContainer[];
|
|
2919
|
+
/**
|
|
2920
|
+
* Removes a content from the aggregation {@link #getContent content}.
|
|
2921
|
+
*
|
|
2922
|
+
*
|
|
2923
|
+
* @returns The removed content or `null`
|
|
2924
|
+
*/
|
|
2925
|
+
removeContent(
|
|
2926
|
+
/**
|
|
2927
|
+
* The content to remove or its index or id
|
|
2928
|
+
*/
|
|
2929
|
+
vContent: int | string | BaseContainer
|
|
2930
|
+
): BaseContainer | null;
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2933
|
+
export interface $BaseLayoutSettings extends $PageSettings {
|
|
2934
|
+
/**
|
|
2935
|
+
* The content aggregation which should be of type BaseContainer
|
|
2936
|
+
*/
|
|
2937
|
+
content?:
|
|
2938
|
+
| BaseContainer[]
|
|
2939
|
+
| BaseContainer
|
|
2940
|
+
| AggregationBindingInfo
|
|
2941
|
+
| `{${string}}`;
|
|
2942
|
+
}
|
|
2943
|
+
}
|
|
2944
|
+
|
|
2945
|
+
declare module "sap/suite/ui/commons/BasePanel" {
|
|
2946
|
+
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
2947
|
+
|
|
2948
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2949
|
+
|
|
2950
|
+
/**
|
|
2951
|
+
* Abstract base class for My Home layout control panel.
|
|
2952
|
+
*
|
|
2953
|
+
* @since 1.121
|
|
2954
|
+
* @experimental (since 1.121)
|
|
2079
2955
|
*/
|
|
2080
2956
|
export default abstract class BasePanel extends UI5Element {
|
|
2081
2957
|
/**
|
|
@@ -2116,63 +2992,9 @@ declare module "sap/suite/ui/commons/BasePanel" {
|
|
|
2116
2992
|
* @returns Metadata object describing this class
|
|
2117
2993
|
*/
|
|
2118
2994
|
static getMetadata(): ElementMetadata;
|
|
2119
|
-
/**
|
|
2120
|
-
* Gets current value of property {@link #getHeight height}.
|
|
2121
|
-
*
|
|
2122
|
-
* Default value is `"100%"`.
|
|
2123
|
-
*
|
|
2124
|
-
*
|
|
2125
|
-
* @returns Value of property `height`
|
|
2126
|
-
*/
|
|
2127
|
-
getHeight(): CSSSize;
|
|
2128
|
-
/**
|
|
2129
|
-
* Gets current value of property {@link #getWidth width}.
|
|
2130
|
-
*
|
|
2131
|
-
* Default value is `"100%"`.
|
|
2132
|
-
*
|
|
2133
|
-
*
|
|
2134
|
-
* @returns Value of property `width`
|
|
2135
|
-
*/
|
|
2136
|
-
getWidth(): CSSSize;
|
|
2137
|
-
/**
|
|
2138
|
-
* Sets a new value for property {@link #getHeight height}.
|
|
2139
|
-
*
|
|
2140
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2141
|
-
*
|
|
2142
|
-
* Default value is `"100%"`.
|
|
2143
|
-
*
|
|
2144
|
-
*
|
|
2145
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
2146
|
-
*/
|
|
2147
|
-
setHeight(
|
|
2148
|
-
/**
|
|
2149
|
-
* New value for property `height`
|
|
2150
|
-
*/
|
|
2151
|
-
sHeight?: CSSSize
|
|
2152
|
-
): this;
|
|
2153
|
-
/**
|
|
2154
|
-
* Sets a new value for property {@link #getWidth width}.
|
|
2155
|
-
*
|
|
2156
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2157
|
-
*
|
|
2158
|
-
* Default value is `"100%"`.
|
|
2159
|
-
*
|
|
2160
|
-
*
|
|
2161
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
2162
|
-
*/
|
|
2163
|
-
setWidth(
|
|
2164
|
-
/**
|
|
2165
|
-
* New value for property `width`
|
|
2166
|
-
*/
|
|
2167
|
-
sWidth?: CSSSize
|
|
2168
|
-
): this;
|
|
2169
2995
|
}
|
|
2170
2996
|
|
|
2171
|
-
export interface $BasePanelSettings extends $ElementSettings {
|
|
2172
|
-
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2173
|
-
|
|
2174
|
-
height?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2175
|
-
}
|
|
2997
|
+
export interface $BasePanelSettings extends $ElementSettings {}
|
|
2176
2998
|
}
|
|
2177
2999
|
|
|
2178
3000
|
declare module "sap/suite/ui/commons/BulletChart" {
|
|
@@ -5237,6 +6059,64 @@ declare module "sap/suite/ui/commons/CalculationBuilderVariable" {
|
|
|
5237
6059
|
}
|
|
5238
6060
|
}
|
|
5239
6061
|
|
|
6062
|
+
declare module "sap/suite/ui/commons/CardsPanel" {
|
|
6063
|
+
import {
|
|
6064
|
+
default as BasePanel,
|
|
6065
|
+
$BasePanelSettings,
|
|
6066
|
+
} from "sap/suite/ui/commons/BasePanel";
|
|
6067
|
+
|
|
6068
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
6069
|
+
|
|
6070
|
+
/**
|
|
6071
|
+
* CardsPanel class for managing cards.
|
|
6072
|
+
*
|
|
6073
|
+
* @since 1.121.0
|
|
6074
|
+
* @experimental (since 1.121)
|
|
6075
|
+
*/
|
|
6076
|
+
export default class CardsPanel extends BasePanel {
|
|
6077
|
+
/**
|
|
6078
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6079
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
6080
|
+
* of the syntax of the settings object.
|
|
6081
|
+
*/
|
|
6082
|
+
constructor();
|
|
6083
|
+
|
|
6084
|
+
/**
|
|
6085
|
+
* Creates a new subclass of class sap.suite.ui.commons.CardsPanel with name `sClassName` and enriches it
|
|
6086
|
+
* with the information contained in `oClassInfo`.
|
|
6087
|
+
*
|
|
6088
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BasePanel.extend}.
|
|
6089
|
+
*
|
|
6090
|
+
*
|
|
6091
|
+
* @returns Created class / constructor function
|
|
6092
|
+
*/
|
|
6093
|
+
static extend<T extends Record<string, unknown>>(
|
|
6094
|
+
/**
|
|
6095
|
+
* Name of the class being created
|
|
6096
|
+
*/
|
|
6097
|
+
sClassName: string,
|
|
6098
|
+
/**
|
|
6099
|
+
* Object literal with information about the class
|
|
6100
|
+
*/
|
|
6101
|
+
oClassInfo?: sap.ClassInfo<T, CardsPanel>,
|
|
6102
|
+
/**
|
|
6103
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6104
|
+
* used by this class
|
|
6105
|
+
*/
|
|
6106
|
+
FNMetaImpl?: Function
|
|
6107
|
+
): Function;
|
|
6108
|
+
/**
|
|
6109
|
+
* Returns a metadata object for class sap.suite.ui.commons.CardsPanel.
|
|
6110
|
+
*
|
|
6111
|
+
*
|
|
6112
|
+
* @returns Metadata object describing this class
|
|
6113
|
+
*/
|
|
6114
|
+
static getMetadata(): ElementMetadata;
|
|
6115
|
+
}
|
|
6116
|
+
|
|
6117
|
+
export interface $CardsPanelSettings extends $BasePanelSettings {}
|
|
6118
|
+
}
|
|
6119
|
+
|
|
5240
6120
|
declare module "sap/suite/ui/commons/ChartContainer" {
|
|
5241
6121
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
5242
6122
|
|
|
@@ -10250,6 +11130,64 @@ declare module "sap/suite/ui/commons/FacetOverview" {
|
|
|
10250
11130
|
>;
|
|
10251
11131
|
}
|
|
10252
11132
|
|
|
11133
|
+
declare module "sap/suite/ui/commons/FavAppPanel" {
|
|
11134
|
+
import {
|
|
11135
|
+
default as BaseAppPersPanel,
|
|
11136
|
+
$BaseAppPersPanelSettings,
|
|
11137
|
+
} from "sap/suite/ui/commons/BaseAppPersPanel";
|
|
11138
|
+
|
|
11139
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
11140
|
+
|
|
11141
|
+
/**
|
|
11142
|
+
* Provides the FavAppPanel Class.
|
|
11143
|
+
*
|
|
11144
|
+
* @since 1.121.0
|
|
11145
|
+
* @experimental (since 1.121)
|
|
11146
|
+
*/
|
|
11147
|
+
export default class FavAppPanel extends BaseAppPersPanel {
|
|
11148
|
+
/**
|
|
11149
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
11150
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
11151
|
+
* of the syntax of the settings object.
|
|
11152
|
+
*/
|
|
11153
|
+
constructor();
|
|
11154
|
+
|
|
11155
|
+
/**
|
|
11156
|
+
* Creates a new subclass of class sap.suite.ui.commons.FavAppPanel with name `sClassName` and enriches
|
|
11157
|
+
* it with the information contained in `oClassInfo`.
|
|
11158
|
+
*
|
|
11159
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseAppPersPanel.extend}.
|
|
11160
|
+
*
|
|
11161
|
+
*
|
|
11162
|
+
* @returns Created class / constructor function
|
|
11163
|
+
*/
|
|
11164
|
+
static extend<T extends Record<string, unknown>>(
|
|
11165
|
+
/**
|
|
11166
|
+
* Name of the class being created
|
|
11167
|
+
*/
|
|
11168
|
+
sClassName: string,
|
|
11169
|
+
/**
|
|
11170
|
+
* Object literal with information about the class
|
|
11171
|
+
*/
|
|
11172
|
+
oClassInfo?: sap.ClassInfo<T, FavAppPanel>,
|
|
11173
|
+
/**
|
|
11174
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11175
|
+
* used by this class
|
|
11176
|
+
*/
|
|
11177
|
+
FNMetaImpl?: Function
|
|
11178
|
+
): Function;
|
|
11179
|
+
/**
|
|
11180
|
+
* Returns a metadata object for class sap.suite.ui.commons.FavAppPanel.
|
|
11181
|
+
*
|
|
11182
|
+
*
|
|
11183
|
+
* @returns Metadata object describing this class
|
|
11184
|
+
*/
|
|
11185
|
+
static getMetadata(): ElementMetadata;
|
|
11186
|
+
}
|
|
11187
|
+
|
|
11188
|
+
export interface $FavAppPanelSettings extends $BaseAppPersPanelSettings {}
|
|
11189
|
+
}
|
|
11190
|
+
|
|
10253
11191
|
declare module "sap/suite/ui/commons/FeedItem" {
|
|
10254
11192
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
10255
11193
|
|
|
@@ -11149,6 +12087,65 @@ declare module "sap/suite/ui/commons/FeedTile" {
|
|
|
11149
12087
|
>;
|
|
11150
12088
|
}
|
|
11151
12089
|
|
|
12090
|
+
declare module "sap/suite/ui/commons/FrequentAppPanel" {
|
|
12091
|
+
import {
|
|
12092
|
+
default as BaseAppPersPanel,
|
|
12093
|
+
$BaseAppPersPanelSettings,
|
|
12094
|
+
} from "sap/suite/ui/commons/BaseAppPersPanel";
|
|
12095
|
+
|
|
12096
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
12097
|
+
|
|
12098
|
+
/**
|
|
12099
|
+
* Provides the class for managing frequent apps
|
|
12100
|
+
*
|
|
12101
|
+
* @since 1.121.0
|
|
12102
|
+
* @experimental (since 1.121)
|
|
12103
|
+
*/
|
|
12104
|
+
export default class FrequentAppPanel extends BaseAppPersPanel {
|
|
12105
|
+
/**
|
|
12106
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
12107
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
12108
|
+
* of the syntax of the settings object.
|
|
12109
|
+
*/
|
|
12110
|
+
constructor();
|
|
12111
|
+
|
|
12112
|
+
/**
|
|
12113
|
+
* Creates a new subclass of class sap.suite.ui.commons.FrequentAppPanel with name `sClassName` and enriches
|
|
12114
|
+
* it with the information contained in `oClassInfo`.
|
|
12115
|
+
*
|
|
12116
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseAppPersPanel.extend}.
|
|
12117
|
+
*
|
|
12118
|
+
*
|
|
12119
|
+
* @returns Created class / constructor function
|
|
12120
|
+
*/
|
|
12121
|
+
static extend<T extends Record<string, unknown>>(
|
|
12122
|
+
/**
|
|
12123
|
+
* Name of the class being created
|
|
12124
|
+
*/
|
|
12125
|
+
sClassName: string,
|
|
12126
|
+
/**
|
|
12127
|
+
* Object literal with information about the class
|
|
12128
|
+
*/
|
|
12129
|
+
oClassInfo?: sap.ClassInfo<T, FrequentAppPanel>,
|
|
12130
|
+
/**
|
|
12131
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12132
|
+
* used by this class
|
|
12133
|
+
*/
|
|
12134
|
+
FNMetaImpl?: Function
|
|
12135
|
+
): Function;
|
|
12136
|
+
/**
|
|
12137
|
+
* Returns a metadata object for class sap.suite.ui.commons.FrequentAppPanel.
|
|
12138
|
+
*
|
|
12139
|
+
*
|
|
12140
|
+
* @returns Metadata object describing this class
|
|
12141
|
+
*/
|
|
12142
|
+
static getMetadata(): ElementMetadata;
|
|
12143
|
+
}
|
|
12144
|
+
|
|
12145
|
+
export interface $FrequentAppPanelSettings
|
|
12146
|
+
extends $BaseAppPersPanelSettings {}
|
|
12147
|
+
}
|
|
12148
|
+
|
|
11152
12149
|
declare module "sap/suite/ui/commons/GenericTile" {
|
|
11153
12150
|
import {
|
|
11154
12151
|
default as GenericTile1,
|
|
@@ -16596,6 +17593,59 @@ declare module "sap/suite/ui/commons/InfoTile" {
|
|
|
16596
17593
|
>;
|
|
16597
17594
|
}
|
|
16598
17595
|
|
|
17596
|
+
declare module "sap/suite/ui/commons/InsightsContainer" {
|
|
17597
|
+
import {
|
|
17598
|
+
default as BaseContainer,
|
|
17599
|
+
$BaseContainerSettings,
|
|
17600
|
+
} from "sap/suite/ui/commons/BaseContainer";
|
|
17601
|
+
|
|
17602
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
17603
|
+
|
|
17604
|
+
/**
|
|
17605
|
+
* Container class for managing and storing Insights tiles and cards.
|
|
17606
|
+
*
|
|
17607
|
+
* @since 1.121
|
|
17608
|
+
* @experimental (since 1.121)
|
|
17609
|
+
*/
|
|
17610
|
+
export default class InsightsContainer extends BaseContainer {
|
|
17611
|
+
constructor();
|
|
17612
|
+
|
|
17613
|
+
/**
|
|
17614
|
+
* Creates a new subclass of class sap.suite.ui.commons.InsightsContainer with name `sClassName` and enriches
|
|
17615
|
+
* it with the information contained in `oClassInfo`.
|
|
17616
|
+
*
|
|
17617
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseContainer.extend}.
|
|
17618
|
+
*
|
|
17619
|
+
*
|
|
17620
|
+
* @returns Created class / constructor function
|
|
17621
|
+
*/
|
|
17622
|
+
static extend<T extends Record<string, unknown>>(
|
|
17623
|
+
/**
|
|
17624
|
+
* Name of the class being created
|
|
17625
|
+
*/
|
|
17626
|
+
sClassName: string,
|
|
17627
|
+
/**
|
|
17628
|
+
* Object literal with information about the class
|
|
17629
|
+
*/
|
|
17630
|
+
oClassInfo?: sap.ClassInfo<T, InsightsContainer>,
|
|
17631
|
+
/**
|
|
17632
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17633
|
+
* used by this class
|
|
17634
|
+
*/
|
|
17635
|
+
FNMetaImpl?: Function
|
|
17636
|
+
): Function;
|
|
17637
|
+
/**
|
|
17638
|
+
* Returns a metadata object for class sap.suite.ui.commons.InsightsContainer.
|
|
17639
|
+
*
|
|
17640
|
+
*
|
|
17641
|
+
* @returns Metadata object describing this class
|
|
17642
|
+
*/
|
|
17643
|
+
static getMetadata(): ElementMetadata;
|
|
17644
|
+
}
|
|
17645
|
+
|
|
17646
|
+
export interface $InsightsContainerSettings extends $BaseContainerSettings {}
|
|
17647
|
+
}
|
|
17648
|
+
|
|
16599
17649
|
declare module "sap/suite/ui/commons/JamContent" {
|
|
16600
17650
|
import {
|
|
16601
17651
|
default as FeedContent,
|
|
@@ -17221,6 +18271,59 @@ declare module "sap/suite/ui/commons/LaunchTile" {
|
|
|
17221
18271
|
>;
|
|
17222
18272
|
}
|
|
17223
18273
|
|
|
18274
|
+
declare module "sap/suite/ui/commons/Layout" {
|
|
18275
|
+
import {
|
|
18276
|
+
default as BaseLayout,
|
|
18277
|
+
$BaseLayoutSettings,
|
|
18278
|
+
} from "sap/suite/ui/commons/BaseLayout";
|
|
18279
|
+
|
|
18280
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
18281
|
+
|
|
18282
|
+
/**
|
|
18283
|
+
* Layout class for My Home layout.
|
|
18284
|
+
*
|
|
18285
|
+
* @since 1.121
|
|
18286
|
+
* @experimental (since 1.121)
|
|
18287
|
+
*/
|
|
18288
|
+
export default class Layout extends BaseLayout {
|
|
18289
|
+
constructor();
|
|
18290
|
+
|
|
18291
|
+
/**
|
|
18292
|
+
* Creates a new subclass of class sap.suite.ui.commons.Layout with name `sClassName` and enriches it with
|
|
18293
|
+
* the information contained in `oClassInfo`.
|
|
18294
|
+
*
|
|
18295
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseLayout.extend}.
|
|
18296
|
+
*
|
|
18297
|
+
*
|
|
18298
|
+
* @returns Created class / constructor function
|
|
18299
|
+
*/
|
|
18300
|
+
static extend<T extends Record<string, unknown>>(
|
|
18301
|
+
/**
|
|
18302
|
+
* Name of the class being created
|
|
18303
|
+
*/
|
|
18304
|
+
sClassName: string,
|
|
18305
|
+
/**
|
|
18306
|
+
* Object literal with information about the class
|
|
18307
|
+
*/
|
|
18308
|
+
oClassInfo?: sap.ClassInfo<T, Layout>,
|
|
18309
|
+
/**
|
|
18310
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18311
|
+
* used by this class
|
|
18312
|
+
*/
|
|
18313
|
+
FNMetaImpl?: Function
|
|
18314
|
+
): Function;
|
|
18315
|
+
/**
|
|
18316
|
+
* Returns a metadata object for class sap.suite.ui.commons.Layout.
|
|
18317
|
+
*
|
|
18318
|
+
*
|
|
18319
|
+
* @returns Metadata object describing this class
|
|
18320
|
+
*/
|
|
18321
|
+
static getMetadata(): ElementMetadata;
|
|
18322
|
+
}
|
|
18323
|
+
|
|
18324
|
+
export interface $LayoutSettings extends $BaseLayoutSettings {}
|
|
18325
|
+
}
|
|
18326
|
+
|
|
17224
18327
|
declare module "sap/suite/ui/commons/LinkActionSheet" {
|
|
17225
18328
|
import {
|
|
17226
18329
|
default as ActionSheet,
|
|
@@ -17499,6 +18602,8 @@ declare module "sap/suite/ui/commons/MenuItem" {
|
|
|
17499
18602
|
|
|
17500
18603
|
import Event from "sap/ui/base/Event";
|
|
17501
18604
|
|
|
18605
|
+
import { URI } from "sap/ui/core/library";
|
|
18606
|
+
|
|
17502
18607
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
17503
18608
|
|
|
17504
18609
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -17507,7 +18612,7 @@ declare module "sap/suite/ui/commons/MenuItem" {
|
|
|
17507
18612
|
* MenuItem class for personalization menu item
|
|
17508
18613
|
*
|
|
17509
18614
|
* @since 1.121
|
|
17510
|
-
* @experimental
|
|
18615
|
+
* @experimental (since 1.121)
|
|
17511
18616
|
*/
|
|
17512
18617
|
export default class MenuItem extends UI5Element {
|
|
17513
18618
|
/**
|
|
@@ -17625,24 +18730,41 @@ declare module "sap/suite/ui/commons/MenuItem" {
|
|
|
17625
18730
|
/**
|
|
17626
18731
|
* Gets current value of property {@link #getIcon icon}.
|
|
17627
18732
|
*
|
|
18733
|
+
* Icon of the menu item
|
|
18734
|
+
*
|
|
17628
18735
|
* Default value is `empty string`.
|
|
17629
18736
|
*
|
|
17630
18737
|
*
|
|
17631
18738
|
* @returns Value of property `icon`
|
|
17632
18739
|
*/
|
|
17633
|
-
getIcon():
|
|
18740
|
+
getIcon(): URI;
|
|
17634
18741
|
/**
|
|
17635
18742
|
* Gets current value of property {@link #getTitle title}.
|
|
17636
18743
|
*
|
|
18744
|
+
* Title of the menu item
|
|
18745
|
+
*
|
|
17637
18746
|
* Default value is `empty string`.
|
|
17638
18747
|
*
|
|
17639
18748
|
*
|
|
17640
18749
|
* @returns Value of property `title`
|
|
17641
18750
|
*/
|
|
17642
18751
|
getTitle(): string;
|
|
18752
|
+
/**
|
|
18753
|
+
* Gets current value of property {@link #getType type}.
|
|
18754
|
+
*
|
|
18755
|
+
* Type of menu item visualization in the menu list
|
|
18756
|
+
*
|
|
18757
|
+
* Default value is `'Active'`.
|
|
18758
|
+
*
|
|
18759
|
+
*
|
|
18760
|
+
* @returns Value of property `type`
|
|
18761
|
+
*/
|
|
18762
|
+
getType(): string;
|
|
17643
18763
|
/**
|
|
17644
18764
|
* Sets a new value for property {@link #getIcon icon}.
|
|
17645
18765
|
*
|
|
18766
|
+
* Icon of the menu item
|
|
18767
|
+
*
|
|
17646
18768
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17647
18769
|
*
|
|
17648
18770
|
* Default value is `empty string`.
|
|
@@ -17654,11 +18776,13 @@ declare module "sap/suite/ui/commons/MenuItem" {
|
|
|
17654
18776
|
/**
|
|
17655
18777
|
* New value for property `icon`
|
|
17656
18778
|
*/
|
|
17657
|
-
sIcon?:
|
|
18779
|
+
sIcon?: URI
|
|
17658
18780
|
): this;
|
|
17659
18781
|
/**
|
|
17660
18782
|
* Sets a new value for property {@link #getTitle title}.
|
|
17661
18783
|
*
|
|
18784
|
+
* Title of the menu item
|
|
18785
|
+
*
|
|
17662
18786
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17663
18787
|
*
|
|
17664
18788
|
* Default value is `empty string`.
|
|
@@ -17672,12 +18796,41 @@ declare module "sap/suite/ui/commons/MenuItem" {
|
|
|
17672
18796
|
*/
|
|
17673
18797
|
sTitle?: string
|
|
17674
18798
|
): this;
|
|
18799
|
+
/**
|
|
18800
|
+
* Sets a new value for property {@link #getType type}.
|
|
18801
|
+
*
|
|
18802
|
+
* Type of menu item visualization in the menu list
|
|
18803
|
+
*
|
|
18804
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18805
|
+
*
|
|
18806
|
+
* Default value is `'Active'`.
|
|
18807
|
+
*
|
|
18808
|
+
*
|
|
18809
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18810
|
+
*/
|
|
18811
|
+
setType(
|
|
18812
|
+
/**
|
|
18813
|
+
* New value for property `type`
|
|
18814
|
+
*/
|
|
18815
|
+
sType?: string
|
|
18816
|
+
): this;
|
|
17675
18817
|
}
|
|
17676
18818
|
|
|
17677
18819
|
export interface $MenuItemSettings extends $ElementSettings {
|
|
18820
|
+
/**
|
|
18821
|
+
* Title of the menu item
|
|
18822
|
+
*/
|
|
17678
18823
|
title?: string | PropertyBindingInfo;
|
|
17679
18824
|
|
|
17680
|
-
|
|
18825
|
+
/**
|
|
18826
|
+
* Icon of the menu item
|
|
18827
|
+
*/
|
|
18828
|
+
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
18829
|
+
|
|
18830
|
+
/**
|
|
18831
|
+
* Type of menu item visualization in the menu list
|
|
18832
|
+
*/
|
|
18833
|
+
type?: string | PropertyBindingInfo;
|
|
17681
18834
|
|
|
17682
18835
|
press?: (oEvent: Event) => void;
|
|
17683
18836
|
}
|
|
@@ -27651,6 +28804,60 @@ declare module "sap/suite/ui/commons/networkgraph/util/Dijkstra" {
|
|
|
27651
28804
|
}
|
|
27652
28805
|
}
|
|
27653
28806
|
|
|
28807
|
+
declare module "sap/suite/ui/commons/NewsAndPageContainer" {
|
|
28808
|
+
import {
|
|
28809
|
+
default as BaseContainer,
|
|
28810
|
+
$BaseContainerSettings,
|
|
28811
|
+
} from "sap/suite/ui/commons/BaseContainer";
|
|
28812
|
+
|
|
28813
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
28814
|
+
|
|
28815
|
+
/**
|
|
28816
|
+
* Container class for managing and storing News and Pages.
|
|
28817
|
+
*
|
|
28818
|
+
* @since 1.121
|
|
28819
|
+
* @experimental (since 1.121)
|
|
28820
|
+
*/
|
|
28821
|
+
export default class NewsAndPagesContainer extends BaseContainer {
|
|
28822
|
+
constructor();
|
|
28823
|
+
|
|
28824
|
+
/**
|
|
28825
|
+
* Creates a new subclass of class sap.suite.ui.commons.NewsAndPagesContainer with name `sClassName` and
|
|
28826
|
+
* enriches it with the information contained in `oClassInfo`.
|
|
28827
|
+
*
|
|
28828
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseContainer.extend}.
|
|
28829
|
+
*
|
|
28830
|
+
*
|
|
28831
|
+
* @returns Created class / constructor function
|
|
28832
|
+
*/
|
|
28833
|
+
static extend<T extends Record<string, unknown>>(
|
|
28834
|
+
/**
|
|
28835
|
+
* Name of the class being created
|
|
28836
|
+
*/
|
|
28837
|
+
sClassName: string,
|
|
28838
|
+
/**
|
|
28839
|
+
* Object literal with information about the class
|
|
28840
|
+
*/
|
|
28841
|
+
oClassInfo?: sap.ClassInfo<T, NewsAndPagesContainer>,
|
|
28842
|
+
/**
|
|
28843
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28844
|
+
* used by this class
|
|
28845
|
+
*/
|
|
28846
|
+
FNMetaImpl?: Function
|
|
28847
|
+
): Function;
|
|
28848
|
+
/**
|
|
28849
|
+
* Returns a metadata object for class sap.suite.ui.commons.NewsAndPagesContainer.
|
|
28850
|
+
*
|
|
28851
|
+
*
|
|
28852
|
+
* @returns Metadata object describing this class
|
|
28853
|
+
*/
|
|
28854
|
+
static getMetadata(): ElementMetadata;
|
|
28855
|
+
}
|
|
28856
|
+
|
|
28857
|
+
export interface $NewsAndPagesContainerSettings
|
|
28858
|
+
extends $BaseContainerSettings {}
|
|
28859
|
+
}
|
|
28860
|
+
|
|
27654
28861
|
declare module "sap/suite/ui/commons/NewsContent" {
|
|
27655
28862
|
import {
|
|
27656
28863
|
default as NewsContent1,
|
|
@@ -27752,9 +28959,9 @@ declare module "sap/suite/ui/commons/NewsPanel" {
|
|
|
27752
28959
|
* NewsPanel class for managing news panel.
|
|
27753
28960
|
*
|
|
27754
28961
|
* @since 1.121
|
|
27755
|
-
* @experimental
|
|
28962
|
+
* @experimental (since 1.121)
|
|
27756
28963
|
*/
|
|
27757
|
-
export default
|
|
28964
|
+
export default class NewsPanel extends BasePanel {
|
|
27758
28965
|
/**
|
|
27759
28966
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
27760
28967
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -27796,6 +29003,8 @@ declare module "sap/suite/ui/commons/NewsPanel" {
|
|
|
27796
29003
|
/**
|
|
27797
29004
|
* Gets current value of property {@link #getUrl url}.
|
|
27798
29005
|
*
|
|
29006
|
+
* Url to fetch the news feed from
|
|
29007
|
+
*
|
|
27799
29008
|
* Default value is `empty string`.
|
|
27800
29009
|
*
|
|
27801
29010
|
*
|
|
@@ -27805,6 +29014,8 @@ declare module "sap/suite/ui/commons/NewsPanel" {
|
|
|
27805
29014
|
/**
|
|
27806
29015
|
* Sets a new value for property {@link #getUrl url}.
|
|
27807
29016
|
*
|
|
29017
|
+
* Url to fetch the news feed from
|
|
29018
|
+
*
|
|
27808
29019
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27809
29020
|
*
|
|
27810
29021
|
* Default value is `empty string`.
|
|
@@ -27821,6 +29032,9 @@ declare module "sap/suite/ui/commons/NewsPanel" {
|
|
|
27821
29032
|
}
|
|
27822
29033
|
|
|
27823
29034
|
export interface $NewsPanelSettings extends $BasePanelSettings {
|
|
29035
|
+
/**
|
|
29036
|
+
* Url to fetch the news feed from
|
|
29037
|
+
*/
|
|
27824
29038
|
url?: string | PropertyBindingInfo;
|
|
27825
29039
|
}
|
|
27826
29040
|
}
|
|
@@ -30879,20 +32093,16 @@ declare module "sap/suite/ui/commons/NumericTile" {
|
|
|
30879
32093
|
}
|
|
30880
32094
|
|
|
30881
32095
|
declare module "sap/suite/ui/commons/PagePanel" {
|
|
30882
|
-
import
|
|
30883
|
-
default as BasePanel,
|
|
30884
|
-
$BasePanelSettings,
|
|
30885
|
-
} from "sap/suite/ui/commons/BasePanel";
|
|
30886
|
-
|
|
30887
|
-
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
32096
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
30888
32097
|
|
|
30889
32098
|
/**
|
|
30890
32099
|
* PagePanel class for managing page panel.
|
|
30891
32100
|
*
|
|
30892
|
-
* @since 1.
|
|
30893
|
-
* @experimental
|
|
32101
|
+
* @since 1.122
|
|
32102
|
+
* @experimental (since 1.121)
|
|
30894
32103
|
*/
|
|
30895
|
-
export default
|
|
32104
|
+
export default class PagePanel
|
|
32105
|
+
/* was: sap.suite.ui.commons.BasePagePanel */ extends Object {
|
|
30896
32106
|
/**
|
|
30897
32107
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
30898
32108
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -30904,7 +32114,7 @@ declare module "sap/suite/ui/commons/PagePanel" {
|
|
|
30904
32114
|
* Creates a new subclass of class sap.suite.ui.commons.PagePanel with name `sClassName` and enriches it
|
|
30905
32115
|
* with the information contained in `oClassInfo`.
|
|
30906
32116
|
*
|
|
30907
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.
|
|
32117
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BasePagePanel.extend}.
|
|
30908
32118
|
*
|
|
30909
32119
|
*
|
|
30910
32120
|
* @returns Created class / constructor function
|
|
@@ -30930,10 +32140,8 @@ declare module "sap/suite/ui/commons/PagePanel" {
|
|
|
30930
32140
|
*
|
|
30931
32141
|
* @returns Metadata object describing this class
|
|
30932
32142
|
*/
|
|
30933
|
-
static getMetadata():
|
|
32143
|
+
static getMetadata(): Metadata;
|
|
30934
32144
|
}
|
|
30935
|
-
|
|
30936
|
-
export interface $PagePanelSettings extends $BasePanelSettings {}
|
|
30937
32145
|
}
|
|
30938
32146
|
|
|
30939
32147
|
declare module "sap/suite/ui/commons/PictureZoomIn" {
|
|
@@ -33955,6 +35163,58 @@ declare module "sap/suite/ui/commons/ProcessFlowNode" {
|
|
|
33955
35163
|
>;
|
|
33956
35164
|
}
|
|
33957
35165
|
|
|
35166
|
+
declare module "sap/suite/ui/commons/RecentAppPanel" {
|
|
35167
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
35168
|
+
|
|
35169
|
+
/**
|
|
35170
|
+
* Provides class for managing Recent apps.
|
|
35171
|
+
*
|
|
35172
|
+
* @since 1.121.0
|
|
35173
|
+
* @experimental (since 1.121)
|
|
35174
|
+
*/
|
|
35175
|
+
export default class RecentAppPanel
|
|
35176
|
+
/* was: sap.suite.ui.BaseAppPersPanel */ extends Object {
|
|
35177
|
+
/**
|
|
35178
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
35179
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
35180
|
+
* of the syntax of the settings object.
|
|
35181
|
+
*/
|
|
35182
|
+
constructor();
|
|
35183
|
+
|
|
35184
|
+
/**
|
|
35185
|
+
* Creates a new subclass of class sap.suite.ui.commons.RecentAppPanel with name `sClassName` and enriches
|
|
35186
|
+
* it with the information contained in `oClassInfo`.
|
|
35187
|
+
*
|
|
35188
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.BaseAppPersPanel.extend}.
|
|
35189
|
+
*
|
|
35190
|
+
*
|
|
35191
|
+
* @returns Created class / constructor function
|
|
35192
|
+
*/
|
|
35193
|
+
static extend<T extends Record<string, unknown>>(
|
|
35194
|
+
/**
|
|
35195
|
+
* Name of the class being created
|
|
35196
|
+
*/
|
|
35197
|
+
sClassName: string,
|
|
35198
|
+
/**
|
|
35199
|
+
* Object literal with information about the class
|
|
35200
|
+
*/
|
|
35201
|
+
oClassInfo?: sap.ClassInfo<T, RecentAppPanel>,
|
|
35202
|
+
/**
|
|
35203
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
35204
|
+
* used by this class
|
|
35205
|
+
*/
|
|
35206
|
+
FNMetaImpl?: Function
|
|
35207
|
+
): Function;
|
|
35208
|
+
/**
|
|
35209
|
+
* Returns a metadata object for class sap.suite.ui.commons.RecentAppPanel.
|
|
35210
|
+
*
|
|
35211
|
+
*
|
|
35212
|
+
* @returns Metadata object describing this class
|
|
35213
|
+
*/
|
|
35214
|
+
static getMetadata(): Metadata;
|
|
35215
|
+
}
|
|
35216
|
+
}
|
|
35217
|
+
|
|
33958
35218
|
declare module "sap/suite/ui/commons/RepeaterViewConfiguration" {
|
|
33959
35219
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
33960
35220
|
|
|
@@ -34459,7 +35719,7 @@ declare module "sap/suite/ui/commons/SituationPanel" {
|
|
|
34459
35719
|
* Panel class for managing and storing Situation cards.
|
|
34460
35720
|
*
|
|
34461
35721
|
* @since 1.121
|
|
34462
|
-
* @experimental
|
|
35722
|
+
* @experimental (since 1.121)
|
|
34463
35723
|
*/
|
|
34464
35724
|
export default class SituationPanel extends ToDoPanel {
|
|
34465
35725
|
constructor();
|
|
@@ -41551,9 +42811,9 @@ declare module "sap/suite/ui/commons/TaskPanel" {
|
|
|
41551
42811
|
* Panel class for managing and storing Task cards.
|
|
41552
42812
|
*
|
|
41553
42813
|
* @since 1.121
|
|
41554
|
-
* @experimental
|
|
42814
|
+
* @experimental (since 1.121)
|
|
41555
42815
|
*/
|
|
41556
|
-
export default
|
|
42816
|
+
export default class TaskPanel extends ToDoPanel {
|
|
41557
42817
|
/**
|
|
41558
42818
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
41559
42819
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -41595,6 +42855,8 @@ declare module "sap/suite/ui/commons/TaskPanel" {
|
|
|
41595
42855
|
/**
|
|
41596
42856
|
* Gets current value of property {@link #getCustomAttributeUrl customAttributeUrl}.
|
|
41597
42857
|
*
|
|
42858
|
+
* Specifies the URL for fetching the custom attributes to be displayed along with the task cards.
|
|
42859
|
+
*
|
|
41598
42860
|
* Default value is `empty string`.
|
|
41599
42861
|
*
|
|
41600
42862
|
*
|
|
@@ -41604,6 +42866,8 @@ declare module "sap/suite/ui/commons/TaskPanel" {
|
|
|
41604
42866
|
/**
|
|
41605
42867
|
* Sets a new value for property {@link #getCustomAttributeUrl customAttributeUrl}.
|
|
41606
42868
|
*
|
|
42869
|
+
* Specifies the URL for fetching the custom attributes to be displayed along with the task cards.
|
|
42870
|
+
*
|
|
41607
42871
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
41608
42872
|
*
|
|
41609
42873
|
* Default value is `empty string`.
|
|
@@ -41620,6 +42884,9 @@ declare module "sap/suite/ui/commons/TaskPanel" {
|
|
|
41620
42884
|
}
|
|
41621
42885
|
|
|
41622
42886
|
export interface $TaskPanelSettings extends $ToDoPanelSettings {
|
|
42887
|
+
/**
|
|
42888
|
+
* Specifies the URL for fetching the custom attributes to be displayed along with the task cards.
|
|
42889
|
+
*/
|
|
41623
42890
|
customAttributeUrl?: string | PropertyBindingInfo;
|
|
41624
42891
|
}
|
|
41625
42892
|
}
|
|
@@ -42803,6 +44070,58 @@ declare module "sap/suite/ui/commons/TileContent2X2" {
|
|
|
42803
44070
|
}
|
|
42804
44071
|
}
|
|
42805
44072
|
|
|
44073
|
+
declare module "sap/suite/ui/commons/TilesPanel" {
|
|
44074
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
44075
|
+
|
|
44076
|
+
/**
|
|
44077
|
+
* Provides the TilesPanel Class.
|
|
44078
|
+
*
|
|
44079
|
+
* @since 1.121.0
|
|
44080
|
+
* @experimental (since 1.121)
|
|
44081
|
+
*/
|
|
44082
|
+
export default class TilesPanel
|
|
44083
|
+
/* was: sap.suite.ui.BasePanel */ extends Object {
|
|
44084
|
+
/**
|
|
44085
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
44086
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
44087
|
+
* of the syntax of the settings object.
|
|
44088
|
+
*/
|
|
44089
|
+
constructor();
|
|
44090
|
+
|
|
44091
|
+
/**
|
|
44092
|
+
* Creates a new subclass of class sap.suite.ui.commons.TilesPanel with name `sClassName` and enriches it
|
|
44093
|
+
* with the information contained in `oClassInfo`.
|
|
44094
|
+
*
|
|
44095
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.BasePanel.extend}.
|
|
44096
|
+
*
|
|
44097
|
+
*
|
|
44098
|
+
* @returns Created class / constructor function
|
|
44099
|
+
*/
|
|
44100
|
+
static extend<T extends Record<string, unknown>>(
|
|
44101
|
+
/**
|
|
44102
|
+
* Name of the class being created
|
|
44103
|
+
*/
|
|
44104
|
+
sClassName: string,
|
|
44105
|
+
/**
|
|
44106
|
+
* Object literal with information about the class
|
|
44107
|
+
*/
|
|
44108
|
+
oClassInfo?: sap.ClassInfo<T, TilesPanel>,
|
|
44109
|
+
/**
|
|
44110
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
44111
|
+
* used by this class
|
|
44112
|
+
*/
|
|
44113
|
+
FNMetaImpl?: Function
|
|
44114
|
+
): Function;
|
|
44115
|
+
/**
|
|
44116
|
+
* Returns a metadata object for class sap.suite.ui.commons.TilesPanel.
|
|
44117
|
+
*
|
|
44118
|
+
*
|
|
44119
|
+
* @returns Metadata object describing this class
|
|
44120
|
+
*/
|
|
44121
|
+
static getMetadata(): Metadata;
|
|
44122
|
+
}
|
|
44123
|
+
}
|
|
44124
|
+
|
|
42806
44125
|
declare module "sap/suite/ui/commons/Timeline" {
|
|
42807
44126
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
42808
44127
|
|
|
@@ -47786,12 +49105,12 @@ declare module "sap/suite/ui/commons/ToDoPanel" {
|
|
|
47786
49105
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
47787
49106
|
|
|
47788
49107
|
/**
|
|
47789
|
-
* Panel class for managing and storing To-Do cards.
|
|
49108
|
+
* Abstract Panel class for managing and storing To-Do cards.
|
|
47790
49109
|
*
|
|
47791
49110
|
* @since 1.121
|
|
47792
|
-
* @experimental
|
|
49111
|
+
* @experimental (since 1.121)
|
|
47793
49112
|
*/
|
|
47794
|
-
export default class ToDoPanel extends BasePanel {
|
|
49113
|
+
export default abstract class ToDoPanel extends BasePanel {
|
|
47795
49114
|
/**
|
|
47796
49115
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
47797
49116
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -47848,35 +49167,43 @@ declare module "sap/suite/ui/commons/ToDoPanel" {
|
|
|
47848
49167
|
context: object
|
|
47849
49168
|
): object;
|
|
47850
49169
|
/**
|
|
47851
|
-
* Gets current value of property {@link #
|
|
49170
|
+
* Gets current value of property {@link #getBaseUrl baseUrl}.
|
|
49171
|
+
*
|
|
49172
|
+
* Specifies the base URL for batching requests sent from the panel.
|
|
47852
49173
|
*
|
|
47853
49174
|
* Default value is `empty string`.
|
|
47854
49175
|
*
|
|
47855
49176
|
*
|
|
47856
|
-
* @returns Value of property `
|
|
49177
|
+
* @returns Value of property `baseUrl`
|
|
47857
49178
|
*/
|
|
47858
|
-
|
|
49179
|
+
getBaseUrl(): string;
|
|
47859
49180
|
/**
|
|
47860
|
-
* Gets current value of property {@link #
|
|
49181
|
+
* Gets current value of property {@link #getCountUrl countUrl}.
|
|
49182
|
+
*
|
|
49183
|
+
* Specifies the URL for fetching the count of requested to-do cards.
|
|
47861
49184
|
*
|
|
47862
49185
|
* Default value is `empty string`.
|
|
47863
49186
|
*
|
|
47864
49187
|
*
|
|
47865
|
-
* @returns Value of property `
|
|
49188
|
+
* @returns Value of property `countUrl`
|
|
47866
49189
|
*/
|
|
47867
|
-
|
|
49190
|
+
getCountUrl(): string;
|
|
47868
49191
|
/**
|
|
47869
|
-
* Gets current value of property {@link #
|
|
49192
|
+
* Gets current value of property {@link #getDataUrl dataUrl}.
|
|
49193
|
+
*
|
|
49194
|
+
* Specifies the URL from where the to-do cards should be fetched.
|
|
47870
49195
|
*
|
|
47871
49196
|
* Default value is `empty string`.
|
|
47872
49197
|
*
|
|
47873
49198
|
*
|
|
47874
|
-
* @returns Value of property `
|
|
49199
|
+
* @returns Value of property `dataUrl`
|
|
47875
49200
|
*/
|
|
47876
|
-
|
|
49201
|
+
getDataUrl(): string;
|
|
47877
49202
|
/**
|
|
47878
49203
|
* Gets current value of property {@link #getTargetAppUrl targetAppUrl}.
|
|
47879
49204
|
*
|
|
49205
|
+
* Specifies the URL of the target application associated with the to-do cards.
|
|
49206
|
+
*
|
|
47880
49207
|
* Default value is `empty string`.
|
|
47881
49208
|
*
|
|
47882
49209
|
*
|
|
@@ -47884,7 +49211,9 @@ declare module "sap/suite/ui/commons/ToDoPanel" {
|
|
|
47884
49211
|
*/
|
|
47885
49212
|
getTargetAppUrl(): string;
|
|
47886
49213
|
/**
|
|
47887
|
-
* Sets a new value for property {@link #
|
|
49214
|
+
* Sets a new value for property {@link #getBaseUrl baseUrl}.
|
|
49215
|
+
*
|
|
49216
|
+
* Specifies the base URL for batching requests sent from the panel.
|
|
47888
49217
|
*
|
|
47889
49218
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
47890
49219
|
*
|
|
@@ -47893,14 +49222,16 @@ declare module "sap/suite/ui/commons/ToDoPanel" {
|
|
|
47893
49222
|
*
|
|
47894
49223
|
* @returns Reference to `this` in order to allow method chaining
|
|
47895
49224
|
*/
|
|
47896
|
-
|
|
49225
|
+
setBaseUrl(
|
|
47897
49226
|
/**
|
|
47898
|
-
* New value for property `
|
|
49227
|
+
* New value for property `baseUrl`
|
|
47899
49228
|
*/
|
|
47900
|
-
|
|
49229
|
+
sBaseUrl?: string
|
|
47901
49230
|
): this;
|
|
47902
49231
|
/**
|
|
47903
|
-
* Sets a new value for property {@link #
|
|
49232
|
+
* Sets a new value for property {@link #getCountUrl countUrl}.
|
|
49233
|
+
*
|
|
49234
|
+
* Specifies the URL for fetching the count of requested to-do cards.
|
|
47904
49235
|
*
|
|
47905
49236
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
47906
49237
|
*
|
|
@@ -47909,14 +49240,16 @@ declare module "sap/suite/ui/commons/ToDoPanel" {
|
|
|
47909
49240
|
*
|
|
47910
49241
|
* @returns Reference to `this` in order to allow method chaining
|
|
47911
49242
|
*/
|
|
47912
|
-
|
|
49243
|
+
setCountUrl(
|
|
47913
49244
|
/**
|
|
47914
|
-
* New value for property `
|
|
49245
|
+
* New value for property `countUrl`
|
|
47915
49246
|
*/
|
|
47916
|
-
|
|
49247
|
+
sCountUrl?: string
|
|
47917
49248
|
): this;
|
|
47918
49249
|
/**
|
|
47919
|
-
* Sets a new value for property {@link #
|
|
49250
|
+
* Sets a new value for property {@link #getDataUrl dataUrl}.
|
|
49251
|
+
*
|
|
49252
|
+
* Specifies the URL from where the to-do cards should be fetched.
|
|
47920
49253
|
*
|
|
47921
49254
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
47922
49255
|
*
|
|
@@ -47925,15 +49258,17 @@ declare module "sap/suite/ui/commons/ToDoPanel" {
|
|
|
47925
49258
|
*
|
|
47926
49259
|
* @returns Reference to `this` in order to allow method chaining
|
|
47927
49260
|
*/
|
|
47928
|
-
|
|
49261
|
+
setDataUrl(
|
|
47929
49262
|
/**
|
|
47930
|
-
* New value for property `
|
|
49263
|
+
* New value for property `dataUrl`
|
|
47931
49264
|
*/
|
|
47932
|
-
|
|
49265
|
+
sDataUrl?: string
|
|
47933
49266
|
): this;
|
|
47934
49267
|
/**
|
|
47935
49268
|
* Sets a new value for property {@link #getTargetAppUrl targetAppUrl}.
|
|
47936
49269
|
*
|
|
49270
|
+
* Specifies the URL of the target application associated with the to-do cards.
|
|
49271
|
+
*
|
|
47937
49272
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
47938
49273
|
*
|
|
47939
49274
|
* Default value is `empty string`.
|
|
@@ -47950,12 +49285,24 @@ declare module "sap/suite/ui/commons/ToDoPanel" {
|
|
|
47950
49285
|
}
|
|
47951
49286
|
|
|
47952
49287
|
export interface $ToDoPanelSettings extends $BasePanelSettings {
|
|
47953
|
-
|
|
49288
|
+
/**
|
|
49289
|
+
* Specifies the base URL for batching requests sent from the panel.
|
|
49290
|
+
*/
|
|
49291
|
+
baseUrl?: string | PropertyBindingInfo;
|
|
47954
49292
|
|
|
49293
|
+
/**
|
|
49294
|
+
* Specifies the URL for fetching the count of requested to-do cards.
|
|
49295
|
+
*/
|
|
47955
49296
|
countUrl?: string | PropertyBindingInfo;
|
|
47956
49297
|
|
|
49298
|
+
/**
|
|
49299
|
+
* Specifies the URL from where the to-do cards should be fetched.
|
|
49300
|
+
*/
|
|
47957
49301
|
dataUrl?: string | PropertyBindingInfo;
|
|
47958
49302
|
|
|
49303
|
+
/**
|
|
49304
|
+
* Specifies the URL of the target application associated with the to-do cards.
|
|
49305
|
+
*/
|
|
47959
49306
|
targetAppUrl?: string | PropertyBindingInfo;
|
|
47960
49307
|
}
|
|
47961
49308
|
}
|
|
@@ -47972,7 +49319,7 @@ declare module "sap/suite/ui/commons/ToDosContainer" {
|
|
|
47972
49319
|
* Container class for managing and storing To-Do cards.
|
|
47973
49320
|
*
|
|
47974
49321
|
* @since 1.121
|
|
47975
|
-
* @experimental
|
|
49322
|
+
* @experimental (since 1.121)
|
|
47976
49323
|
*/
|
|
47977
49324
|
export default class ToDosContainer extends BaseContainer {
|
|
47978
49325
|
constructor();
|
|
@@ -51070,10 +52417,22 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
|
|
|
51070
52417
|
|
|
51071
52418
|
declare namespace sap {
|
|
51072
52419
|
interface IUI5DefineDependencyNames {
|
|
52420
|
+
"sap/suite/ui/commons/App": undefined;
|
|
52421
|
+
|
|
52422
|
+
"sap/suite/ui/commons/AppsContainer": undefined;
|
|
52423
|
+
|
|
51073
52424
|
"sap/suite/ui/commons/AriaProperties": undefined;
|
|
51074
52425
|
|
|
52426
|
+
"sap/suite/ui/commons/BaseApp": undefined;
|
|
52427
|
+
|
|
52428
|
+
"sap/suite/ui/commons/BaseAppPanel": undefined;
|
|
52429
|
+
|
|
52430
|
+
"sap/suite/ui/commons/BaseAppPersPanel": undefined;
|
|
52431
|
+
|
|
51075
52432
|
"sap/suite/ui/commons/BaseContainer": undefined;
|
|
51076
52433
|
|
|
52434
|
+
"sap/suite/ui/commons/BaseLayout": undefined;
|
|
52435
|
+
|
|
51077
52436
|
"sap/suite/ui/commons/BasePanel": undefined;
|
|
51078
52437
|
|
|
51079
52438
|
"sap/suite/ui/commons/BulletChart": undefined;
|
|
@@ -51094,6 +52453,8 @@ declare namespace sap {
|
|
|
51094
52453
|
|
|
51095
52454
|
"sap/suite/ui/commons/CalculationBuilderVariable": undefined;
|
|
51096
52455
|
|
|
52456
|
+
"sap/suite/ui/commons/CardsPanel": undefined;
|
|
52457
|
+
|
|
51097
52458
|
"sap/suite/ui/commons/ChartContainer": undefined;
|
|
51098
52459
|
|
|
51099
52460
|
"sap/suite/ui/commons/ChartContainerContent": undefined;
|
|
@@ -51136,12 +52497,16 @@ declare namespace sap {
|
|
|
51136
52497
|
|
|
51137
52498
|
"sap/suite/ui/commons/FacetOverview": undefined;
|
|
51138
52499
|
|
|
52500
|
+
"sap/suite/ui/commons/FavAppPanel": undefined;
|
|
52501
|
+
|
|
51139
52502
|
"sap/suite/ui/commons/FeedItem": undefined;
|
|
51140
52503
|
|
|
51141
52504
|
"sap/suite/ui/commons/FeedItemHeader": undefined;
|
|
51142
52505
|
|
|
51143
52506
|
"sap/suite/ui/commons/FeedTile": undefined;
|
|
51144
52507
|
|
|
52508
|
+
"sap/suite/ui/commons/FrequentAppPanel": undefined;
|
|
52509
|
+
|
|
51145
52510
|
"sap/suite/ui/commons/GenericTile": undefined;
|
|
51146
52511
|
|
|
51147
52512
|
"sap/suite/ui/commons/GenericTile2X2": undefined;
|
|
@@ -51182,12 +52547,16 @@ declare namespace sap {
|
|
|
51182
52547
|
|
|
51183
52548
|
"sap/suite/ui/commons/InfoTile": undefined;
|
|
51184
52549
|
|
|
52550
|
+
"sap/suite/ui/commons/InsightsContainer": undefined;
|
|
52551
|
+
|
|
51185
52552
|
"sap/suite/ui/commons/JamContent": undefined;
|
|
51186
52553
|
|
|
51187
52554
|
"sap/suite/ui/commons/KpiTile": undefined;
|
|
51188
52555
|
|
|
51189
52556
|
"sap/suite/ui/commons/LaunchTile": undefined;
|
|
51190
52557
|
|
|
52558
|
+
"sap/suite/ui/commons/Layout": undefined;
|
|
52559
|
+
|
|
51191
52560
|
"sap/suite/ui/commons/library": undefined;
|
|
51192
52561
|
|
|
51193
52562
|
"sap/suite/ui/commons/LinkActionSheet": undefined;
|
|
@@ -51252,6 +52621,8 @@ declare namespace sap {
|
|
|
51252
52621
|
|
|
51253
52622
|
"sap/suite/ui/commons/networkgraph/util/Dijkstra": undefined;
|
|
51254
52623
|
|
|
52624
|
+
"sap/suite/ui/commons/NewsAndPageContainer": undefined;
|
|
52625
|
+
|
|
51255
52626
|
"sap/suite/ui/commons/NewsContent": undefined;
|
|
51256
52627
|
|
|
51257
52628
|
"sap/suite/ui/commons/NewsPanel": undefined;
|
|
@@ -51278,6 +52649,8 @@ declare namespace sap {
|
|
|
51278
52649
|
|
|
51279
52650
|
"sap/suite/ui/commons/ProcessFlowNode": undefined;
|
|
51280
52651
|
|
|
52652
|
+
"sap/suite/ui/commons/RecentAppPanel": undefined;
|
|
52653
|
+
|
|
51281
52654
|
"sap/suite/ui/commons/RepeaterViewConfiguration": undefined;
|
|
51282
52655
|
|
|
51283
52656
|
"sap/suite/ui/commons/SituationPanel": undefined;
|
|
@@ -51336,6 +52709,8 @@ declare namespace sap {
|
|
|
51336
52709
|
|
|
51337
52710
|
"sap/suite/ui/commons/TileContent2X2": undefined;
|
|
51338
52711
|
|
|
52712
|
+
"sap/suite/ui/commons/TilesPanel": undefined;
|
|
52713
|
+
|
|
51339
52714
|
"sap/suite/ui/commons/Timeline": undefined;
|
|
51340
52715
|
|
|
51341
52716
|
"sap/suite/ui/commons/TimelineFilterListItem": undefined;
|