@openui5/types 1.144.0 → 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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
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. NOTE: If `design` is not `NavigationListItemDesign.Default`
1662
- * sub-items can't be added.
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. NOTE: If `design` is not `NavigationListItemDesign.Default`
1827
- * sub-items can't be added.
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. NOTE: If `design` is not `NavigationListItemDesign.Default`
2011
- * sub-items can't be added.
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
- * Horizon theme specifics: Only the following controls are supported: sap.m.Button, sap.m.Image,
3078
- * sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori 3 Default
3079
- * theme the ToolHeader is with dark design unlike most of the other controls. This defines the usage of
3080
- * limited controls inside it, which will result in good design combination.
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 more space for the main
3431
- * content. On larger screens, it is expanded. This behavior can be overridden by setting this property.
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 more space for the main
3584
- * content. On larger screens, it is expanded. This behavior can be overridden by setting this property.
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
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";