@openui5/ts-types-esm 1.112.2 → 1.113.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/README.md CHANGED
@@ -2,38 +2,17 @@
2
2
 
3
3
  # @openui5/ts-types-esm
4
4
 
5
- This npm package contains the types signatures based on ES modules for all the OpenUI5 libraries.
5
+ <span style="color: red; font-size: 150%; font-weight: bold;">The package `@openui5/ts-types-esm` is deprecated, please use the (identical) types in `@openui5/types` instead.</span>
6
6
 
7
- <b>NOTE:</b> the same signatures are also available via [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openui5) as [@types/openui5](https://www.npmjs.com/package/@types/openui5). Be aware of the remarks in the readme file, in particular about the [versioning difference](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openui5#versioning).
8
-
9
- These signatures can be used to:
10
-
11
- 1. Enable advanced content assist in IDEs, e.g: (VSCode / IntelliJ / Webstorm) for OpenUI5.
12
- 1. Integrate type checking for OpenUI5 applications using the TypeScript compiler.
13
-
14
- These two capabilities are available both for OpenUI5 apps written in TypeScript **and** in JavaScript.
15
-
16
- <b>NOTE:</b> "<i>based on ES modules</i>" means that the application code needs to load UI5 modules using the ES6 modules syntax and needs to be transformed to standard UI5 require/define syntax before it is executed. Nevertheless, this is the recommended approach!<br>
17
- See the "Usage" section below for links to detailed documentation about this setup.
18
-
19
-
20
- ## Usage
21
-
22
- The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is at https://sap.github.io/ui5-typescript.
23
-
24
- To see the suggested project setup for TypeScript development, please check out the [TypeScript Hello World app](https://github.com/SAP-samples/ui5-typescript-helloworld). It not only can serve as copy template, but also includes a [detailed step-by-step guide](https://github.com/SAP-samples/ui5-typescript-helloworld/blob/main/step-by-step.md) for creating this setup from scratch.
25
-
26
- The [TypeScript branch of the "UI5 CAP Event App"](https://github.com/SAP-samples/ui5-cap-event-app/tree/typescript) sample demonstrates a more complex application using the same setup. It comes with an [explanation](https://github.com/SAP-samples/ui5-cap-event-app/blob/typescript/docs/typescript.md) of what UI5 TypeScript code usually looks like and what to consider when writing such code.
27
-
28
- For quick and easy scaffolding of a new UI5 app written in TypeScript, you can also use the easy-ui5 tool with the [generator-ui5-ts-app](https://github.com/ui5-community/generator-ui5-ts-app) generator.
7
+ This npm package contains the TypeScript type definitions based on ES modules for all the OpenUI5 libraries.
29
8
 
30
9
 
31
10
  ## Status
32
11
 
33
- This project is in an experimental **_Beta State_**. Significant changes are likely to occur,
12
+ The type definitions are in an experimental **_[Beta State](https://sap.github.io/ui5-typescript/beta-statement.html)_**. Changes are likely to occur,
34
13
  including potential **breaking changes**.
35
14
 
36
- For information on changes in the type definitions, in particular ones which require adaptation, please refer to the [Release Notes](https://sap.github.io/ui5-typescript/releasenotes.html).
15
+ For information on changes in the type definitions, in particular ones which require adaptation (but also new enhancements), please refer to the [Release Notes](https://sap.github.io/ui5-typescript/releasenotes.html).
37
16
 
38
17
  ## License
39
- OpenUI5 is licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
18
+ OpenUI5 and the type definitions are copyright by SAP and contributors and licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.112.2",
3
+ "version": "1.113.0",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.112.2
1
+ // For Library Version: 1.113.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -670,6 +670,8 @@ declare module "sap/f/AvatarGroup" {
670
670
  oListener?: object
671
671
  ): this;
672
672
  /**
673
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
674
+ *
673
675
  * Fires event {@link #event:press press} to attached listeners.
674
676
  *
675
677
  * @returns Reference to `this` in order to allow method chaining
@@ -1411,6 +1413,8 @@ declare module "sap/f/CardBase" {
1411
1413
  */
1412
1414
  static getMetadata(): ElementMetadata;
1413
1415
  /**
1416
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1417
+ *
1414
1418
  * Returns the DOM Element that should get the focus.
1415
1419
  *
1416
1420
  * @returns Returns the DOM Element that should get the focus
@@ -1790,6 +1794,8 @@ declare module "sap/f/cards/Header" {
1790
1794
  oListener?: object
1791
1795
  ): this;
1792
1796
  /**
1797
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1798
+ *
1793
1799
  * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
1794
1800
  * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
1795
1801
  */
@@ -1808,6 +1814,8 @@ declare module "sap/f/cards/Header" {
1808
1814
  }
1809
1815
  ): void;
1810
1816
  /**
1817
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1818
+ *
1811
1819
  * Fires event {@link #event:press press} to attached listeners.
1812
1820
  *
1813
1821
  * @returns Reference to `this` in order to allow method chaining
@@ -2397,6 +2405,8 @@ declare module "sap/f/cards/NumericHeader" {
2397
2405
  oListener?: object
2398
2406
  ): this;
2399
2407
  /**
2408
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2409
+ *
2400
2410
  * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
2401
2411
  * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
2402
2412
  */
@@ -2415,6 +2425,8 @@ declare module "sap/f/cards/NumericHeader" {
2415
2425
  }
2416
2426
  ): void;
2417
2427
  /**
2428
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2429
+ *
2418
2430
  * Fires event {@link #event:press press} to attached listeners.
2419
2431
  *
2420
2432
  * @returns Reference to `this` in order to allow method chaining
@@ -3591,6 +3603,7 @@ declare module "sap/f/DynamicPage" {
3591
3603
  ): this;
3592
3604
  /**
3593
3605
  * @SINCE 1.93
3606
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3594
3607
  *
3595
3608
  * Fires event {@link #event:pinnedStateChange pinnedStateChange} to attached listeners.
3596
3609
  *
@@ -5180,6 +5193,7 @@ declare module "sap/f/DynamicPageTitle" {
5180
5193
  ): this;
5181
5194
  /**
5182
5195
  * @SINCE 1.54
5196
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5183
5197
  *
5184
5198
  * Fires event {@link #event:stateChange stateChange} to attached listeners.
5185
5199
  *
@@ -6911,6 +6925,8 @@ declare module "sap/f/FlexibleColumnLayout" {
6911
6925
  oListener?: object
6912
6926
  ): this;
6913
6927
  /**
6928
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6929
+ *
6914
6930
  * Fires event {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate} to attached listeners.
6915
6931
  *
6916
6932
  * @returns Reference to `this` in order to allow method chaining
@@ -6964,6 +6980,8 @@ declare module "sap/f/FlexibleColumnLayout" {
6964
6980
  }
6965
6981
  ): this;
6966
6982
  /**
6983
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6984
+ *
6967
6985
  * Fires event {@link #event:afterEndColumnNavigate afterEndColumnNavigate} to attached listeners.
6968
6986
  *
6969
6987
  * @returns Reference to `this` in order to allow method chaining
@@ -7017,6 +7035,8 @@ declare module "sap/f/FlexibleColumnLayout" {
7017
7035
  }
7018
7036
  ): this;
7019
7037
  /**
7038
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7039
+ *
7020
7040
  * Fires event {@link #event:afterMidColumnNavigate afterMidColumnNavigate} to attached listeners.
7021
7041
  *
7022
7042
  * @returns Reference to `this` in order to allow method chaining
@@ -7070,6 +7090,8 @@ declare module "sap/f/FlexibleColumnLayout" {
7070
7090
  }
7071
7091
  ): this;
7072
7092
  /**
7093
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7094
+ *
7073
7095
  * Fires event {@link #event:beginColumnNavigate beginColumnNavigate} to attached listeners.
7074
7096
  *
7075
7097
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
@@ -7127,6 +7149,7 @@ declare module "sap/f/FlexibleColumnLayout" {
7127
7149
  ): boolean;
7128
7150
  /**
7129
7151
  * @SINCE 1.76
7152
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7130
7153
  *
7131
7154
  * Fires event {@link #event:columnResize columnResize} to attached listeners.
7132
7155
  *
@@ -7152,6 +7175,8 @@ declare module "sap/f/FlexibleColumnLayout" {
7152
7175
  }
7153
7176
  ): this;
7154
7177
  /**
7178
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7179
+ *
7155
7180
  * Fires event {@link #event:endColumnNavigate endColumnNavigate} to attached listeners.
7156
7181
  *
7157
7182
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
@@ -7208,6 +7233,8 @@ declare module "sap/f/FlexibleColumnLayout" {
7208
7233
  }
7209
7234
  ): boolean;
7210
7235
  /**
7236
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7237
+ *
7211
7238
  * Fires event {@link #event:midColumnNavigate midColumnNavigate} to attached listeners.
7212
7239
  *
7213
7240
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
@@ -7264,6 +7291,8 @@ declare module "sap/f/FlexibleColumnLayout" {
7264
7291
  }
7265
7292
  ): boolean;
7266
7293
  /**
7294
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7295
+ *
7267
7296
  * Fires event {@link #event:stateChange stateChange} to attached listeners.
7268
7297
  *
7269
7298
  * @returns Reference to `this` in order to allow method chaining
@@ -9429,6 +9458,8 @@ declare module "sap/f/GridContainer" {
9429
9458
  oListener?: object
9430
9459
  ): this;
9431
9460
  /**
9461
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9462
+ *
9432
9463
  * Fires event {@link #event:borderReached borderReached} to attached listeners.
9433
9464
  *
9434
9465
  * @returns Reference to `this` in order to allow method chaining
@@ -9457,6 +9488,8 @@ declare module "sap/f/GridContainer" {
9457
9488
  }
9458
9489
  ): this;
9459
9490
  /**
9491
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9492
+ *
9460
9493
  * Fires event {@link #event:columnsChange columnsChange} to attached listeners.
9461
9494
  *
9462
9495
  * @returns Reference to `this` in order to allow method chaining
@@ -9473,6 +9506,8 @@ declare module "sap/f/GridContainer" {
9473
9506
  }
9474
9507
  ): this;
9475
9508
  /**
9509
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9510
+ *
9476
9511
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
9477
9512
  *
9478
9513
  * @returns Reference to `this` in order to allow method chaining
@@ -10792,6 +10827,8 @@ declare module "sap/f/GridList" {
10792
10827
  oListener?: object
10793
10828
  ): this;
10794
10829
  /**
10830
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10831
+ *
10795
10832
  * Fires event {@link #event:borderReached borderReached} to attached listeners.
10796
10833
  *
10797
10834
  * @returns Reference to `this` in order to allow method chaining
@@ -10854,12 +10891,16 @@ declare module "sap/f/GridList" {
10854
10891
  */
10855
10892
  getCustomLayout(): GridLayoutBase;
10856
10893
  /**
10894
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10895
+ *
10857
10896
  * Implements IGridConfigurable interface.
10858
10897
  *
10859
10898
  * @returns An array with the DOM elements
10860
10899
  */
10861
10900
  getGridDomRefs(): HTMLElement[];
10862
10901
  /**
10902
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10903
+ *
10863
10904
  * Implements IGridConfigurable interface.
10864
10905
  *
10865
10906
  * @returns The grid layout
@@ -11461,6 +11502,8 @@ declare module "sap/f/ProductSwitch" {
11461
11502
  oListener?: object
11462
11503
  ): this;
11463
11504
  /**
11505
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11506
+ *
11464
11507
  * Fires event {@link #event:change change} to attached listeners.
11465
11508
  *
11466
11509
  * @returns Reference to `this` in order to allow method chaining
@@ -12730,6 +12773,8 @@ declare module "sap/f/SearchManager" {
12730
12773
  oListener?: object
12731
12774
  ): this;
12732
12775
  /**
12776
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12777
+ *
12733
12778
  * Fires event {@link #event:liveChange liveChange} to attached listeners.
12734
12779
  *
12735
12780
  * @returns Reference to `this` in order to allow method chaining
@@ -12746,6 +12791,8 @@ declare module "sap/f/SearchManager" {
12746
12791
  }
12747
12792
  ): this;
12748
12793
  /**
12794
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12795
+ *
12749
12796
  * Fires event {@link #event:search search} to attached listeners.
12750
12797
  *
12751
12798
  * @returns Reference to `this` in order to allow method chaining
@@ -12766,6 +12813,8 @@ declare module "sap/f/SearchManager" {
12766
12813
  }
12767
12814
  ): this;
12768
12815
  /**
12816
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12817
+ *
12769
12818
  * Fires event {@link #event:suggest suggest} to attached listeners.
12770
12819
  *
12771
12820
  * @returns Reference to `this` in order to allow method chaining
@@ -15568,8 +15617,6 @@ declare module "sap/f/semantic/SemanticPage" {
15568
15617
  * If all the areas have assigned values greater than 1, the numbers are scaled so that at least one of
15569
15618
  * them is equal to 1. For example, value of `2:4:8` is equal to `1:2:4`.
15570
15619
  *
15571
- * When this property is set the `titlePrimaryArea` property has no effect.
15572
- *
15573
15620
  * Default value is `"1:1.6:1.6"`.
15574
15621
  *
15575
15622
  * @returns Value of property `titleAreaShrinkRatio`
@@ -16526,8 +16573,6 @@ declare module "sap/f/semantic/SemanticPage" {
16526
16573
  * If all the areas have assigned values greater than 1, the numbers are scaled so that at least one of
16527
16574
  * them is equal to 1. For example, value of `2:4:8` is equal to `1:2:4`.
16528
16575
  *
16529
- * When this property is set the `titlePrimaryArea` property has no effect.
16530
- *
16531
16576
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16532
16577
  *
16533
16578
  * Default value is `"1:1.6:1.6"`.
@@ -16588,39 +16633,6 @@ declare module "sap/f/semantic/SemanticPage" {
16588
16633
  */
16589
16634
  oTitleMainAction: TitleMainAction
16590
16635
  ): this;
16591
- /**
16592
- * @SINCE 1.52
16593
- * @deprecated (since 1.58) - Please use the `titleAreaShrinkRatio` property instead. The value of `titleAreaShrinkRatio`
16594
- * must be set in `Heading:Content:Actions` format where Heading, Content and Actions are numbers greater
16595
- * than or equal to 0. The greater value a section has the faster it shrinks when the screen size is being
16596
- * reduced.
16597
- *
16598
- * `titlePrimaryArea=Begin` can be achieved by setting a low number for the Heading area to `titleAreaShrinkRatio`,
16599
- * for example `1:1.6:1.6`.
16600
- *
16601
- * `titlePrimaryArea=Middle` can be achieved by setting a low number for the Content area to `titleAreaShrinkRatio`,
16602
- * for example `1.6:1:1.6`.
16603
- *
16604
- * Sets a new value for property {@link #getTitlePrimaryArea titlePrimaryArea}.
16605
- *
16606
- * Determines which of the title areas (Begin, Middle) is primary.
16607
- *
16608
- * **Note:** The primary area is shrinking at a lower rate, remaining visible as long as it can.
16609
- *
16610
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16611
- *
16612
- * Default value is `Begin`.
16613
- *
16614
- * @returns Reference to `this` in order to allow method chaining
16615
- */
16616
- setTitlePrimaryArea(
16617
- /**
16618
- * New value for property `titlePrimaryArea`
16619
- */
16620
- sTitlePrimaryArea?:
16621
- | DynamicPageTitleArea
16622
- | keyof typeof DynamicPageTitleArea
16623
- ): this;
16624
16636
  /**
16625
16637
  * @SINCE 1.58
16626
16638
  *
@@ -16750,8 +16762,6 @@ declare module "sap/f/semantic/SemanticPage" {
16750
16762
  *
16751
16763
  * If all the areas have assigned values greater than 1, the numbers are scaled so that at least one of
16752
16764
  * them is equal to 1. For example, value of `2:4:8` is equal to `1:2:4`.
16753
- *
16754
- * When this property is set the `titlePrimaryArea` property has no effect.
16755
16765
  */
16756
16766
  titleAreaShrinkRatio?:
16757
16767
  | DynamicPageTitleShrinkRatio
@@ -17718,6 +17728,7 @@ declare module "sap/f/ShellBar" {
17718
17728
  static getMetadata(): ElementMetadata;
17719
17729
  /**
17720
17730
  * @SINCE 1.65
17731
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17721
17732
  *
17722
17733
  * Sets classes according to the context of the page. Possible contexts are header, footer, and subheader.
17723
17734
  *
@@ -17726,6 +17737,7 @@ declare module "sap/f/ShellBar" {
17726
17737
  _applyContextClassFor(): IBar;
17727
17738
  /**
17728
17739
  * @SINCE 1.65
17740
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17729
17741
  *
17730
17742
  * Sets the HTML tag according to the context of the page. Possible contexts are header, footer, and subheader.
17731
17743
  *
@@ -17745,6 +17757,7 @@ declare module "sap/f/ShellBar" {
17745
17757
  ): this;
17746
17758
  /**
17747
17759
  * @SINCE 1.65
17760
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
17748
17761
  *
17749
17762
  * Sets classes and HTML tag according to the context of the page. Possible contexts are header, footer,
17750
17763
  * and subheader
@@ -18297,6 +18310,8 @@ declare module "sap/f/ShellBar" {
18297
18310
  oListener?: object
18298
18311
  ): this;
18299
18312
  /**
18313
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18314
+ *
18300
18315
  * Fires event {@link #event:avatarPressed avatarPressed} to attached listeners.
18301
18316
  *
18302
18317
  * @returns Reference to `this` in order to allow method chaining
@@ -18313,6 +18328,8 @@ declare module "sap/f/ShellBar" {
18313
18328
  }
18314
18329
  ): this;
18315
18330
  /**
18331
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18332
+ *
18316
18333
  * Fires event {@link #event:copilotPressed copilotPressed} to attached listeners.
18317
18334
  *
18318
18335
  * @returns Reference to `this` in order to allow method chaining
@@ -18329,6 +18346,8 @@ declare module "sap/f/ShellBar" {
18329
18346
  }
18330
18347
  ): this;
18331
18348
  /**
18349
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18350
+ *
18332
18351
  * Fires event {@link #event:homeIconPressed homeIconPressed} to attached listeners.
18333
18352
  *
18334
18353
  * @returns Reference to `this` in order to allow method chaining
@@ -18345,6 +18364,8 @@ declare module "sap/f/ShellBar" {
18345
18364
  }
18346
18365
  ): this;
18347
18366
  /**
18367
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18368
+ *
18348
18369
  * Fires event {@link #event:menuButtonPressed menuButtonPressed} to attached listeners.
18349
18370
  *
18350
18371
  * @returns Reference to `this` in order to allow method chaining
@@ -18361,6 +18382,8 @@ declare module "sap/f/ShellBar" {
18361
18382
  }
18362
18383
  ): this;
18363
18384
  /**
18385
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18386
+ *
18364
18387
  * Fires event {@link #event:navButtonPressed navButtonPressed} to attached listeners.
18365
18388
  *
18366
18389
  * @returns Reference to `this` in order to allow method chaining
@@ -18377,6 +18400,8 @@ declare module "sap/f/ShellBar" {
18377
18400
  }
18378
18401
  ): this;
18379
18402
  /**
18403
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18404
+ *
18380
18405
  * Fires event {@link #event:notificationsPressed notificationsPressed} to attached listeners.
18381
18406
  *
18382
18407
  * @returns Reference to `this` in order to allow method chaining
@@ -18393,6 +18418,8 @@ declare module "sap/f/ShellBar" {
18393
18418
  }
18394
18419
  ): this;
18395
18420
  /**
18421
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18422
+ *
18396
18423
  * Fires event {@link #event:productSwitcherPressed productSwitcherPressed} to attached listeners.
18397
18424
  *
18398
18425
  * @returns Reference to `this` in order to allow method chaining
@@ -18409,6 +18436,8 @@ declare module "sap/f/ShellBar" {
18409
18436
  }
18410
18437
  ): this;
18411
18438
  /**
18439
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18440
+ *
18412
18441
  * Fires event {@link #event:searchButtonPressed searchButtonPressed} to attached listeners.
18413
18442
  *
18414
18443
  * @returns Reference to `this` in order to allow method chaining
@@ -18434,6 +18463,7 @@ declare module "sap/f/ShellBar" {
18434
18463
  getAdditionalContent(): IShellBar[];
18435
18464
  /**
18436
18465
  * @SINCE 1.65
18466
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18437
18467
  *
18438
18468
  * Gets the available Bar contexts.
18439
18469
  *
@@ -18464,6 +18494,7 @@ declare module "sap/f/ShellBar" {
18464
18494
  getHomeIconTooltip(): string;
18465
18495
  /**
18466
18496
  * @SINCE 1.65
18497
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18467
18498
  *
18468
18499
  * Gets the HTML tag of the root DOM Reference.
18469
18500
  *
@@ -18616,6 +18647,7 @@ declare module "sap/f/ShellBar" {
18616
18647
  ): this;
18617
18648
  /**
18618
18649
  * @SINCE 1.65
18650
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18619
18651
  *
18620
18652
  * Returns if the bar is sensitive to the container context. Implementation of the IBar interface
18621
18653
  *
@@ -18679,6 +18711,7 @@ declare module "sap/f/ShellBar" {
18679
18711
  ): this;
18680
18712
  /**
18681
18713
  * @SINCE 1.65
18714
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
18682
18715
  *
18683
18716
  * Sets the HTML tag of the root DOM Reference.
18684
18717
  *
@@ -19263,6 +19296,8 @@ declare module "sap/f/SidePanel" {
19263
19296
  oListener?: object
19264
19297
  ): this;
19265
19298
  /**
19299
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
19300
+ *
19266
19301
  * Fires event {@link #event:toggle toggle} to attached listeners.
19267
19302
  *
19268
19303
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the