@sapui5/ts-types 1.121.1 → 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/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 +9 -3
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +45 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +68 -272
- package/types/sap.fe.navigation.d.ts +116 -8
- 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 +53 -2
- package/types/sap.insights.d.ts +22 -1
- package/types/sap.m.d.ts +988 -55
- 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 +272 -196
- package/types/sap.suite.ui.commons.d.ts +1347 -84
- package/types/sap.suite.ui.generic.template.d.ts +5 -3
- 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 +4 -1
- package/types/sap.ui.comp.d.ts +230 -25
- package/types/sap.ui.core.d.ts +337 -171
- package/types/sap.ui.dt.d.ts +1 -1
- 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/sap.ui.mdc.d.ts +163 -39
- 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/sap.ui.ux3.d.ts +3 -3
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +92 -320
- 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 -482
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +50 -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
|
@@ -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
|
/**
|
|
@@ -18291,6 +18291,21 @@ declare namespace sap {
|
|
|
18291
18291
|
}
|
|
18292
18292
|
}
|
|
18293
18293
|
|
|
18294
|
+
interface $AppSettings extends sap.suite.ui.commons.$BaseAppSettings {
|
|
18295
|
+
/**
|
|
18296
|
+
* Url of the app where the user navigates to on click
|
|
18297
|
+
*/
|
|
18298
|
+
url?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18299
|
+
|
|
18300
|
+
/**
|
|
18301
|
+
* VizId of the app. Used for enabling addition of apps to FavoriteApp panel
|
|
18302
|
+
*/
|
|
18303
|
+
vizId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18304
|
+
}
|
|
18305
|
+
|
|
18306
|
+
interface $AppsContainerSettings
|
|
18307
|
+
extends sap.suite.ui.commons.$BaseContainerSettings {}
|
|
18308
|
+
|
|
18294
18309
|
interface $AriaPropertiesSettings extends sap.ui.core.$ElementSettings {
|
|
18295
18310
|
/**
|
|
18296
18311
|
* Defines a string value that labels the current element. See the related `labelledBy` property.
|
|
@@ -18319,26 +18334,86 @@ declare namespace sap {
|
|
|
18319
18334
|
hasPopup?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18320
18335
|
}
|
|
18321
18336
|
|
|
18322
|
-
interface $
|
|
18323
|
-
|
|
18324
|
-
|
|
18325
|
-
|
|
18337
|
+
interface $BaseAppSettings extends sap.ui.core.$ElementSettings {
|
|
18338
|
+
/**
|
|
18339
|
+
* Title of the app
|
|
18340
|
+
*/
|
|
18341
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18342
|
+
|
|
18343
|
+
/**
|
|
18344
|
+
* Sub header of the app
|
|
18345
|
+
*/
|
|
18346
|
+
subTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18347
|
+
|
|
18348
|
+
/**
|
|
18349
|
+
* Background color of the app
|
|
18350
|
+
*/
|
|
18351
|
+
bgColor?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18352
|
+
|
|
18353
|
+
/**
|
|
18354
|
+
* Icon of the app
|
|
18355
|
+
*/
|
|
18356
|
+
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18357
|
+
|
|
18358
|
+
/**
|
|
18359
|
+
* Whether the app is in loaded or loading status
|
|
18360
|
+
*/
|
|
18361
|
+
status?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18362
|
+
}
|
|
18363
|
+
|
|
18364
|
+
interface $BaseAppPanelSettings
|
|
18365
|
+
extends sap.suite.ui.commons.$BasePanelSettings {
|
|
18366
|
+
/**
|
|
18367
|
+
* Holds the apps aggregation
|
|
18368
|
+
*/
|
|
18369
|
+
apps?:
|
|
18370
|
+
| sap.suite.ui.commons.App[]
|
|
18371
|
+
| sap.suite.ui.commons.App
|
|
18372
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
18373
|
+
| `{${string}}`;
|
|
18374
|
+
}
|
|
18375
|
+
|
|
18376
|
+
interface $BaseAppPersPanelSettings
|
|
18377
|
+
extends sap.suite.ui.commons.$BaseAppPanelSettings {
|
|
18378
|
+
apps?:
|
|
18379
|
+
| sap.suite.ui.commons.App[]
|
|
18380
|
+
| sap.suite.ui.commons.App
|
|
18326
18381
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
18327
18382
|
| `{${string}}`;
|
|
18328
18383
|
}
|
|
18329
18384
|
|
|
18330
|
-
interface $
|
|
18385
|
+
interface $BaseContainerSettings extends sap.ui.core.$ControlSettings {
|
|
18386
|
+
/**
|
|
18387
|
+
* Width to be set for the container
|
|
18388
|
+
*/
|
|
18331
18389
|
width?:
|
|
18332
18390
|
| sap.ui.core.CSSSize
|
|
18333
18391
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18334
18392
|
| `{${string}}`;
|
|
18335
18393
|
|
|
18336
|
-
|
|
18337
|
-
|
|
18338
|
-
|
|
18394
|
+
/**
|
|
18395
|
+
* The container content aggregation which should be of type BasePanel
|
|
18396
|
+
*/
|
|
18397
|
+
content?:
|
|
18398
|
+
| sap.suite.ui.commons.BasePanel[]
|
|
18399
|
+
| sap.suite.ui.commons.BasePanel
|
|
18400
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
18339
18401
|
| `{${string}}`;
|
|
18340
18402
|
}
|
|
18341
18403
|
|
|
18404
|
+
interface $BaseLayoutSettings extends sap.m.$PageSettings {
|
|
18405
|
+
/**
|
|
18406
|
+
* The content aggregation which should be of type BaseContainer
|
|
18407
|
+
*/
|
|
18408
|
+
content?:
|
|
18409
|
+
| sap.suite.ui.commons.BaseContainer[]
|
|
18410
|
+
| sap.suite.ui.commons.BaseContainer
|
|
18411
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
18412
|
+
| `{${string}}`;
|
|
18413
|
+
}
|
|
18414
|
+
|
|
18415
|
+
interface $BasePanelSettings extends sap.ui.core.$ElementSettings {}
|
|
18416
|
+
|
|
18342
18417
|
interface $BulletChartSettings
|
|
18343
18418
|
extends sap.suite.ui.microchart.$BulletMicroChartSettings {}
|
|
18344
18419
|
|
|
@@ -18708,6 +18783,9 @@ declare namespace sap {
|
|
|
18708
18783
|
| `{${string}}`;
|
|
18709
18784
|
}
|
|
18710
18785
|
|
|
18786
|
+
interface $CardsPanelSettings
|
|
18787
|
+
extends sap.suite.ui.commons.$BasePanelSettings {}
|
|
18788
|
+
|
|
18711
18789
|
interface $ChartContainerSettings extends sap.ui.core.$ControlSettings {
|
|
18712
18790
|
/**
|
|
18713
18791
|
* Set to true to display the personalization icon. Set to false to hide it.
|
|
@@ -19302,6 +19380,9 @@ declare namespace sap {
|
|
|
19302
19380
|
heightChange?: (oEvent: sap.ui.base.Event) => void;
|
|
19303
19381
|
}
|
|
19304
19382
|
|
|
19383
|
+
interface $FavAppPanelSettings
|
|
19384
|
+
extends sap.suite.ui.commons.$BaseAppPersPanelSettings {}
|
|
19385
|
+
|
|
19305
19386
|
interface $FeedItemSettings extends sap.ui.core.$ElementSettings {
|
|
19306
19387
|
/**
|
|
19307
19388
|
* The title of the feed item.
|
|
@@ -19427,6 +19508,9 @@ declare namespace sap {
|
|
|
19427
19508
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
19428
19509
|
}
|
|
19429
19510
|
|
|
19511
|
+
interface $FrequentAppPanelSettings
|
|
19512
|
+
extends sap.suite.ui.commons.$BaseAppPersPanelSettings {}
|
|
19513
|
+
|
|
19430
19514
|
interface $GenericTileSettings extends sap.m.$GenericTileSettings {}
|
|
19431
19515
|
|
|
19432
19516
|
interface $GenericTile2X2Settings extends sap.ui.core.$ControlSettings {
|
|
@@ -19678,6 +19762,9 @@ declare namespace sap {
|
|
|
19678
19762
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
19679
19763
|
}
|
|
19680
19764
|
|
|
19765
|
+
interface $InsightsContainerSettings
|
|
19766
|
+
extends sap.suite.ui.commons.$BaseContainerSettings {}
|
|
19767
|
+
|
|
19681
19768
|
interface $JamContentSettings extends sap.m.$FeedContentSettings {}
|
|
19682
19769
|
|
|
19683
19770
|
interface $KpiTileSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -19746,6 +19833,9 @@ declare namespace sap {
|
|
|
19746
19833
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
19747
19834
|
}
|
|
19748
19835
|
|
|
19836
|
+
interface $LayoutSettings
|
|
19837
|
+
extends sap.suite.ui.commons.$BaseLayoutSettings {}
|
|
19838
|
+
|
|
19749
19839
|
interface $LinkActionSheetSettings extends sap.m.$ActionSheetSettings {
|
|
19750
19840
|
/**
|
|
19751
19841
|
* These buttons or links are added to the content area in the LinkActionSheet control. If the user chooses
|
|
@@ -19764,9 +19854,23 @@ declare namespace sap {
|
|
|
19764
19854
|
}
|
|
19765
19855
|
|
|
19766
19856
|
interface $MenuItemSettings extends sap.ui.core.$ElementSettings {
|
|
19857
|
+
/**
|
|
19858
|
+
* Title of the menu item
|
|
19859
|
+
*/
|
|
19767
19860
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19768
19861
|
|
|
19769
|
-
|
|
19862
|
+
/**
|
|
19863
|
+
* Icon of the menu item
|
|
19864
|
+
*/
|
|
19865
|
+
icon?:
|
|
19866
|
+
| sap.ui.core.URI
|
|
19867
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19868
|
+
| `{${string}}`;
|
|
19869
|
+
|
|
19870
|
+
/**
|
|
19871
|
+
* Type of menu item visualization in the menu list
|
|
19872
|
+
*/
|
|
19873
|
+
type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19770
19874
|
|
|
19771
19875
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
19772
19876
|
}
|
|
@@ -19963,10 +20067,16 @@ declare namespace sap {
|
|
|
19963
20067
|
| `{${string}}`;
|
|
19964
20068
|
}
|
|
19965
20069
|
|
|
20070
|
+
interface $NewsAndPagesContainerSettings
|
|
20071
|
+
extends sap.suite.ui.commons.$BaseContainerSettings {}
|
|
20072
|
+
|
|
19966
20073
|
interface $NewsContentSettings extends sap.m.$NewsContentSettings {}
|
|
19967
20074
|
|
|
19968
20075
|
interface $NewsPanelSettings
|
|
19969
20076
|
extends sap.suite.ui.commons.$BasePanelSettings {
|
|
20077
|
+
/**
|
|
20078
|
+
* Url to fetch the news feed from
|
|
20079
|
+
*/
|
|
19970
20080
|
url?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
19971
20081
|
}
|
|
19972
20082
|
|
|
@@ -20283,9 +20393,6 @@ declare namespace sap {
|
|
|
20283
20393
|
| `{${string}}`;
|
|
20284
20394
|
}
|
|
20285
20395
|
|
|
20286
|
-
interface $PagePanelSettings
|
|
20287
|
-
extends sap.suite.ui.commons.$BasePanelSettings {}
|
|
20288
|
-
|
|
20289
20396
|
interface $PictureZoomInSettings extends sap.ui.core.$ControlSettings {
|
|
20290
20397
|
/**
|
|
20291
20398
|
* Description is shown under image.
|
|
@@ -20959,6 +21066,9 @@ declare namespace sap {
|
|
|
20959
21066
|
|
|
20960
21067
|
interface $TaskPanelSettings
|
|
20961
21068
|
extends sap.suite.ui.commons.$ToDoPanelSettings {
|
|
21069
|
+
/**
|
|
21070
|
+
* Specifies the URL for fetching the custom attributes to be displayed along with the task cards.
|
|
21071
|
+
*/
|
|
20962
21072
|
customAttributeUrl?:
|
|
20963
21073
|
| string
|
|
20964
21074
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
@@ -21796,12 +21906,24 @@ declare namespace sap {
|
|
|
21796
21906
|
|
|
21797
21907
|
interface $ToDoPanelSettings
|
|
21798
21908
|
extends sap.suite.ui.commons.$BasePanelSettings {
|
|
21799
|
-
|
|
21909
|
+
/**
|
|
21910
|
+
* Specifies the base URL for batching requests sent from the panel.
|
|
21911
|
+
*/
|
|
21912
|
+
baseUrl?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21800
21913
|
|
|
21914
|
+
/**
|
|
21915
|
+
* Specifies the URL for fetching the count of requested to-do cards.
|
|
21916
|
+
*/
|
|
21801
21917
|
countUrl?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21802
21918
|
|
|
21919
|
+
/**
|
|
21920
|
+
* Specifies the URL from where the to-do cards should be fetched.
|
|
21921
|
+
*/
|
|
21803
21922
|
dataUrl?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21804
21923
|
|
|
21924
|
+
/**
|
|
21925
|
+
* Specifies the URL of the target application associated with the to-do cards.
|
|
21926
|
+
*/
|
|
21805
21927
|
targetAppUrl?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21806
21928
|
}
|
|
21807
21929
|
|
|
@@ -22916,6 +23038,151 @@ declare namespace sap {
|
|
|
22916
23038
|
query?: string;
|
|
22917
23039
|
}
|
|
22918
23040
|
|
|
23041
|
+
/**
|
|
23042
|
+
* Provides the App Class.
|
|
23043
|
+
*
|
|
23044
|
+
* @since 1.121.0
|
|
23045
|
+
* @experimental (since 1.121)
|
|
23046
|
+
*/
|
|
23047
|
+
class App extends sap.suite.ui.commons.BaseApp {
|
|
23048
|
+
/**
|
|
23049
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
23050
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
23051
|
+
* of the syntax of the settings object.
|
|
23052
|
+
*/
|
|
23053
|
+
constructor();
|
|
23054
|
+
|
|
23055
|
+
/**
|
|
23056
|
+
* Creates a new subclass of class sap.suite.ui.commons.App with name `sClassName` and enriches it with
|
|
23057
|
+
* the information contained in `oClassInfo`.
|
|
23058
|
+
*
|
|
23059
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseApp.extend}.
|
|
23060
|
+
*
|
|
23061
|
+
*
|
|
23062
|
+
* @returns Created class / constructor function
|
|
23063
|
+
*/
|
|
23064
|
+
static extend<T extends Record<string, unknown>>(
|
|
23065
|
+
/**
|
|
23066
|
+
* Name of the class being created
|
|
23067
|
+
*/
|
|
23068
|
+
sClassName: string,
|
|
23069
|
+
/**
|
|
23070
|
+
* Object literal with information about the class
|
|
23071
|
+
*/
|
|
23072
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.App>,
|
|
23073
|
+
/**
|
|
23074
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23075
|
+
* used by this class
|
|
23076
|
+
*/
|
|
23077
|
+
FNMetaImpl?: Function
|
|
23078
|
+
): Function;
|
|
23079
|
+
/**
|
|
23080
|
+
* Returns a metadata object for class sap.suite.ui.commons.App.
|
|
23081
|
+
*
|
|
23082
|
+
*
|
|
23083
|
+
* @returns Metadata object describing this class
|
|
23084
|
+
*/
|
|
23085
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23086
|
+
/**
|
|
23087
|
+
* Gets current value of property {@link #getUrl url}.
|
|
23088
|
+
*
|
|
23089
|
+
* Url of the app where the user navigates to on click
|
|
23090
|
+
*
|
|
23091
|
+
* Default value is `empty string`.
|
|
23092
|
+
*
|
|
23093
|
+
*
|
|
23094
|
+
* @returns Value of property `url`
|
|
23095
|
+
*/
|
|
23096
|
+
getUrl(): string;
|
|
23097
|
+
/**
|
|
23098
|
+
* Gets current value of property {@link #getVizId vizId}.
|
|
23099
|
+
*
|
|
23100
|
+
* VizId of the app. Used for enabling addition of apps to FavoriteApp panel
|
|
23101
|
+
*
|
|
23102
|
+
* Default value is `empty string`.
|
|
23103
|
+
*
|
|
23104
|
+
*
|
|
23105
|
+
* @returns Value of property `vizId`
|
|
23106
|
+
*/
|
|
23107
|
+
getVizId(): string;
|
|
23108
|
+
/**
|
|
23109
|
+
* Sets a new value for property {@link #getUrl url}.
|
|
23110
|
+
*
|
|
23111
|
+
* Url of the app where the user navigates to on click
|
|
23112
|
+
*
|
|
23113
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23114
|
+
*
|
|
23115
|
+
* Default value is `empty string`.
|
|
23116
|
+
*
|
|
23117
|
+
*
|
|
23118
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23119
|
+
*/
|
|
23120
|
+
setUrl(
|
|
23121
|
+
/**
|
|
23122
|
+
* New value for property `url`
|
|
23123
|
+
*/
|
|
23124
|
+
sUrl?: string
|
|
23125
|
+
): this;
|
|
23126
|
+
/**
|
|
23127
|
+
* Sets a new value for property {@link #getVizId vizId}.
|
|
23128
|
+
*
|
|
23129
|
+
* VizId of the app. Used for enabling addition of apps to FavoriteApp panel
|
|
23130
|
+
*
|
|
23131
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23132
|
+
*
|
|
23133
|
+
* Default value is `empty string`.
|
|
23134
|
+
*
|
|
23135
|
+
*
|
|
23136
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23137
|
+
*/
|
|
23138
|
+
setVizId(
|
|
23139
|
+
/**
|
|
23140
|
+
* New value for property `vizId`
|
|
23141
|
+
*/
|
|
23142
|
+
sVizId?: string
|
|
23143
|
+
): this;
|
|
23144
|
+
}
|
|
23145
|
+
/**
|
|
23146
|
+
* Container class for Apps Panel
|
|
23147
|
+
*
|
|
23148
|
+
* @since 1.121
|
|
23149
|
+
* @experimental (since 1.121)
|
|
23150
|
+
*/
|
|
23151
|
+
class AppsContainer extends sap.suite.ui.commons.BaseContainer {
|
|
23152
|
+
constructor();
|
|
23153
|
+
|
|
23154
|
+
/**
|
|
23155
|
+
* Creates a new subclass of class sap.suite.ui.commons.AppsContainer with name `sClassName` and enriches
|
|
23156
|
+
* it with the information contained in `oClassInfo`.
|
|
23157
|
+
*
|
|
23158
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseContainer.extend}.
|
|
23159
|
+
*
|
|
23160
|
+
*
|
|
23161
|
+
* @returns Created class / constructor function
|
|
23162
|
+
*/
|
|
23163
|
+
static extend<T extends Record<string, unknown>>(
|
|
23164
|
+
/**
|
|
23165
|
+
* Name of the class being created
|
|
23166
|
+
*/
|
|
23167
|
+
sClassName: string,
|
|
23168
|
+
/**
|
|
23169
|
+
* Object literal with information about the class
|
|
23170
|
+
*/
|
|
23171
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.AppsContainer>,
|
|
23172
|
+
/**
|
|
23173
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23174
|
+
* used by this class
|
|
23175
|
+
*/
|
|
23176
|
+
FNMetaImpl?: Function
|
|
23177
|
+
): Function;
|
|
23178
|
+
/**
|
|
23179
|
+
* Returns a metadata object for class sap.suite.ui.commons.AppsContainer.
|
|
23180
|
+
*
|
|
23181
|
+
*
|
|
23182
|
+
* @returns Metadata object describing this class
|
|
23183
|
+
*/
|
|
23184
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23185
|
+
}
|
|
22919
23186
|
/**
|
|
22920
23187
|
* `AriaProperties` provides ARIA-compliant properties for screen reader software that can be added to any
|
|
22921
23188
|
* control renderer.
|
|
@@ -23109,10 +23376,449 @@ declare namespace sap {
|
|
|
23109
23376
|
): this;
|
|
23110
23377
|
}
|
|
23111
23378
|
/**
|
|
23112
|
-
*
|
|
23379
|
+
* BaseApp class for managing apps.
|
|
23380
|
+
*
|
|
23381
|
+
* @since 1.121.0
|
|
23382
|
+
* @experimental (since 1.121)
|
|
23383
|
+
*/
|
|
23384
|
+
abstract class BaseApp extends sap.ui.core.Element {
|
|
23385
|
+
/**
|
|
23386
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
23387
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
23388
|
+
* of the syntax of the settings object.
|
|
23389
|
+
*/
|
|
23390
|
+
constructor();
|
|
23391
|
+
|
|
23392
|
+
/**
|
|
23393
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseApp with name `sClassName` and enriches it with
|
|
23394
|
+
* the information contained in `oClassInfo`.
|
|
23395
|
+
*
|
|
23396
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
23397
|
+
*
|
|
23398
|
+
*
|
|
23399
|
+
* @returns Created class / constructor function
|
|
23400
|
+
*/
|
|
23401
|
+
static extend<T extends Record<string, unknown>>(
|
|
23402
|
+
/**
|
|
23403
|
+
* Name of the class being created
|
|
23404
|
+
*/
|
|
23405
|
+
sClassName: string,
|
|
23406
|
+
/**
|
|
23407
|
+
* Object literal with information about the class
|
|
23408
|
+
*/
|
|
23409
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.BaseApp>,
|
|
23410
|
+
/**
|
|
23411
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23412
|
+
* used by this class
|
|
23413
|
+
*/
|
|
23414
|
+
FNMetaImpl?: Function
|
|
23415
|
+
): Function;
|
|
23416
|
+
/**
|
|
23417
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseApp.
|
|
23418
|
+
*
|
|
23419
|
+
*
|
|
23420
|
+
* @returns Metadata object describing this class
|
|
23421
|
+
*/
|
|
23422
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23423
|
+
/**
|
|
23424
|
+
* Gets current value of property {@link #getBgColor bgColor}.
|
|
23425
|
+
*
|
|
23426
|
+
* Background color of the app
|
|
23427
|
+
*
|
|
23428
|
+
* Default value is `empty string`.
|
|
23429
|
+
*
|
|
23430
|
+
*
|
|
23431
|
+
* @returns Value of property `bgColor`
|
|
23432
|
+
*/
|
|
23433
|
+
getBgColor(): string;
|
|
23434
|
+
/**
|
|
23435
|
+
* Gets current value of property {@link #getIcon icon}.
|
|
23436
|
+
*
|
|
23437
|
+
* Icon of the app
|
|
23438
|
+
*
|
|
23439
|
+
* Default value is `empty string`.
|
|
23440
|
+
*
|
|
23441
|
+
*
|
|
23442
|
+
* @returns Value of property `icon`
|
|
23443
|
+
*/
|
|
23444
|
+
getIcon(): string;
|
|
23445
|
+
/**
|
|
23446
|
+
* Gets current value of property {@link #getStatus status}.
|
|
23447
|
+
*
|
|
23448
|
+
* Whether the app is in loaded or loading status
|
|
23449
|
+
*
|
|
23450
|
+
* Default value is `'Loaded'`.
|
|
23451
|
+
*
|
|
23452
|
+
*
|
|
23453
|
+
* @returns Value of property `status`
|
|
23454
|
+
*/
|
|
23455
|
+
getStatus(): string;
|
|
23456
|
+
/**
|
|
23457
|
+
* Gets current value of property {@link #getSubTitle subTitle}.
|
|
23458
|
+
*
|
|
23459
|
+
* Sub header of the app
|
|
23460
|
+
*
|
|
23461
|
+
* Default value is `empty string`.
|
|
23462
|
+
*
|
|
23463
|
+
*
|
|
23464
|
+
* @returns Value of property `subTitle`
|
|
23465
|
+
*/
|
|
23466
|
+
getSubTitle(): string;
|
|
23467
|
+
/**
|
|
23468
|
+
* Gets current value of property {@link #getTitle title}.
|
|
23469
|
+
*
|
|
23470
|
+
* Title of the app
|
|
23471
|
+
*
|
|
23472
|
+
* Default value is `empty string`.
|
|
23473
|
+
*
|
|
23474
|
+
*
|
|
23475
|
+
* @returns Value of property `title`
|
|
23476
|
+
*/
|
|
23477
|
+
getTitle(): string;
|
|
23478
|
+
/**
|
|
23479
|
+
* Sets a new value for property {@link #getBgColor bgColor}.
|
|
23480
|
+
*
|
|
23481
|
+
* Background color of the app
|
|
23482
|
+
*
|
|
23483
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23484
|
+
*
|
|
23485
|
+
* Default value is `empty string`.
|
|
23486
|
+
*
|
|
23487
|
+
*
|
|
23488
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23489
|
+
*/
|
|
23490
|
+
setBgColor(
|
|
23491
|
+
/**
|
|
23492
|
+
* New value for property `bgColor`
|
|
23493
|
+
*/
|
|
23494
|
+
sBgColor?: string
|
|
23495
|
+
): this;
|
|
23496
|
+
/**
|
|
23497
|
+
* Sets a new value for property {@link #getIcon icon}.
|
|
23498
|
+
*
|
|
23499
|
+
* Icon of the app
|
|
23500
|
+
*
|
|
23501
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23502
|
+
*
|
|
23503
|
+
* Default value is `empty string`.
|
|
23504
|
+
*
|
|
23505
|
+
*
|
|
23506
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23507
|
+
*/
|
|
23508
|
+
setIcon(
|
|
23509
|
+
/**
|
|
23510
|
+
* New value for property `icon`
|
|
23511
|
+
*/
|
|
23512
|
+
sIcon?: string
|
|
23513
|
+
): this;
|
|
23514
|
+
/**
|
|
23515
|
+
* Sets a new value for property {@link #getStatus status}.
|
|
23516
|
+
*
|
|
23517
|
+
* Whether the app is in loaded or loading status
|
|
23518
|
+
*
|
|
23519
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23520
|
+
*
|
|
23521
|
+
* Default value is `'Loaded'`.
|
|
23522
|
+
*
|
|
23523
|
+
*
|
|
23524
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23525
|
+
*/
|
|
23526
|
+
setStatus(
|
|
23527
|
+
/**
|
|
23528
|
+
* New value for property `status`
|
|
23529
|
+
*/
|
|
23530
|
+
sStatus?: string
|
|
23531
|
+
): this;
|
|
23532
|
+
/**
|
|
23533
|
+
* Sets a new value for property {@link #getSubTitle subTitle}.
|
|
23534
|
+
*
|
|
23535
|
+
* Sub header of the app
|
|
23536
|
+
*
|
|
23537
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23538
|
+
*
|
|
23539
|
+
* Default value is `empty string`.
|
|
23540
|
+
*
|
|
23541
|
+
*
|
|
23542
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23543
|
+
*/
|
|
23544
|
+
setSubTitle(
|
|
23545
|
+
/**
|
|
23546
|
+
* New value for property `subTitle`
|
|
23547
|
+
*/
|
|
23548
|
+
sSubTitle?: string
|
|
23549
|
+
): this;
|
|
23550
|
+
/**
|
|
23551
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
23552
|
+
*
|
|
23553
|
+
* Title of the app
|
|
23554
|
+
*
|
|
23555
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23556
|
+
*
|
|
23557
|
+
* Default value is `empty string`.
|
|
23558
|
+
*
|
|
23559
|
+
*
|
|
23560
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23561
|
+
*/
|
|
23562
|
+
setTitle(
|
|
23563
|
+
/**
|
|
23564
|
+
* New value for property `title`
|
|
23565
|
+
*/
|
|
23566
|
+
sTitle?: string
|
|
23567
|
+
): this;
|
|
23568
|
+
}
|
|
23569
|
+
/**
|
|
23570
|
+
* Abstract Panel class for managing Apps
|
|
23571
|
+
*
|
|
23572
|
+
* @since 1.121.0
|
|
23573
|
+
* @experimental (since 1.121)
|
|
23574
|
+
*/
|
|
23575
|
+
abstract class BaseAppPanel extends sap.suite.ui.commons.BasePanel {
|
|
23576
|
+
/**
|
|
23577
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
23578
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
23579
|
+
* of the syntax of the settings object.
|
|
23580
|
+
*/
|
|
23581
|
+
constructor();
|
|
23582
|
+
|
|
23583
|
+
/**
|
|
23584
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseAppPanel with name `sClassName` and enriches
|
|
23585
|
+
* it with the information contained in `oClassInfo`.
|
|
23586
|
+
*
|
|
23587
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BasePanel.extend}.
|
|
23588
|
+
*
|
|
23589
|
+
*
|
|
23590
|
+
* @returns Created class / constructor function
|
|
23591
|
+
*/
|
|
23592
|
+
static extend<T extends Record<string, unknown>>(
|
|
23593
|
+
/**
|
|
23594
|
+
* Name of the class being created
|
|
23595
|
+
*/
|
|
23596
|
+
sClassName: string,
|
|
23597
|
+
/**
|
|
23598
|
+
* Object literal with information about the class
|
|
23599
|
+
*/
|
|
23600
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.BaseAppPanel>,
|
|
23601
|
+
/**
|
|
23602
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23603
|
+
* used by this class
|
|
23604
|
+
*/
|
|
23605
|
+
FNMetaImpl?: Function
|
|
23606
|
+
): Function;
|
|
23607
|
+
/**
|
|
23608
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseAppPanel.
|
|
23609
|
+
*
|
|
23610
|
+
*
|
|
23611
|
+
* @returns Metadata object describing this class
|
|
23612
|
+
*/
|
|
23613
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23614
|
+
/**
|
|
23615
|
+
* Adds some app to the aggregation {@link #getApps apps}.
|
|
23616
|
+
*
|
|
23617
|
+
*
|
|
23618
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23619
|
+
*/
|
|
23620
|
+
addApp(
|
|
23621
|
+
/**
|
|
23622
|
+
* The app to add; if empty, nothing is inserted
|
|
23623
|
+
*/
|
|
23624
|
+
oApp: sap.suite.ui.commons.App
|
|
23625
|
+
): this;
|
|
23626
|
+
/**
|
|
23627
|
+
* Destroys all the apps in the aggregation {@link #getApps apps}.
|
|
23628
|
+
*
|
|
23629
|
+
*
|
|
23630
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23631
|
+
*/
|
|
23632
|
+
destroyApps(): this;
|
|
23633
|
+
/**
|
|
23634
|
+
* Gets content of aggregation {@link #getApps apps}.
|
|
23635
|
+
*
|
|
23636
|
+
* Holds the apps aggregation
|
|
23637
|
+
*/
|
|
23638
|
+
getApps(): sap.suite.ui.commons.App[];
|
|
23639
|
+
/**
|
|
23640
|
+
* Checks for the provided `sap.suite.ui.commons.App` in the aggregation {@link #getApps apps}. and returns
|
|
23641
|
+
* its index if found or -1 otherwise.
|
|
23642
|
+
*
|
|
23643
|
+
*
|
|
23644
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
23645
|
+
*/
|
|
23646
|
+
indexOfApp(
|
|
23647
|
+
/**
|
|
23648
|
+
* The app whose index is looked for
|
|
23649
|
+
*/
|
|
23650
|
+
oApp: sap.suite.ui.commons.App
|
|
23651
|
+
): int;
|
|
23652
|
+
/**
|
|
23653
|
+
* Inserts a app into the aggregation {@link #getApps apps}.
|
|
23654
|
+
*
|
|
23655
|
+
*
|
|
23656
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23657
|
+
*/
|
|
23658
|
+
insertApp(
|
|
23659
|
+
/**
|
|
23660
|
+
* The app to insert; if empty, nothing is inserted
|
|
23661
|
+
*/
|
|
23662
|
+
oApp: sap.suite.ui.commons.App,
|
|
23663
|
+
/**
|
|
23664
|
+
* The `0`-based index the app should be inserted at; for a negative value of `iIndex`, the app is inserted
|
|
23665
|
+
* at position 0; for a value greater than the current size of the aggregation, the app is inserted at the
|
|
23666
|
+
* last position
|
|
23667
|
+
*/
|
|
23668
|
+
iIndex: int
|
|
23669
|
+
): this;
|
|
23670
|
+
/**
|
|
23671
|
+
* Removes all the controls from the aggregation {@link #getApps apps}.
|
|
23672
|
+
*
|
|
23673
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
23674
|
+
*
|
|
23675
|
+
*
|
|
23676
|
+
* @returns An array of the removed elements (might be empty)
|
|
23677
|
+
*/
|
|
23678
|
+
removeAllApps(): sap.suite.ui.commons.App[];
|
|
23679
|
+
/**
|
|
23680
|
+
* Removes a app from the aggregation {@link #getApps apps}.
|
|
23681
|
+
*
|
|
23682
|
+
*
|
|
23683
|
+
* @returns The removed app or `null`
|
|
23684
|
+
*/
|
|
23685
|
+
removeApp(
|
|
23686
|
+
/**
|
|
23687
|
+
* The app to remove or its index or id
|
|
23688
|
+
*/
|
|
23689
|
+
vApp: int | string | sap.suite.ui.commons.App
|
|
23690
|
+
): sap.suite.ui.commons.App | null;
|
|
23691
|
+
}
|
|
23692
|
+
/**
|
|
23693
|
+
* Provides the BaseAppPersPanel Class which is BaseAppPanel with personalisation.
|
|
23694
|
+
*
|
|
23695
|
+
* @since 1.121.0
|
|
23696
|
+
* @experimental (since 1.121)
|
|
23697
|
+
*/
|
|
23698
|
+
abstract class BaseAppPersPanel extends sap.suite.ui.commons
|
|
23699
|
+
.BaseAppPanel {
|
|
23700
|
+
/**
|
|
23701
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
23702
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
23703
|
+
* of the syntax of the settings object.
|
|
23704
|
+
*/
|
|
23705
|
+
constructor();
|
|
23706
|
+
|
|
23707
|
+
/**
|
|
23708
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseAppPersPanel with name `sClassName` and enriches
|
|
23709
|
+
* it with the information contained in `oClassInfo`.
|
|
23710
|
+
*
|
|
23711
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseAppPanel.extend}.
|
|
23712
|
+
*
|
|
23713
|
+
*
|
|
23714
|
+
* @returns Created class / constructor function
|
|
23715
|
+
*/
|
|
23716
|
+
static extend<T extends Record<string, unknown>>(
|
|
23717
|
+
/**
|
|
23718
|
+
* Name of the class being created
|
|
23719
|
+
*/
|
|
23720
|
+
sClassName: string,
|
|
23721
|
+
/**
|
|
23722
|
+
* Object literal with information about the class
|
|
23723
|
+
*/
|
|
23724
|
+
oClassInfo?: sap.ClassInfo<
|
|
23725
|
+
T,
|
|
23726
|
+
sap.suite.ui.commons.BaseAppPersPanel
|
|
23727
|
+
>,
|
|
23728
|
+
/**
|
|
23729
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23730
|
+
* used by this class
|
|
23731
|
+
*/
|
|
23732
|
+
FNMetaImpl?: Function
|
|
23733
|
+
): Function;
|
|
23734
|
+
/**
|
|
23735
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseAppPersPanel.
|
|
23736
|
+
*
|
|
23737
|
+
*
|
|
23738
|
+
* @returns Metadata object describing this class
|
|
23739
|
+
*/
|
|
23740
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23741
|
+
/**
|
|
23742
|
+
* Adds some app to the aggregation {@link #getApps apps}.
|
|
23743
|
+
*
|
|
23744
|
+
*
|
|
23745
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23746
|
+
*/
|
|
23747
|
+
addApp(
|
|
23748
|
+
/**
|
|
23749
|
+
* The app to add; if empty, nothing is inserted
|
|
23750
|
+
*/
|
|
23751
|
+
oApp: sap.suite.ui.commons.App
|
|
23752
|
+
): this;
|
|
23753
|
+
/**
|
|
23754
|
+
* Destroys all the apps in the aggregation {@link #getApps apps}.
|
|
23755
|
+
*
|
|
23756
|
+
*
|
|
23757
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23758
|
+
*/
|
|
23759
|
+
destroyApps(): this;
|
|
23760
|
+
/**
|
|
23761
|
+
* Gets content of aggregation {@link #getApps apps}.
|
|
23762
|
+
*/
|
|
23763
|
+
getApps(): sap.suite.ui.commons.App[];
|
|
23764
|
+
/**
|
|
23765
|
+
* Checks for the provided `sap.suite.ui.commons.App` in the aggregation {@link #getApps apps}. and returns
|
|
23766
|
+
* its index if found or -1 otherwise.
|
|
23767
|
+
*
|
|
23768
|
+
*
|
|
23769
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
23770
|
+
*/
|
|
23771
|
+
indexOfApp(
|
|
23772
|
+
/**
|
|
23773
|
+
* The app whose index is looked for
|
|
23774
|
+
*/
|
|
23775
|
+
oApp: sap.suite.ui.commons.App
|
|
23776
|
+
): int;
|
|
23777
|
+
/**
|
|
23778
|
+
* Inserts a app into the aggregation {@link #getApps apps}.
|
|
23779
|
+
*
|
|
23780
|
+
*
|
|
23781
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23782
|
+
*/
|
|
23783
|
+
insertApp(
|
|
23784
|
+
/**
|
|
23785
|
+
* The app to insert; if empty, nothing is inserted
|
|
23786
|
+
*/
|
|
23787
|
+
oApp: sap.suite.ui.commons.App,
|
|
23788
|
+
/**
|
|
23789
|
+
* The `0`-based index the app should be inserted at; for a negative value of `iIndex`, the app is inserted
|
|
23790
|
+
* at position 0; for a value greater than the current size of the aggregation, the app is inserted at the
|
|
23791
|
+
* last position
|
|
23792
|
+
*/
|
|
23793
|
+
iIndex: int
|
|
23794
|
+
): this;
|
|
23795
|
+
/**
|
|
23796
|
+
* Removes all the controls from the aggregation {@link #getApps apps}.
|
|
23797
|
+
*
|
|
23798
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
23799
|
+
*
|
|
23800
|
+
*
|
|
23801
|
+
* @returns An array of the removed elements (might be empty)
|
|
23802
|
+
*/
|
|
23803
|
+
removeAllApps(): sap.suite.ui.commons.App[];
|
|
23804
|
+
/**
|
|
23805
|
+
* Removes a app from the aggregation {@link #getApps apps}.
|
|
23806
|
+
*
|
|
23807
|
+
*
|
|
23808
|
+
* @returns The removed app or `null`
|
|
23809
|
+
*/
|
|
23810
|
+
removeApp(
|
|
23811
|
+
/**
|
|
23812
|
+
* The app to remove or its index or id
|
|
23813
|
+
*/
|
|
23814
|
+
vApp: int | string | sap.suite.ui.commons.App
|
|
23815
|
+
): sap.suite.ui.commons.App | null;
|
|
23816
|
+
}
|
|
23817
|
+
/**
|
|
23818
|
+
* Abstract base class for My Home layout control container.
|
|
23113
23819
|
*
|
|
23114
23820
|
* @since 1.121
|
|
23115
|
-
* @experimental
|
|
23821
|
+
* @experimental (since 1.121)
|
|
23116
23822
|
*/
|
|
23117
23823
|
abstract class BaseContainer extends sap.ui.core.Control {
|
|
23118
23824
|
/**
|
|
@@ -23174,8 +23880,21 @@ declare namespace sap {
|
|
|
23174
23880
|
destroyContent(): this;
|
|
23175
23881
|
/**
|
|
23176
23882
|
* Gets content of aggregation {@link #getContent content}.
|
|
23883
|
+
*
|
|
23884
|
+
* The container content aggregation which should be of type BasePanel
|
|
23177
23885
|
*/
|
|
23178
23886
|
getContent(): sap.suite.ui.commons.BasePanel[];
|
|
23887
|
+
/**
|
|
23888
|
+
* Gets current value of property {@link #getWidth width}.
|
|
23889
|
+
*
|
|
23890
|
+
* Width to be set for the container
|
|
23891
|
+
*
|
|
23892
|
+
* Default value is `"100%"`.
|
|
23893
|
+
*
|
|
23894
|
+
*
|
|
23895
|
+
* @returns Value of property `width`
|
|
23896
|
+
*/
|
|
23897
|
+
getWidth(): sap.ui.core.CSSSize;
|
|
23179
23898
|
/**
|
|
23180
23899
|
* Checks for the provided `sap.suite.ui.commons.BasePanel` in the aggregation {@link #getContent content}.
|
|
23181
23900
|
* and returns its index if found or -1 otherwise.
|
|
@@ -23225,14 +23944,32 @@ declare namespace sap {
|
|
|
23225
23944
|
*/
|
|
23226
23945
|
panel: Object
|
|
23227
23946
|
): void;
|
|
23947
|
+
/**
|
|
23948
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
23949
|
+
*
|
|
23950
|
+
* Width to be set for the container
|
|
23951
|
+
*
|
|
23952
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23953
|
+
*
|
|
23954
|
+
* Default value is `"100%"`.
|
|
23955
|
+
*
|
|
23956
|
+
*
|
|
23957
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23958
|
+
*/
|
|
23959
|
+
setWidth(
|
|
23960
|
+
/**
|
|
23961
|
+
* New value for property `width`
|
|
23962
|
+
*/
|
|
23963
|
+
sWidth?: sap.ui.core.CSSSize
|
|
23964
|
+
): this;
|
|
23228
23965
|
}
|
|
23229
23966
|
/**
|
|
23230
|
-
* Abstract base class for
|
|
23967
|
+
* Abstract base class for My Home layout control.
|
|
23231
23968
|
*
|
|
23232
23969
|
* @since 1.121
|
|
23233
|
-
* @experimental
|
|
23970
|
+
* @experimental (since 1.121)
|
|
23234
23971
|
*/
|
|
23235
|
-
abstract class
|
|
23972
|
+
abstract class BaseLayout extends sap.m.Page {
|
|
23236
23973
|
/**
|
|
23237
23974
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
23238
23975
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -23241,10 +23978,10 @@ declare namespace sap {
|
|
|
23241
23978
|
constructor();
|
|
23242
23979
|
|
|
23243
23980
|
/**
|
|
23244
|
-
* Creates a new subclass of class sap.suite.ui.commons.
|
|
23981
|
+
* Creates a new subclass of class sap.suite.ui.commons.BaseLayout with name `sClassName` and enriches it
|
|
23245
23982
|
* with the information contained in `oClassInfo`.
|
|
23246
23983
|
*
|
|
23247
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.
|
|
23984
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Page.extend}.
|
|
23248
23985
|
*
|
|
23249
23986
|
*
|
|
23250
23987
|
* @returns Created class / constructor function
|
|
@@ -23257,7 +23994,7 @@ declare namespace sap {
|
|
|
23257
23994
|
/**
|
|
23258
23995
|
* Object literal with information about the class
|
|
23259
23996
|
*/
|
|
23260
|
-
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.
|
|
23997
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.BaseLayout>,
|
|
23261
23998
|
/**
|
|
23262
23999
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23263
24000
|
* used by this class
|
|
@@ -23265,62 +24002,135 @@ declare namespace sap {
|
|
|
23265
24002
|
FNMetaImpl?: Function
|
|
23266
24003
|
): Function;
|
|
23267
24004
|
/**
|
|
23268
|
-
* Returns a metadata object for class sap.suite.ui.commons.
|
|
24005
|
+
* Returns a metadata object for class sap.suite.ui.commons.BaseLayout.
|
|
23269
24006
|
*
|
|
23270
24007
|
*
|
|
23271
24008
|
* @returns Metadata object describing this class
|
|
23272
24009
|
*/
|
|
23273
24010
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23274
24011
|
/**
|
|
23275
|
-
*
|
|
23276
|
-
*
|
|
23277
|
-
* Default value is `"100%"`.
|
|
24012
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
23278
24013
|
*
|
|
23279
24014
|
*
|
|
23280
|
-
* @returns
|
|
24015
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23281
24016
|
*/
|
|
23282
|
-
|
|
24017
|
+
addContent(
|
|
24018
|
+
/**
|
|
24019
|
+
* The content to add; if empty, nothing is inserted
|
|
24020
|
+
*/
|
|
24021
|
+
oContent: sap.suite.ui.commons.BaseContainer
|
|
24022
|
+
): this;
|
|
23283
24023
|
/**
|
|
23284
|
-
*
|
|
24024
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
23285
24025
|
*
|
|
23286
|
-
* Default value is `"100%"`.
|
|
23287
24026
|
*
|
|
24027
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
24028
|
+
*/
|
|
24029
|
+
destroyContent(): this;
|
|
24030
|
+
/**
|
|
24031
|
+
* Gets content of aggregation {@link #getContent content}.
|
|
23288
24032
|
*
|
|
23289
|
-
*
|
|
24033
|
+
* The content aggregation which should be of type BaseContainer
|
|
23290
24034
|
*/
|
|
23291
|
-
|
|
24035
|
+
getContent(): sap.suite.ui.commons.BaseContainer[];
|
|
23292
24036
|
/**
|
|
23293
|
-
*
|
|
24037
|
+
* Checks for the provided `sap.suite.ui.commons.BaseContainer` in the aggregation {@link #getContent content}.
|
|
24038
|
+
* and returns its index if found or -1 otherwise.
|
|
23294
24039
|
*
|
|
23295
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23296
24040
|
*
|
|
23297
|
-
*
|
|
24041
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
24042
|
+
*/
|
|
24043
|
+
indexOfContent(
|
|
24044
|
+
/**
|
|
24045
|
+
* The content whose index is looked for
|
|
24046
|
+
*/
|
|
24047
|
+
oContent: sap.suite.ui.commons.BaseContainer
|
|
24048
|
+
): int;
|
|
24049
|
+
/**
|
|
24050
|
+
* Inserts a content into the aggregation {@link #getContent content}.
|
|
23298
24051
|
*
|
|
23299
24052
|
*
|
|
23300
24053
|
* @returns Reference to `this` in order to allow method chaining
|
|
23301
24054
|
*/
|
|
23302
|
-
|
|
24055
|
+
insertContent(
|
|
23303
24056
|
/**
|
|
23304
|
-
*
|
|
24057
|
+
* The content to insert; if empty, nothing is inserted
|
|
23305
24058
|
*/
|
|
23306
|
-
|
|
24059
|
+
oContent: sap.suite.ui.commons.BaseContainer,
|
|
24060
|
+
/**
|
|
24061
|
+
* The `0`-based index the content should be inserted at; for a negative value of `iIndex`, the content
|
|
24062
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the content
|
|
24063
|
+
* is inserted at the last position
|
|
24064
|
+
*/
|
|
24065
|
+
iIndex: int
|
|
23307
24066
|
): this;
|
|
23308
24067
|
/**
|
|
23309
|
-
*
|
|
24068
|
+
* Removes all the controls from the aggregation {@link #getContent content}.
|
|
23310
24069
|
*
|
|
23311
|
-
*
|
|
24070
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
23312
24071
|
*
|
|
23313
|
-
* Default value is `"100%"`.
|
|
23314
24072
|
*
|
|
24073
|
+
* @returns An array of the removed elements (might be empty)
|
|
24074
|
+
*/
|
|
24075
|
+
removeAllContent(): sap.suite.ui.commons.BaseContainer[];
|
|
24076
|
+
/**
|
|
24077
|
+
* Removes a content from the aggregation {@link #getContent content}.
|
|
23315
24078
|
*
|
|
23316
|
-
*
|
|
24079
|
+
*
|
|
24080
|
+
* @returns The removed content or `null`
|
|
23317
24081
|
*/
|
|
23318
|
-
|
|
24082
|
+
removeContent(
|
|
23319
24083
|
/**
|
|
23320
|
-
*
|
|
24084
|
+
* The content to remove or its index or id
|
|
23321
24085
|
*/
|
|
23322
|
-
|
|
23323
|
-
):
|
|
24086
|
+
vContent: int | string | sap.suite.ui.commons.BaseContainer
|
|
24087
|
+
): sap.suite.ui.commons.BaseContainer | null;
|
|
24088
|
+
}
|
|
24089
|
+
/**
|
|
24090
|
+
* Abstract base class for My Home layout control panel.
|
|
24091
|
+
*
|
|
24092
|
+
* @since 1.121
|
|
24093
|
+
* @experimental (since 1.121)
|
|
24094
|
+
*/
|
|
24095
|
+
abstract class BasePanel extends sap.ui.core.Element {
|
|
24096
|
+
/**
|
|
24097
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
24098
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
24099
|
+
* of the syntax of the settings object.
|
|
24100
|
+
*/
|
|
24101
|
+
constructor();
|
|
24102
|
+
|
|
24103
|
+
/**
|
|
24104
|
+
* Creates a new subclass of class sap.suite.ui.commons.BasePanel with name `sClassName` and enriches it
|
|
24105
|
+
* with the information contained in `oClassInfo`.
|
|
24106
|
+
*
|
|
24107
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
24108
|
+
*
|
|
24109
|
+
*
|
|
24110
|
+
* @returns Created class / constructor function
|
|
24111
|
+
*/
|
|
24112
|
+
static extend<T extends Record<string, unknown>>(
|
|
24113
|
+
/**
|
|
24114
|
+
* Name of the class being created
|
|
24115
|
+
*/
|
|
24116
|
+
sClassName: string,
|
|
24117
|
+
/**
|
|
24118
|
+
* Object literal with information about the class
|
|
24119
|
+
*/
|
|
24120
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.BasePanel>,
|
|
24121
|
+
/**
|
|
24122
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24123
|
+
* used by this class
|
|
24124
|
+
*/
|
|
24125
|
+
FNMetaImpl?: Function
|
|
24126
|
+
): Function;
|
|
24127
|
+
/**
|
|
24128
|
+
* Returns a metadata object for class sap.suite.ui.commons.BasePanel.
|
|
24129
|
+
*
|
|
24130
|
+
*
|
|
24131
|
+
* @returns Metadata object describing this class
|
|
24132
|
+
*/
|
|
24133
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23324
24134
|
}
|
|
23325
24135
|
/**
|
|
23326
24136
|
* Chart that displays an actual value as a horizontal bar in semantic color on the top of the background
|
|
@@ -25924,6 +26734,52 @@ declare namespace sap {
|
|
|
25924
26734
|
sLabel?: string
|
|
25925
26735
|
): this;
|
|
25926
26736
|
}
|
|
26737
|
+
/**
|
|
26738
|
+
* CardsPanel class for managing cards.
|
|
26739
|
+
*
|
|
26740
|
+
* @since 1.121.0
|
|
26741
|
+
* @experimental (since 1.121)
|
|
26742
|
+
*/
|
|
26743
|
+
class CardsPanel extends sap.suite.ui.commons.BasePanel {
|
|
26744
|
+
/**
|
|
26745
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
26746
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
26747
|
+
* of the syntax of the settings object.
|
|
26748
|
+
*/
|
|
26749
|
+
constructor();
|
|
26750
|
+
|
|
26751
|
+
/**
|
|
26752
|
+
* Creates a new subclass of class sap.suite.ui.commons.CardsPanel with name `sClassName` and enriches it
|
|
26753
|
+
* with the information contained in `oClassInfo`.
|
|
26754
|
+
*
|
|
26755
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BasePanel.extend}.
|
|
26756
|
+
*
|
|
26757
|
+
*
|
|
26758
|
+
* @returns Created class / constructor function
|
|
26759
|
+
*/
|
|
26760
|
+
static extend<T extends Record<string, unknown>>(
|
|
26761
|
+
/**
|
|
26762
|
+
* Name of the class being created
|
|
26763
|
+
*/
|
|
26764
|
+
sClassName: string,
|
|
26765
|
+
/**
|
|
26766
|
+
* Object literal with information about the class
|
|
26767
|
+
*/
|
|
26768
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.CardsPanel>,
|
|
26769
|
+
/**
|
|
26770
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
26771
|
+
* used by this class
|
|
26772
|
+
*/
|
|
26773
|
+
FNMetaImpl?: Function
|
|
26774
|
+
): Function;
|
|
26775
|
+
/**
|
|
26776
|
+
* Returns a metadata object for class sap.suite.ui.commons.CardsPanel.
|
|
26777
|
+
*
|
|
26778
|
+
*
|
|
26779
|
+
* @returns Metadata object describing this class
|
|
26780
|
+
*/
|
|
26781
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
26782
|
+
}
|
|
25927
26783
|
/**
|
|
25928
26784
|
* Provides a toolbar with generic functions for tables and charts based on the VizFrame control like zoom,
|
|
25929
26785
|
* display in fullscreen mode, toggle the legend, switch between chart types, and changes of the chart dimension.
|
|
@@ -30146,6 +31002,52 @@ declare namespace sap {
|
|
|
30146
31002
|
sWidth?: sap.ui.core.CSSSize
|
|
30147
31003
|
): this;
|
|
30148
31004
|
}
|
|
31005
|
+
/**
|
|
31006
|
+
* Provides the FavAppPanel Class.
|
|
31007
|
+
*
|
|
31008
|
+
* @since 1.121.0
|
|
31009
|
+
* @experimental (since 1.121)
|
|
31010
|
+
*/
|
|
31011
|
+
class FavAppPanel extends sap.suite.ui.commons.BaseAppPersPanel {
|
|
31012
|
+
/**
|
|
31013
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
31014
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
31015
|
+
* of the syntax of the settings object.
|
|
31016
|
+
*/
|
|
31017
|
+
constructor();
|
|
31018
|
+
|
|
31019
|
+
/**
|
|
31020
|
+
* Creates a new subclass of class sap.suite.ui.commons.FavAppPanel with name `sClassName` and enriches
|
|
31021
|
+
* it with the information contained in `oClassInfo`.
|
|
31022
|
+
*
|
|
31023
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseAppPersPanel.extend}.
|
|
31024
|
+
*
|
|
31025
|
+
*
|
|
31026
|
+
* @returns Created class / constructor function
|
|
31027
|
+
*/
|
|
31028
|
+
static extend<T extends Record<string, unknown>>(
|
|
31029
|
+
/**
|
|
31030
|
+
* Name of the class being created
|
|
31031
|
+
*/
|
|
31032
|
+
sClassName: string,
|
|
31033
|
+
/**
|
|
31034
|
+
* Object literal with information about the class
|
|
31035
|
+
*/
|
|
31036
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.FavAppPanel>,
|
|
31037
|
+
/**
|
|
31038
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
31039
|
+
* used by this class
|
|
31040
|
+
*/
|
|
31041
|
+
FNMetaImpl?: Function
|
|
31042
|
+
): Function;
|
|
31043
|
+
/**
|
|
31044
|
+
* Returns a metadata object for class sap.suite.ui.commons.FavAppPanel.
|
|
31045
|
+
*
|
|
31046
|
+
*
|
|
31047
|
+
* @returns Metadata object describing this class
|
|
31048
|
+
*/
|
|
31049
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
31050
|
+
}
|
|
30149
31051
|
/**
|
|
30150
31052
|
* This element represents a news feed item.
|
|
30151
31053
|
*
|
|
@@ -30899,6 +31801,55 @@ declare namespace sap {
|
|
|
30899
31801
|
oModel: sap.ui.model.Model
|
|
30900
31802
|
): void;
|
|
30901
31803
|
}
|
|
31804
|
+
/**
|
|
31805
|
+
* Provides the class for managing frequent apps
|
|
31806
|
+
*
|
|
31807
|
+
* @since 1.121.0
|
|
31808
|
+
* @experimental (since 1.121)
|
|
31809
|
+
*/
|
|
31810
|
+
class FrequentAppPanel extends sap.suite.ui.commons.BaseAppPersPanel {
|
|
31811
|
+
/**
|
|
31812
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
31813
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
31814
|
+
* of the syntax of the settings object.
|
|
31815
|
+
*/
|
|
31816
|
+
constructor();
|
|
31817
|
+
|
|
31818
|
+
/**
|
|
31819
|
+
* Creates a new subclass of class sap.suite.ui.commons.FrequentAppPanel with name `sClassName` and enriches
|
|
31820
|
+
* it with the information contained in `oClassInfo`.
|
|
31821
|
+
*
|
|
31822
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseAppPersPanel.extend}.
|
|
31823
|
+
*
|
|
31824
|
+
*
|
|
31825
|
+
* @returns Created class / constructor function
|
|
31826
|
+
*/
|
|
31827
|
+
static extend<T extends Record<string, unknown>>(
|
|
31828
|
+
/**
|
|
31829
|
+
* Name of the class being created
|
|
31830
|
+
*/
|
|
31831
|
+
sClassName: string,
|
|
31832
|
+
/**
|
|
31833
|
+
* Object literal with information about the class
|
|
31834
|
+
*/
|
|
31835
|
+
oClassInfo?: sap.ClassInfo<
|
|
31836
|
+
T,
|
|
31837
|
+
sap.suite.ui.commons.FrequentAppPanel
|
|
31838
|
+
>,
|
|
31839
|
+
/**
|
|
31840
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
31841
|
+
* used by this class
|
|
31842
|
+
*/
|
|
31843
|
+
FNMetaImpl?: Function
|
|
31844
|
+
): Function;
|
|
31845
|
+
/**
|
|
31846
|
+
* Returns a metadata object for class sap.suite.ui.commons.FrequentAppPanel.
|
|
31847
|
+
*
|
|
31848
|
+
*
|
|
31849
|
+
* @returns Metadata object describing this class
|
|
31850
|
+
*/
|
|
31851
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
31852
|
+
}
|
|
30902
31853
|
/**
|
|
30903
31854
|
* The tile control that displays the title, description, and customizable main area.
|
|
30904
31855
|
*
|
|
@@ -32589,6 +33540,50 @@ declare namespace sap {
|
|
|
32589
33540
|
sTitle?: string
|
|
32590
33541
|
): this;
|
|
32591
33542
|
}
|
|
33543
|
+
/**
|
|
33544
|
+
* Container class for managing and storing Insights tiles and cards.
|
|
33545
|
+
*
|
|
33546
|
+
* @since 1.121
|
|
33547
|
+
* @experimental (since 1.121)
|
|
33548
|
+
*/
|
|
33549
|
+
class InsightsContainer extends sap.suite.ui.commons.BaseContainer {
|
|
33550
|
+
constructor();
|
|
33551
|
+
|
|
33552
|
+
/**
|
|
33553
|
+
* Creates a new subclass of class sap.suite.ui.commons.InsightsContainer with name `sClassName` and enriches
|
|
33554
|
+
* it with the information contained in `oClassInfo`.
|
|
33555
|
+
*
|
|
33556
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseContainer.extend}.
|
|
33557
|
+
*
|
|
33558
|
+
*
|
|
33559
|
+
* @returns Created class / constructor function
|
|
33560
|
+
*/
|
|
33561
|
+
static extend<T extends Record<string, unknown>>(
|
|
33562
|
+
/**
|
|
33563
|
+
* Name of the class being created
|
|
33564
|
+
*/
|
|
33565
|
+
sClassName: string,
|
|
33566
|
+
/**
|
|
33567
|
+
* Object literal with information about the class
|
|
33568
|
+
*/
|
|
33569
|
+
oClassInfo?: sap.ClassInfo<
|
|
33570
|
+
T,
|
|
33571
|
+
sap.suite.ui.commons.InsightsContainer
|
|
33572
|
+
>,
|
|
33573
|
+
/**
|
|
33574
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
33575
|
+
* used by this class
|
|
33576
|
+
*/
|
|
33577
|
+
FNMetaImpl?: Function
|
|
33578
|
+
): Function;
|
|
33579
|
+
/**
|
|
33580
|
+
* Returns a metadata object for class sap.suite.ui.commons.InsightsContainer.
|
|
33581
|
+
*
|
|
33582
|
+
*
|
|
33583
|
+
* @returns Metadata object describing this class
|
|
33584
|
+
*/
|
|
33585
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
33586
|
+
}
|
|
32592
33587
|
/**
|
|
32593
33588
|
* This control displays the jam content text, subheader, and numeric value in a tile.
|
|
32594
33589
|
*
|
|
@@ -33114,6 +34109,47 @@ declare namespace sap {
|
|
|
33114
34109
|
sTitle?: string
|
|
33115
34110
|
): this;
|
|
33116
34111
|
}
|
|
34112
|
+
/**
|
|
34113
|
+
* Layout class for My Home layout.
|
|
34114
|
+
*
|
|
34115
|
+
* @since 1.121
|
|
34116
|
+
* @experimental (since 1.121)
|
|
34117
|
+
*/
|
|
34118
|
+
class Layout extends sap.suite.ui.commons.BaseLayout {
|
|
34119
|
+
constructor();
|
|
34120
|
+
|
|
34121
|
+
/**
|
|
34122
|
+
* Creates a new subclass of class sap.suite.ui.commons.Layout with name `sClassName` and enriches it with
|
|
34123
|
+
* the information contained in `oClassInfo`.
|
|
34124
|
+
*
|
|
34125
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseLayout.extend}.
|
|
34126
|
+
*
|
|
34127
|
+
*
|
|
34128
|
+
* @returns Created class / constructor function
|
|
34129
|
+
*/
|
|
34130
|
+
static extend<T extends Record<string, unknown>>(
|
|
34131
|
+
/**
|
|
34132
|
+
* Name of the class being created
|
|
34133
|
+
*/
|
|
34134
|
+
sClassName: string,
|
|
34135
|
+
/**
|
|
34136
|
+
* Object literal with information about the class
|
|
34137
|
+
*/
|
|
34138
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.Layout>,
|
|
34139
|
+
/**
|
|
34140
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
34141
|
+
* used by this class
|
|
34142
|
+
*/
|
|
34143
|
+
FNMetaImpl?: Function
|
|
34144
|
+
): Function;
|
|
34145
|
+
/**
|
|
34146
|
+
* Returns a metadata object for class sap.suite.ui.commons.Layout.
|
|
34147
|
+
*
|
|
34148
|
+
*
|
|
34149
|
+
* @returns Metadata object describing this class
|
|
34150
|
+
*/
|
|
34151
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
34152
|
+
}
|
|
33117
34153
|
/**
|
|
33118
34154
|
* This control contains one or more sap.m.Button controls or sap.ui.commons.Link controls. The LinkActionSheet
|
|
33119
34155
|
* control is closed if the user chooses one of the buttons or links. It looks similar to sap.m.Dialog in
|
|
@@ -33350,7 +34386,7 @@ declare namespace sap {
|
|
|
33350
34386
|
* MenuItem class for personalization menu item
|
|
33351
34387
|
*
|
|
33352
34388
|
* @since 1.121
|
|
33353
|
-
* @experimental
|
|
34389
|
+
* @experimental (since 1.121)
|
|
33354
34390
|
*/
|
|
33355
34391
|
class MenuItem extends sap.ui.core.Element {
|
|
33356
34392
|
/**
|
|
@@ -33468,24 +34504,41 @@ declare namespace sap {
|
|
|
33468
34504
|
/**
|
|
33469
34505
|
* Gets current value of property {@link #getIcon icon}.
|
|
33470
34506
|
*
|
|
34507
|
+
* Icon of the menu item
|
|
34508
|
+
*
|
|
33471
34509
|
* Default value is `empty string`.
|
|
33472
34510
|
*
|
|
33473
34511
|
*
|
|
33474
34512
|
* @returns Value of property `icon`
|
|
33475
34513
|
*/
|
|
33476
|
-
getIcon():
|
|
34514
|
+
getIcon(): sap.ui.core.URI;
|
|
33477
34515
|
/**
|
|
33478
34516
|
* Gets current value of property {@link #getTitle title}.
|
|
33479
34517
|
*
|
|
34518
|
+
* Title of the menu item
|
|
34519
|
+
*
|
|
33480
34520
|
* Default value is `empty string`.
|
|
33481
34521
|
*
|
|
33482
34522
|
*
|
|
33483
34523
|
* @returns Value of property `title`
|
|
33484
34524
|
*/
|
|
33485
34525
|
getTitle(): string;
|
|
34526
|
+
/**
|
|
34527
|
+
* Gets current value of property {@link #getType type}.
|
|
34528
|
+
*
|
|
34529
|
+
* Type of menu item visualization in the menu list
|
|
34530
|
+
*
|
|
34531
|
+
* Default value is `'Active'`.
|
|
34532
|
+
*
|
|
34533
|
+
*
|
|
34534
|
+
* @returns Value of property `type`
|
|
34535
|
+
*/
|
|
34536
|
+
getType(): string;
|
|
33486
34537
|
/**
|
|
33487
34538
|
* Sets a new value for property {@link #getIcon icon}.
|
|
33488
34539
|
*
|
|
34540
|
+
* Icon of the menu item
|
|
34541
|
+
*
|
|
33489
34542
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33490
34543
|
*
|
|
33491
34544
|
* Default value is `empty string`.
|
|
@@ -33497,11 +34550,13 @@ declare namespace sap {
|
|
|
33497
34550
|
/**
|
|
33498
34551
|
* New value for property `icon`
|
|
33499
34552
|
*/
|
|
33500
|
-
sIcon?:
|
|
34553
|
+
sIcon?: sap.ui.core.URI
|
|
33501
34554
|
): this;
|
|
33502
34555
|
/**
|
|
33503
34556
|
* Sets a new value for property {@link #getTitle title}.
|
|
33504
34557
|
*
|
|
34558
|
+
* Title of the menu item
|
|
34559
|
+
*
|
|
33505
34560
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33506
34561
|
*
|
|
33507
34562
|
* Default value is `empty string`.
|
|
@@ -33515,6 +34570,24 @@ declare namespace sap {
|
|
|
33515
34570
|
*/
|
|
33516
34571
|
sTitle?: string
|
|
33517
34572
|
): this;
|
|
34573
|
+
/**
|
|
34574
|
+
* Sets a new value for property {@link #getType type}.
|
|
34575
|
+
*
|
|
34576
|
+
* Type of menu item visualization in the menu list
|
|
34577
|
+
*
|
|
34578
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34579
|
+
*
|
|
34580
|
+
* Default value is `'Active'`.
|
|
34581
|
+
*
|
|
34582
|
+
*
|
|
34583
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
34584
|
+
*/
|
|
34585
|
+
setType(
|
|
34586
|
+
/**
|
|
34587
|
+
* New value for property `type`
|
|
34588
|
+
*/
|
|
34589
|
+
sType?: string
|
|
34590
|
+
): this;
|
|
33518
34591
|
}
|
|
33519
34592
|
/**
|
|
33520
34593
|
* This control displays the history of values as a line mini chart or an area mini chart.
|
|
@@ -34923,6 +35996,50 @@ declare namespace sap {
|
|
|
34923
35996
|
sValue?: string
|
|
34924
35997
|
): this;
|
|
34925
35998
|
}
|
|
35999
|
+
/**
|
|
36000
|
+
* Container class for managing and storing News and Pages.
|
|
36001
|
+
*
|
|
36002
|
+
* @since 1.121
|
|
36003
|
+
* @experimental (since 1.121)
|
|
36004
|
+
*/
|
|
36005
|
+
class NewsAndPagesContainer extends sap.suite.ui.commons.BaseContainer {
|
|
36006
|
+
constructor();
|
|
36007
|
+
|
|
36008
|
+
/**
|
|
36009
|
+
* Creates a new subclass of class sap.suite.ui.commons.NewsAndPagesContainer with name `sClassName` and
|
|
36010
|
+
* enriches it with the information contained in `oClassInfo`.
|
|
36011
|
+
*
|
|
36012
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BaseContainer.extend}.
|
|
36013
|
+
*
|
|
36014
|
+
*
|
|
36015
|
+
* @returns Created class / constructor function
|
|
36016
|
+
*/
|
|
36017
|
+
static extend<T extends Record<string, unknown>>(
|
|
36018
|
+
/**
|
|
36019
|
+
* Name of the class being created
|
|
36020
|
+
*/
|
|
36021
|
+
sClassName: string,
|
|
36022
|
+
/**
|
|
36023
|
+
* Object literal with information about the class
|
|
36024
|
+
*/
|
|
36025
|
+
oClassInfo?: sap.ClassInfo<
|
|
36026
|
+
T,
|
|
36027
|
+
sap.suite.ui.commons.NewsAndPagesContainer
|
|
36028
|
+
>,
|
|
36029
|
+
/**
|
|
36030
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
36031
|
+
* used by this class
|
|
36032
|
+
*/
|
|
36033
|
+
FNMetaImpl?: Function
|
|
36034
|
+
): Function;
|
|
36035
|
+
/**
|
|
36036
|
+
* Returns a metadata object for class sap.suite.ui.commons.NewsAndPagesContainer.
|
|
36037
|
+
*
|
|
36038
|
+
*
|
|
36039
|
+
* @returns Metadata object describing this class
|
|
36040
|
+
*/
|
|
36041
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
36042
|
+
}
|
|
34926
36043
|
/**
|
|
34927
36044
|
* This control displays the news content text and subheader in a tile.
|
|
34928
36045
|
*
|
|
@@ -35002,9 +36119,9 @@ declare namespace sap {
|
|
|
35002
36119
|
* NewsPanel class for managing news panel.
|
|
35003
36120
|
*
|
|
35004
36121
|
* @since 1.121
|
|
35005
|
-
* @experimental
|
|
36122
|
+
* @experimental (since 1.121)
|
|
35006
36123
|
*/
|
|
35007
|
-
|
|
36124
|
+
class NewsPanel extends sap.suite.ui.commons.BasePanel {
|
|
35008
36125
|
/**
|
|
35009
36126
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
35010
36127
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -35046,6 +36163,8 @@ declare namespace sap {
|
|
|
35046
36163
|
/**
|
|
35047
36164
|
* Gets current value of property {@link #getUrl url}.
|
|
35048
36165
|
*
|
|
36166
|
+
* Url to fetch the news feed from
|
|
36167
|
+
*
|
|
35049
36168
|
* Default value is `empty string`.
|
|
35050
36169
|
*
|
|
35051
36170
|
*
|
|
@@ -35055,6 +36174,8 @@ declare namespace sap {
|
|
|
35055
36174
|
/**
|
|
35056
36175
|
* Sets a new value for property {@link #getUrl url}.
|
|
35057
36176
|
*
|
|
36177
|
+
* Url to fetch the news feed from
|
|
36178
|
+
*
|
|
35058
36179
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
35059
36180
|
*
|
|
35060
36181
|
* Default value is `empty string`.
|
|
@@ -37423,10 +38544,11 @@ declare namespace sap {
|
|
|
37423
38544
|
/**
|
|
37424
38545
|
* PagePanel class for managing page panel.
|
|
37425
38546
|
*
|
|
37426
|
-
* @since 1.
|
|
37427
|
-
* @experimental
|
|
38547
|
+
* @since 1.122
|
|
38548
|
+
* @experimental (since 1.121)
|
|
37428
38549
|
*/
|
|
37429
|
-
|
|
38550
|
+
class PagePanel
|
|
38551
|
+
/* was: sap.suite.ui.commons.BasePagePanel */ extends Object {
|
|
37430
38552
|
/**
|
|
37431
38553
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
37432
38554
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -37438,7 +38560,7 @@ declare namespace sap {
|
|
|
37438
38560
|
* Creates a new subclass of class sap.suite.ui.commons.PagePanel with name `sClassName` and enriches it
|
|
37439
38561
|
* with the information contained in `oClassInfo`.
|
|
37440
38562
|
*
|
|
37441
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.
|
|
38563
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.commons.BasePagePanel.extend}.
|
|
37442
38564
|
*
|
|
37443
38565
|
*
|
|
37444
38566
|
* @returns Created class / constructor function
|
|
@@ -37464,7 +38586,7 @@ declare namespace sap {
|
|
|
37464
38586
|
*
|
|
37465
38587
|
* @returns Metadata object describing this class
|
|
37466
38588
|
*/
|
|
37467
|
-
static getMetadata(): sap.ui.
|
|
38589
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
37468
38590
|
}
|
|
37469
38591
|
/**
|
|
37470
38592
|
* Shows picture in fullscreen.
|
|
@@ -39942,6 +41064,53 @@ declare namespace sap {
|
|
|
39942
41064
|
oZoomLevelTwoContent: sap.ui.core.Control
|
|
39943
41065
|
): this;
|
|
39944
41066
|
}
|
|
41067
|
+
/**
|
|
41068
|
+
* Provides class for managing Recent apps.
|
|
41069
|
+
*
|
|
41070
|
+
* @since 1.121.0
|
|
41071
|
+
* @experimental (since 1.121)
|
|
41072
|
+
*/
|
|
41073
|
+
class RecentAppPanel
|
|
41074
|
+
/* was: sap.suite.ui.BaseAppPersPanel */ extends Object {
|
|
41075
|
+
/**
|
|
41076
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
41077
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
41078
|
+
* of the syntax of the settings object.
|
|
41079
|
+
*/
|
|
41080
|
+
constructor();
|
|
41081
|
+
|
|
41082
|
+
/**
|
|
41083
|
+
* Creates a new subclass of class sap.suite.ui.commons.RecentAppPanel with name `sClassName` and enriches
|
|
41084
|
+
* it with the information contained in `oClassInfo`.
|
|
41085
|
+
*
|
|
41086
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.BaseAppPersPanel.extend}.
|
|
41087
|
+
*
|
|
41088
|
+
*
|
|
41089
|
+
* @returns Created class / constructor function
|
|
41090
|
+
*/
|
|
41091
|
+
static extend<T extends Record<string, unknown>>(
|
|
41092
|
+
/**
|
|
41093
|
+
* Name of the class being created
|
|
41094
|
+
*/
|
|
41095
|
+
sClassName: string,
|
|
41096
|
+
/**
|
|
41097
|
+
* Object literal with information about the class
|
|
41098
|
+
*/
|
|
41099
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.RecentAppPanel>,
|
|
41100
|
+
/**
|
|
41101
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
41102
|
+
* used by this class
|
|
41103
|
+
*/
|
|
41104
|
+
FNMetaImpl?: Function
|
|
41105
|
+
): Function;
|
|
41106
|
+
/**
|
|
41107
|
+
* Returns a metadata object for class sap.suite.ui.commons.RecentAppPanel.
|
|
41108
|
+
*
|
|
41109
|
+
*
|
|
41110
|
+
* @returns Metadata object describing this class
|
|
41111
|
+
*/
|
|
41112
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
41113
|
+
}
|
|
39945
41114
|
/**
|
|
39946
41115
|
* A configuration control defining how the content of the sap.suite.ui.commons.ViewRepeater control is
|
|
39947
41116
|
* displayed and what data is bound.
|
|
@@ -40357,7 +41526,7 @@ declare namespace sap {
|
|
|
40357
41526
|
* Panel class for managing and storing Situation cards.
|
|
40358
41527
|
*
|
|
40359
41528
|
* @since 1.121
|
|
40360
|
-
* @experimental
|
|
41529
|
+
* @experimental (since 1.121)
|
|
40361
41530
|
*/
|
|
40362
41531
|
class SituationPanel extends sap.suite.ui.commons.ToDoPanel {
|
|
40363
41532
|
constructor();
|
|
@@ -41511,9 +42680,9 @@ declare namespace sap {
|
|
|
41511
42680
|
* Panel class for managing and storing Task cards.
|
|
41512
42681
|
*
|
|
41513
42682
|
* @since 1.121
|
|
41514
|
-
* @experimental
|
|
42683
|
+
* @experimental (since 1.121)
|
|
41515
42684
|
*/
|
|
41516
|
-
|
|
42685
|
+
class TaskPanel extends sap.suite.ui.commons.ToDoPanel {
|
|
41517
42686
|
/**
|
|
41518
42687
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
41519
42688
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -41555,6 +42724,8 @@ declare namespace sap {
|
|
|
41555
42724
|
/**
|
|
41556
42725
|
* Gets current value of property {@link #getCustomAttributeUrl customAttributeUrl}.
|
|
41557
42726
|
*
|
|
42727
|
+
* Specifies the URL for fetching the custom attributes to be displayed along with the task cards.
|
|
42728
|
+
*
|
|
41558
42729
|
* Default value is `empty string`.
|
|
41559
42730
|
*
|
|
41560
42731
|
*
|
|
@@ -41564,6 +42735,8 @@ declare namespace sap {
|
|
|
41564
42735
|
/**
|
|
41565
42736
|
* Sets a new value for property {@link #getCustomAttributeUrl customAttributeUrl}.
|
|
41566
42737
|
*
|
|
42738
|
+
* Specifies the URL for fetching the custom attributes to be displayed along with the task cards.
|
|
42739
|
+
*
|
|
41567
42740
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
41568
42741
|
*
|
|
41569
42742
|
* Default value is `empty string`.
|
|
@@ -42578,6 +43751,52 @@ declare namespace sap {
|
|
|
42578
43751
|
sUnit?: string
|
|
42579
43752
|
): this;
|
|
42580
43753
|
}
|
|
43754
|
+
/**
|
|
43755
|
+
* Provides the TilesPanel Class.
|
|
43756
|
+
*
|
|
43757
|
+
* @since 1.121.0
|
|
43758
|
+
* @experimental (since 1.121)
|
|
43759
|
+
*/
|
|
43760
|
+
class TilesPanel /* was: sap.suite.ui.BasePanel */ extends Object {
|
|
43761
|
+
/**
|
|
43762
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
43763
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
43764
|
+
* of the syntax of the settings object.
|
|
43765
|
+
*/
|
|
43766
|
+
constructor();
|
|
43767
|
+
|
|
43768
|
+
/**
|
|
43769
|
+
* Creates a new subclass of class sap.suite.ui.commons.TilesPanel with name `sClassName` and enriches it
|
|
43770
|
+
* with the information contained in `oClassInfo`.
|
|
43771
|
+
*
|
|
43772
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.suite.ui.BasePanel.extend}.
|
|
43773
|
+
*
|
|
43774
|
+
*
|
|
43775
|
+
* @returns Created class / constructor function
|
|
43776
|
+
*/
|
|
43777
|
+
static extend<T extends Record<string, unknown>>(
|
|
43778
|
+
/**
|
|
43779
|
+
* Name of the class being created
|
|
43780
|
+
*/
|
|
43781
|
+
sClassName: string,
|
|
43782
|
+
/**
|
|
43783
|
+
* Object literal with information about the class
|
|
43784
|
+
*/
|
|
43785
|
+
oClassInfo?: sap.ClassInfo<T, sap.suite.ui.commons.TilesPanel>,
|
|
43786
|
+
/**
|
|
43787
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
43788
|
+
* used by this class
|
|
43789
|
+
*/
|
|
43790
|
+
FNMetaImpl?: Function
|
|
43791
|
+
): Function;
|
|
43792
|
+
/**
|
|
43793
|
+
* Returns a metadata object for class sap.suite.ui.commons.TilesPanel.
|
|
43794
|
+
*
|
|
43795
|
+
*
|
|
43796
|
+
* @returns Metadata object describing this class
|
|
43797
|
+
*/
|
|
43798
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
43799
|
+
}
|
|
42581
43800
|
/**
|
|
42582
43801
|
* The timeline control shows entries (such as objects, events, or posts) in chronological order.
|
|
42583
43802
|
* A common use case is to provide information about changes to an object, or events related to an object.
|
|
@@ -46647,12 +47866,12 @@ declare namespace sap {
|
|
|
46647
47866
|
): void;
|
|
46648
47867
|
}
|
|
46649
47868
|
/**
|
|
46650
|
-
* Panel class for managing and storing To-Do cards.
|
|
47869
|
+
* Abstract Panel class for managing and storing To-Do cards.
|
|
46651
47870
|
*
|
|
46652
47871
|
* @since 1.121
|
|
46653
|
-
* @experimental
|
|
47872
|
+
* @experimental (since 1.121)
|
|
46654
47873
|
*/
|
|
46655
|
-
class ToDoPanel extends sap.suite.ui.commons.BasePanel {
|
|
47874
|
+
abstract class ToDoPanel extends sap.suite.ui.commons.BasePanel {
|
|
46656
47875
|
/**
|
|
46657
47876
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
46658
47877
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -46709,35 +47928,43 @@ declare namespace sap {
|
|
|
46709
47928
|
context: object
|
|
46710
47929
|
): object;
|
|
46711
47930
|
/**
|
|
46712
|
-
* Gets current value of property {@link #
|
|
47931
|
+
* Gets current value of property {@link #getBaseUrl baseUrl}.
|
|
47932
|
+
*
|
|
47933
|
+
* Specifies the base URL for batching requests sent from the panel.
|
|
46713
47934
|
*
|
|
46714
47935
|
* Default value is `empty string`.
|
|
46715
47936
|
*
|
|
46716
47937
|
*
|
|
46717
|
-
* @returns Value of property `
|
|
47938
|
+
* @returns Value of property `baseUrl`
|
|
46718
47939
|
*/
|
|
46719
|
-
|
|
47940
|
+
getBaseUrl(): string;
|
|
46720
47941
|
/**
|
|
46721
|
-
* Gets current value of property {@link #
|
|
47942
|
+
* Gets current value of property {@link #getCountUrl countUrl}.
|
|
47943
|
+
*
|
|
47944
|
+
* Specifies the URL for fetching the count of requested to-do cards.
|
|
46722
47945
|
*
|
|
46723
47946
|
* Default value is `empty string`.
|
|
46724
47947
|
*
|
|
46725
47948
|
*
|
|
46726
|
-
* @returns Value of property `
|
|
47949
|
+
* @returns Value of property `countUrl`
|
|
46727
47950
|
*/
|
|
46728
|
-
|
|
47951
|
+
getCountUrl(): string;
|
|
46729
47952
|
/**
|
|
46730
|
-
* Gets current value of property {@link #
|
|
47953
|
+
* Gets current value of property {@link #getDataUrl dataUrl}.
|
|
47954
|
+
*
|
|
47955
|
+
* Specifies the URL from where the to-do cards should be fetched.
|
|
46731
47956
|
*
|
|
46732
47957
|
* Default value is `empty string`.
|
|
46733
47958
|
*
|
|
46734
47959
|
*
|
|
46735
|
-
* @returns Value of property `
|
|
47960
|
+
* @returns Value of property `dataUrl`
|
|
46736
47961
|
*/
|
|
46737
|
-
|
|
47962
|
+
getDataUrl(): string;
|
|
46738
47963
|
/**
|
|
46739
47964
|
* Gets current value of property {@link #getTargetAppUrl targetAppUrl}.
|
|
46740
47965
|
*
|
|
47966
|
+
* Specifies the URL of the target application associated with the to-do cards.
|
|
47967
|
+
*
|
|
46741
47968
|
* Default value is `empty string`.
|
|
46742
47969
|
*
|
|
46743
47970
|
*
|
|
@@ -46745,7 +47972,9 @@ declare namespace sap {
|
|
|
46745
47972
|
*/
|
|
46746
47973
|
getTargetAppUrl(): string;
|
|
46747
47974
|
/**
|
|
46748
|
-
* Sets a new value for property {@link #
|
|
47975
|
+
* Sets a new value for property {@link #getBaseUrl baseUrl}.
|
|
47976
|
+
*
|
|
47977
|
+
* Specifies the base URL for batching requests sent from the panel.
|
|
46749
47978
|
*
|
|
46750
47979
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46751
47980
|
*
|
|
@@ -46754,14 +47983,16 @@ declare namespace sap {
|
|
|
46754
47983
|
*
|
|
46755
47984
|
* @returns Reference to `this` in order to allow method chaining
|
|
46756
47985
|
*/
|
|
46757
|
-
|
|
47986
|
+
setBaseUrl(
|
|
46758
47987
|
/**
|
|
46759
|
-
* New value for property `
|
|
47988
|
+
* New value for property `baseUrl`
|
|
46760
47989
|
*/
|
|
46761
|
-
|
|
47990
|
+
sBaseUrl?: string
|
|
46762
47991
|
): this;
|
|
46763
47992
|
/**
|
|
46764
|
-
* Sets a new value for property {@link #
|
|
47993
|
+
* Sets a new value for property {@link #getCountUrl countUrl}.
|
|
47994
|
+
*
|
|
47995
|
+
* Specifies the URL for fetching the count of requested to-do cards.
|
|
46765
47996
|
*
|
|
46766
47997
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46767
47998
|
*
|
|
@@ -46770,14 +48001,16 @@ declare namespace sap {
|
|
|
46770
48001
|
*
|
|
46771
48002
|
* @returns Reference to `this` in order to allow method chaining
|
|
46772
48003
|
*/
|
|
46773
|
-
|
|
48004
|
+
setCountUrl(
|
|
46774
48005
|
/**
|
|
46775
|
-
* New value for property `
|
|
48006
|
+
* New value for property `countUrl`
|
|
46776
48007
|
*/
|
|
46777
|
-
|
|
48008
|
+
sCountUrl?: string
|
|
46778
48009
|
): this;
|
|
46779
48010
|
/**
|
|
46780
|
-
* Sets a new value for property {@link #
|
|
48011
|
+
* Sets a new value for property {@link #getDataUrl dataUrl}.
|
|
48012
|
+
*
|
|
48013
|
+
* Specifies the URL from where the to-do cards should be fetched.
|
|
46781
48014
|
*
|
|
46782
48015
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46783
48016
|
*
|
|
@@ -46786,15 +48019,17 @@ declare namespace sap {
|
|
|
46786
48019
|
*
|
|
46787
48020
|
* @returns Reference to `this` in order to allow method chaining
|
|
46788
48021
|
*/
|
|
46789
|
-
|
|
48022
|
+
setDataUrl(
|
|
46790
48023
|
/**
|
|
46791
|
-
* New value for property `
|
|
48024
|
+
* New value for property `dataUrl`
|
|
46792
48025
|
*/
|
|
46793
|
-
|
|
48026
|
+
sDataUrl?: string
|
|
46794
48027
|
): this;
|
|
46795
48028
|
/**
|
|
46796
48029
|
* Sets a new value for property {@link #getTargetAppUrl targetAppUrl}.
|
|
46797
48030
|
*
|
|
48031
|
+
* Specifies the URL of the target application associated with the to-do cards.
|
|
48032
|
+
*
|
|
46798
48033
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46799
48034
|
*
|
|
46800
48035
|
* Default value is `empty string`.
|
|
@@ -46813,7 +48048,7 @@ declare namespace sap {
|
|
|
46813
48048
|
* Container class for managing and storing To-Do cards.
|
|
46814
48049
|
*
|
|
46815
48050
|
* @since 1.121
|
|
46816
|
-
* @experimental
|
|
48051
|
+
* @experimental (since 1.121)
|
|
46817
48052
|
*/
|
|
46818
48053
|
class ToDosContainer extends sap.suite.ui.commons.BaseContainer {
|
|
46819
48054
|
constructor();
|
|
@@ -50525,10 +51760,22 @@ declare namespace sap {
|
|
|
50525
51760
|
}
|
|
50526
51761
|
|
|
50527
51762
|
interface IUI5DefineDependencyNames {
|
|
51763
|
+
"sap/suite/ui/commons/App": undefined;
|
|
51764
|
+
|
|
51765
|
+
"sap/suite/ui/commons/AppsContainer": undefined;
|
|
51766
|
+
|
|
50528
51767
|
"sap/suite/ui/commons/AriaProperties": undefined;
|
|
50529
51768
|
|
|
51769
|
+
"sap/suite/ui/commons/BaseApp": undefined;
|
|
51770
|
+
|
|
51771
|
+
"sap/suite/ui/commons/BaseAppPanel": undefined;
|
|
51772
|
+
|
|
51773
|
+
"sap/suite/ui/commons/BaseAppPersPanel": undefined;
|
|
51774
|
+
|
|
50530
51775
|
"sap/suite/ui/commons/BaseContainer": undefined;
|
|
50531
51776
|
|
|
51777
|
+
"sap/suite/ui/commons/BaseLayout": undefined;
|
|
51778
|
+
|
|
50532
51779
|
"sap/suite/ui/commons/BasePanel": undefined;
|
|
50533
51780
|
|
|
50534
51781
|
"sap/suite/ui/commons/BulletChart": undefined;
|
|
@@ -50549,6 +51796,8 @@ declare namespace sap {
|
|
|
50549
51796
|
|
|
50550
51797
|
"sap/suite/ui/commons/CalculationBuilderVariable": undefined;
|
|
50551
51798
|
|
|
51799
|
+
"sap/suite/ui/commons/CardsPanel": undefined;
|
|
51800
|
+
|
|
50552
51801
|
"sap/suite/ui/commons/ChartContainer": undefined;
|
|
50553
51802
|
|
|
50554
51803
|
"sap/suite/ui/commons/ChartContainerContent": undefined;
|
|
@@ -50591,12 +51840,16 @@ declare namespace sap {
|
|
|
50591
51840
|
|
|
50592
51841
|
"sap/suite/ui/commons/FacetOverview": undefined;
|
|
50593
51842
|
|
|
51843
|
+
"sap/suite/ui/commons/FavAppPanel": undefined;
|
|
51844
|
+
|
|
50594
51845
|
"sap/suite/ui/commons/FeedItem": undefined;
|
|
50595
51846
|
|
|
50596
51847
|
"sap/suite/ui/commons/FeedItemHeader": undefined;
|
|
50597
51848
|
|
|
50598
51849
|
"sap/suite/ui/commons/FeedTile": undefined;
|
|
50599
51850
|
|
|
51851
|
+
"sap/suite/ui/commons/FrequentAppPanel": undefined;
|
|
51852
|
+
|
|
50600
51853
|
"sap/suite/ui/commons/GenericTile": undefined;
|
|
50601
51854
|
|
|
50602
51855
|
"sap/suite/ui/commons/GenericTile2X2": undefined;
|
|
@@ -50637,12 +51890,16 @@ declare namespace sap {
|
|
|
50637
51890
|
|
|
50638
51891
|
"sap/suite/ui/commons/InfoTile": undefined;
|
|
50639
51892
|
|
|
51893
|
+
"sap/suite/ui/commons/InsightsContainer": undefined;
|
|
51894
|
+
|
|
50640
51895
|
"sap/suite/ui/commons/JamContent": undefined;
|
|
50641
51896
|
|
|
50642
51897
|
"sap/suite/ui/commons/KpiTile": undefined;
|
|
50643
51898
|
|
|
50644
51899
|
"sap/suite/ui/commons/LaunchTile": undefined;
|
|
50645
51900
|
|
|
51901
|
+
"sap/suite/ui/commons/Layout": undefined;
|
|
51902
|
+
|
|
50646
51903
|
"sap/suite/ui/commons/library": undefined;
|
|
50647
51904
|
|
|
50648
51905
|
"sap/suite/ui/commons/LinkActionSheet": undefined;
|
|
@@ -50707,6 +51964,8 @@ declare namespace sap {
|
|
|
50707
51964
|
|
|
50708
51965
|
"sap/suite/ui/commons/networkgraph/util/Dijkstra": undefined;
|
|
50709
51966
|
|
|
51967
|
+
"sap/suite/ui/commons/NewsAndPageContainer": undefined;
|
|
51968
|
+
|
|
50710
51969
|
"sap/suite/ui/commons/NewsContent": undefined;
|
|
50711
51970
|
|
|
50712
51971
|
"sap/suite/ui/commons/NewsPanel": undefined;
|
|
@@ -50733,6 +51992,8 @@ declare namespace sap {
|
|
|
50733
51992
|
|
|
50734
51993
|
"sap/suite/ui/commons/ProcessFlowNode": undefined;
|
|
50735
51994
|
|
|
51995
|
+
"sap/suite/ui/commons/RecentAppPanel": undefined;
|
|
51996
|
+
|
|
50736
51997
|
"sap/suite/ui/commons/RepeaterViewConfiguration": undefined;
|
|
50737
51998
|
|
|
50738
51999
|
"sap/suite/ui/commons/SituationPanel": undefined;
|
|
@@ -50791,6 +52052,8 @@ declare namespace sap {
|
|
|
50791
52052
|
|
|
50792
52053
|
"sap/suite/ui/commons/TileContent2X2": undefined;
|
|
50793
52054
|
|
|
52055
|
+
"sap/suite/ui/commons/TilesPanel": undefined;
|
|
52056
|
+
|
|
50794
52057
|
"sap/suite/ui/commons/Timeline": undefined;
|
|
50795
52058
|
|
|
50796
52059
|
"sap/suite/ui/commons/TimelineFilterListItem": undefined;
|