@sapui5/types 1.144.1 → 1.146.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 +1 -1
- package/types/sap.esh.search.ui.d.ts +167 -102
- package/types/sap.f.d.ts +73 -526
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +342 -21
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +188 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1022 -207
- package/types/sap.fe.navigation.d.ts +1 -1
- 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 +12 -1
- package/types/sap.fe.test.d.ts +150 -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 +172 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +350 -29
- 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 +31 -2
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +404 -21
- package/types/sap.suite.ui.generic.template.d.ts +46 -1
- package/types/sap.suite.ui.microchart.d.ts +2 -1
- package/types/sap.tnt.d.ts +27 -26
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +73 -2
- package/types/sap.ui.core.d.ts +1181 -478
- 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 +9 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +65 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +379 -51
- package/types/sap.ui.richtexteditor.d.ts +33 -11
- 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 +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +74 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +376 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- 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 +198 -136
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
- 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.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/generic/template/library" {
|
|
4
4
|
/**
|
|
@@ -3434,6 +3434,51 @@ declare module "sap/suite/ui/generic/template/ObjectPage/extensionAPI/ExtensionA
|
|
|
3434
3434
|
*/
|
|
3435
3435
|
iLevel: int
|
|
3436
3436
|
): void;
|
|
3437
|
+
/**
|
|
3438
|
+
* Provides an option to Configures a side effect for custom column, the extension API method should be
|
|
3439
|
+
* Implemented/Called from "onAfterRendering" method. Note: Extension API only supported for Responsive/Grid
|
|
3440
|
+
* table.
|
|
3441
|
+
*
|
|
3442
|
+
*
|
|
3443
|
+
* @returns returns a call back function, And qualifier of the side effect should be passed. Call back function
|
|
3444
|
+
* need to be called from controls(Custom control which inside the custom column) event-handler.
|
|
3445
|
+
*/
|
|
3446
|
+
registerCustomColumnForSideEffect(
|
|
3447
|
+
/**
|
|
3448
|
+
* The control object for the custom column.
|
|
3449
|
+
*/
|
|
3450
|
+
oTable: Object,
|
|
3451
|
+
/**
|
|
3452
|
+
* The name of the property associated with the custom column.
|
|
3453
|
+
*/
|
|
3454
|
+
sProperty: String,
|
|
3455
|
+
/**
|
|
3456
|
+
* The entity set to which the custom column belongs.
|
|
3457
|
+
*/
|
|
3458
|
+
sEntitySet: String
|
|
3459
|
+
): Function;
|
|
3460
|
+
/**
|
|
3461
|
+
* Provides an option to Configures a side effect for custom field, the extension controller should be Implemented/Called
|
|
3462
|
+
* from "onAfterRendering" method of table. Note: Navigation property is not supported.
|
|
3463
|
+
*
|
|
3464
|
+
*
|
|
3465
|
+
* @returns returns a call back function, And qualifier of the side effect should be passed. Call back function
|
|
3466
|
+
* need to be called from controls event-handler.
|
|
3467
|
+
*/
|
|
3468
|
+
registerCustomFieldForSideEffect(
|
|
3469
|
+
/**
|
|
3470
|
+
* The control object for the custom field.
|
|
3471
|
+
*/
|
|
3472
|
+
oControl: Object,
|
|
3473
|
+
/**
|
|
3474
|
+
* The name of the property associated with the custom field.
|
|
3475
|
+
*/
|
|
3476
|
+
sProperty: String,
|
|
3477
|
+
/**
|
|
3478
|
+
* The entity set to which the custom field belongs.
|
|
3479
|
+
*/
|
|
3480
|
+
sEntitySet: String
|
|
3481
|
+
): Function;
|
|
3437
3482
|
/**
|
|
3438
3483
|
* Registers a filter provider for the the message popover
|
|
3439
3484
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/microchart/library" {
|
|
4
4
|
/**
|
|
@@ -6462,6 +6462,7 @@ declare module "sap/suite/ui/microchart/HarveyBallMicroChart" {
|
|
|
6462
6462
|
* described in {@link sap.ui.core.Element#getTooltip_AsString}. For a combination of a generated and a
|
|
6463
6463
|
* custom tooltip, use `((AltText))` inside of the tooltip string. The aggregated data of the microchart
|
|
6464
6464
|
* can also be customized.
|
|
6465
|
+
* Note: The default value of truncation is 5 digit and varies between languages.
|
|
6465
6466
|
*
|
|
6466
6467
|
* @since 1.34
|
|
6467
6468
|
*/
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -18,7 +18,6 @@ declare module "sap/tnt/library" {
|
|
|
18
18
|
* This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'NavigationListItemDesign'.
|
|
19
19
|
*
|
|
20
20
|
* @since 1.133.0
|
|
21
|
-
* @experimental Behavior might change.
|
|
22
21
|
*/
|
|
23
22
|
export enum NavigationListItemDesign {
|
|
24
23
|
/**
|
|
@@ -51,7 +50,6 @@ declare module "sap/tnt/library" {
|
|
|
51
50
|
* This enum is part of the 'sap/tnt/library' module export and must be accessed by the property 'SideNavigationDesign'.
|
|
52
51
|
*
|
|
53
52
|
* @since 1.134.0
|
|
54
|
-
* @experimental Behavior might change.
|
|
55
53
|
*/
|
|
56
54
|
export enum SideNavigationDesign {
|
|
57
55
|
/**
|
|
@@ -1658,13 +1656,12 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1658
1656
|
/**
|
|
1659
1657
|
* Gets current value of property {@link #getDesign design}.
|
|
1660
1658
|
*
|
|
1661
|
-
* Specifies if the item has a special design.
|
|
1662
|
-
* sub-items
|
|
1659
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
1660
|
+
* sub-items cannot be added.
|
|
1663
1661
|
*
|
|
1664
1662
|
* Default value is `Default`.
|
|
1665
1663
|
*
|
|
1666
1664
|
* @since 1.133.0
|
|
1667
|
-
* @experimental Behavior might change.
|
|
1668
1665
|
*
|
|
1669
1666
|
* @returns Value of property `design`
|
|
1670
1667
|
*/
|
|
@@ -1684,6 +1681,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1684
1681
|
*
|
|
1685
1682
|
* Specifies the icon for the item.
|
|
1686
1683
|
*
|
|
1684
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1685
|
+
*
|
|
1687
1686
|
* Default value is `empty string`.
|
|
1688
1687
|
*
|
|
1689
1688
|
*
|
|
@@ -1714,8 +1713,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1714
1713
|
* Default value is `true`.
|
|
1715
1714
|
*
|
|
1716
1715
|
* @since 1.116
|
|
1717
|
-
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1718
|
-
* may be done before its official public release.
|
|
1719
1716
|
*
|
|
1720
1717
|
* @returns Value of property `selectable`
|
|
1721
1718
|
*/
|
|
@@ -1823,15 +1820,14 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1823
1820
|
/**
|
|
1824
1821
|
* Sets a new value for property {@link #getDesign design}.
|
|
1825
1822
|
*
|
|
1826
|
-
* Specifies if the item has a special design.
|
|
1827
|
-
* sub-items
|
|
1823
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
1824
|
+
* sub-items cannot be added.
|
|
1828
1825
|
*
|
|
1829
1826
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1830
1827
|
*
|
|
1831
1828
|
* Default value is `Default`.
|
|
1832
1829
|
*
|
|
1833
1830
|
* @since 1.133.0
|
|
1834
|
-
* @experimental Behavior might change.
|
|
1835
1831
|
*
|
|
1836
1832
|
* @returns Reference to `this` in order to allow method chaining
|
|
1837
1833
|
*/
|
|
@@ -1863,6 +1859,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1863
1859
|
*
|
|
1864
1860
|
* Specifies the icon for the item.
|
|
1865
1861
|
*
|
|
1862
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1863
|
+
*
|
|
1866
1864
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1867
1865
|
*
|
|
1868
1866
|
* Default value is `empty string`.
|
|
@@ -1896,8 +1894,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1896
1894
|
* Default value is `true`.
|
|
1897
1895
|
*
|
|
1898
1896
|
* @since 1.116
|
|
1899
|
-
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1900
|
-
* may be done before its official public release.
|
|
1901
1897
|
*
|
|
1902
1898
|
* @returns Reference to `this` in order to allow method chaining
|
|
1903
1899
|
*/
|
|
@@ -1958,6 +1954,8 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1958
1954
|
extends $NavigationListItemBaseSettings {
|
|
1959
1955
|
/**
|
|
1960
1956
|
* Specifies the icon for the item.
|
|
1957
|
+
*
|
|
1958
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1961
1959
|
*/
|
|
1962
1960
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
1963
1961
|
|
|
@@ -1982,8 +1980,6 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1982
1980
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1983
1981
|
*
|
|
1984
1982
|
* @since 1.116
|
|
1985
|
-
* @experimental As of version 1.116. Disclaimer: this property is in a beta state - incompatible API changes
|
|
1986
|
-
* may be done before its official public release.
|
|
1987
1983
|
*/
|
|
1988
1984
|
selectable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1989
1985
|
|
|
@@ -2007,11 +2003,10 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
2007
2003
|
target?: string | PropertyBindingInfo;
|
|
2008
2004
|
|
|
2009
2005
|
/**
|
|
2010
|
-
* Specifies if the item has a special design.
|
|
2011
|
-
* sub-items
|
|
2006
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
2007
|
+
* sub-items cannot be added.
|
|
2012
2008
|
*
|
|
2013
2009
|
* @since 1.133.0
|
|
2014
|
-
* @experimental Behavior might change.
|
|
2015
2010
|
*/
|
|
2016
2011
|
design?:
|
|
2017
2012
|
| (NavigationListItemDesign | keyof typeof NavigationListItemDesign)
|
|
@@ -3074,10 +3069,14 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
3074
3069
|
* - If an app implements side navigation in addition to the tool header menu, the menu icon must be the
|
|
3075
3070
|
* first item on the left-hand side of the tool header.
|
|
3076
3071
|
* - The app menu and the side navigation must not have any dependencies and must work independently.
|
|
3077
|
-
*
|
|
3078
|
-
*
|
|
3079
|
-
*
|
|
3080
|
-
*
|
|
3072
|
+
*
|
|
3073
|
+
* - Not recommended: In accordance with the UX Consistency initiative, it is recommended to use the seamlessly
|
|
3074
|
+
* integrated UI5 Web Components' ui5-shellbar, as demonstrated in this UXC
|
|
3075
|
+
* integration sample app with UXC integration
|
|
3076
|
+
* sample source code. Horizon theme specifics: Only the following controls are supported: sap.m.Button,
|
|
3077
|
+
* sap.m.Image, sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori
|
|
3078
|
+
* 3 Default theme the ToolHeader is with dark design unlike most of the other controls. This defines the
|
|
3079
|
+
* usage of limited controls inside it, which will result in good design combination.
|
|
3081
3080
|
* The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
|
|
3082
3081
|
* requirement. However, that's not a dark theme.
|
|
3083
3082
|
*
|
|
@@ -3427,8 +3426,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
3427
3426
|
* Gets current value of property {@link #getSideExpanded sideExpanded}.
|
|
3428
3427
|
*
|
|
3429
3428
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
3430
|
-
* *Note:** By default, on small screens, the side content is collapsed to provide
|
|
3431
|
-
* content. On larger screens, it is expanded. This
|
|
3429
|
+
* *Note:** By default, on mobile phone devices and small screens, the side content is collapsed to provide
|
|
3430
|
+
* more space for the main content. On larger screens, excluding mobile phone devices, it is expanded. This
|
|
3431
|
+
* behavior can be overridden by setting this property.
|
|
3432
3432
|
*
|
|
3433
3433
|
* Default value is `true`.
|
|
3434
3434
|
*
|
|
@@ -3580,8 +3580,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
3580
3580
|
export interface $ToolPageSettings extends $ControlSettings {
|
|
3581
3581
|
/**
|
|
3582
3582
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
3583
|
-
* **Note:** By default, on small screens, the side content is collapsed to provide
|
|
3584
|
-
* content. On larger screens, it is expanded. This
|
|
3583
|
+
* **Note:** By default, on mobile phone devices and small screens, the side content is collapsed to provide
|
|
3584
|
+
* more space for the main content. On larger screens, excluding mobile phone devices, it is expanded. This
|
|
3585
|
+
* behavior can be overridden by setting this property.
|
|
3585
3586
|
*/
|
|
3586
3587
|
sideExpanded?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3587
3588
|
|
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/comp/library" {
|
|
4
4
|
/**
|
|
@@ -1220,7 +1220,7 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
1220
1220
|
/**
|
|
1221
1221
|
* Enables to add application specific content to the filters dialog. If the content was not yet added it
|
|
1222
1222
|
* will be added. The content will be set to visible, all other filters dialog content will be set to invisible.
|
|
1223
|
-
* Not implemented yet for the new Adapt Filters
|
|
1223
|
+
* Not implemented yet for the new Adapt Filters dialog
|
|
1224
1224
|
*
|
|
1225
1225
|
* @deprecated As of version 1.84. with no replacement.
|
|
1226
1226
|
*
|
|
@@ -39423,6 +39423,29 @@ declare module "sap/ui/comp/state/UIState" {
|
|
|
39423
39423
|
* @returns Metadata object describing this class
|
|
39424
39424
|
*/
|
|
39425
39425
|
static getMetadata(): ManagedObjectMetadata;
|
|
39426
|
+
/**
|
|
39427
|
+
* Gets current value of property {@link #getOrderedItems orderedItems}.
|
|
39428
|
+
*
|
|
39429
|
+
* Structure defining the order of filter items.
|
|
39430
|
+
*
|
|
39431
|
+
*
|
|
39432
|
+
* ```javascript
|
|
39433
|
+
*
|
|
39434
|
+
* {
|
|
39435
|
+
* orderedItems: [
|
|
39436
|
+
* {
|
|
39437
|
+
* group: string,
|
|
39438
|
+
* name: string
|
|
39439
|
+
* }
|
|
39440
|
+
* ]
|
|
39441
|
+
* }
|
|
39442
|
+
* ```
|
|
39443
|
+
*
|
|
39444
|
+
*
|
|
39445
|
+
*
|
|
39446
|
+
* @returns Value of property `orderedItems`
|
|
39447
|
+
*/
|
|
39448
|
+
getOrderedItems(): object;
|
|
39426
39449
|
/**
|
|
39427
39450
|
* Gets current value of property {@link #getPresentationVariant presentationVariant}.
|
|
39428
39451
|
*
|
|
@@ -39570,6 +39593,36 @@ declare module "sap/ui/comp/state/UIState" {
|
|
|
39570
39593
|
* @returns Value of property `variantName`
|
|
39571
39594
|
*/
|
|
39572
39595
|
getVariantName(): string;
|
|
39596
|
+
/**
|
|
39597
|
+
* Sets a new value for property {@link #getOrderedItems orderedItems}.
|
|
39598
|
+
*
|
|
39599
|
+
* Structure defining the order of filter items.
|
|
39600
|
+
*
|
|
39601
|
+
*
|
|
39602
|
+
* ```javascript
|
|
39603
|
+
*
|
|
39604
|
+
* {
|
|
39605
|
+
* orderedItems: [
|
|
39606
|
+
* {
|
|
39607
|
+
* group: string,
|
|
39608
|
+
* name: string
|
|
39609
|
+
* }
|
|
39610
|
+
* ]
|
|
39611
|
+
* }
|
|
39612
|
+
* ```
|
|
39613
|
+
*
|
|
39614
|
+
*
|
|
39615
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39616
|
+
*
|
|
39617
|
+
*
|
|
39618
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
39619
|
+
*/
|
|
39620
|
+
setOrderedItems(
|
|
39621
|
+
/**
|
|
39622
|
+
* New value for property `orderedItems`
|
|
39623
|
+
*/
|
|
39624
|
+
oOrderedItems: object
|
|
39625
|
+
): this;
|
|
39573
39626
|
/**
|
|
39574
39627
|
* Sets a new value for property {@link #getPresentationVariant presentationVariant}.
|
|
39575
39628
|
*
|
|
@@ -39895,6 +39948,24 @@ declare module "sap/ui/comp/state/UIState" {
|
|
|
39895
39948
|
* ```
|
|
39896
39949
|
*/
|
|
39897
39950
|
tableSettings?: object | PropertyBindingInfo | `{${string}}`;
|
|
39951
|
+
|
|
39952
|
+
/**
|
|
39953
|
+
* Structure defining the order of filter items.
|
|
39954
|
+
*
|
|
39955
|
+
*
|
|
39956
|
+
* ```javascript
|
|
39957
|
+
*
|
|
39958
|
+
* {
|
|
39959
|
+
* orderedItems: [
|
|
39960
|
+
* {
|
|
39961
|
+
* group: string,
|
|
39962
|
+
* name: string
|
|
39963
|
+
* }
|
|
39964
|
+
* ]
|
|
39965
|
+
* }
|
|
39966
|
+
* ```
|
|
39967
|
+
*/
|
|
39968
|
+
orderedItems?: object | PropertyBindingInfo | `{${string}}`;
|
|
39898
39969
|
}
|
|
39899
39970
|
}
|
|
39900
39971
|
|