@openui5/ts-types-esm 1.112.2 → 1.114.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 +5 -26
- package/package.json +1 -1
- package/types/sap.f.d.ts +127 -40
- package/types/sap.m.d.ts +2350 -1036
- package/types/sap.tnt.d.ts +7 -1
- package/types/sap.ui.codeeditor.d.ts +5 -1
- package/types/sap.ui.commons.d.ts +197 -1
- package/types/sap.ui.core.d.ts +31152 -29691
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +13 -3
- package/types/sap.ui.integration.d.ts +2480 -2337
- package/types/sap.ui.layout.d.ts +43 -1
- package/types/sap.ui.mdc.d.ts +96 -7
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +5 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +97 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +453 -111
- package/types/sap.ui.ux3.d.ts +147 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +63 -1
- package/types/sap.ui.webc.main.d.ts +189 -5
- package/types/sap.uxap.d.ts +26 -1
package/README.md
CHANGED
|
@@ -2,38 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
# @openui5/ts-types-esm
|
|
4
4
|
|
|
5
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.114.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -313,6 +313,21 @@ declare module "sap/f/library" {
|
|
|
313
313
|
*/
|
|
314
314
|
Up = "Up",
|
|
315
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
* @SINCE 1.104
|
|
318
|
+
*
|
|
319
|
+
* Enumeration for different SidePanel position.
|
|
320
|
+
*/
|
|
321
|
+
export enum SidePanelPosition {
|
|
322
|
+
/**
|
|
323
|
+
* The position is left.
|
|
324
|
+
*/
|
|
325
|
+
Left = "Left",
|
|
326
|
+
/**
|
|
327
|
+
* The position is right.
|
|
328
|
+
*/
|
|
329
|
+
Right = "Right",
|
|
330
|
+
}
|
|
316
331
|
|
|
317
332
|
export namespace cards {
|
|
318
333
|
/**
|
|
@@ -670,6 +685,8 @@ declare module "sap/f/AvatarGroup" {
|
|
|
670
685
|
oListener?: object
|
|
671
686
|
): this;
|
|
672
687
|
/**
|
|
688
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
689
|
+
*
|
|
673
690
|
* Fires event {@link #event:press press} to attached listeners.
|
|
674
691
|
*
|
|
675
692
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1411,6 +1428,8 @@ declare module "sap/f/CardBase" {
|
|
|
1411
1428
|
*/
|
|
1412
1429
|
static getMetadata(): ElementMetadata;
|
|
1413
1430
|
/**
|
|
1431
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1432
|
+
*
|
|
1414
1433
|
* Returns the DOM Element that should get the focus.
|
|
1415
1434
|
*
|
|
1416
1435
|
* @returns Returns the DOM Element that should get the focus
|
|
@@ -1790,6 +1809,8 @@ declare module "sap/f/cards/Header" {
|
|
|
1790
1809
|
oListener?: object
|
|
1791
1810
|
): this;
|
|
1792
1811
|
/**
|
|
1812
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1813
|
+
*
|
|
1793
1814
|
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
1794
1815
|
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
1795
1816
|
*/
|
|
@@ -1808,6 +1829,8 @@ declare module "sap/f/cards/Header" {
|
|
|
1808
1829
|
}
|
|
1809
1830
|
): void;
|
|
1810
1831
|
/**
|
|
1832
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1833
|
+
*
|
|
1811
1834
|
* Fires event {@link #event:press press} to attached listeners.
|
|
1812
1835
|
*
|
|
1813
1836
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -2397,6 +2420,8 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
2397
2420
|
oListener?: object
|
|
2398
2421
|
): this;
|
|
2399
2422
|
/**
|
|
2423
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2424
|
+
*
|
|
2400
2425
|
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
2401
2426
|
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
2402
2427
|
*/
|
|
@@ -2415,6 +2440,8 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
2415
2440
|
}
|
|
2416
2441
|
): void;
|
|
2417
2442
|
/**
|
|
2443
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2444
|
+
*
|
|
2418
2445
|
* Fires event {@link #event:press press} to attached listeners.
|
|
2419
2446
|
*
|
|
2420
2447
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -3591,6 +3618,7 @@ declare module "sap/f/DynamicPage" {
|
|
|
3591
3618
|
): this;
|
|
3592
3619
|
/**
|
|
3593
3620
|
* @SINCE 1.93
|
|
3621
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3594
3622
|
*
|
|
3595
3623
|
* Fires event {@link #event:pinnedStateChange pinnedStateChange} to attached listeners.
|
|
3596
3624
|
*
|
|
@@ -5180,6 +5208,7 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
5180
5208
|
): this;
|
|
5181
5209
|
/**
|
|
5182
5210
|
* @SINCE 1.54
|
|
5211
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5183
5212
|
*
|
|
5184
5213
|
* Fires event {@link #event:stateChange stateChange} to attached listeners.
|
|
5185
5214
|
*
|
|
@@ -6911,6 +6940,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
6911
6940
|
oListener?: object
|
|
6912
6941
|
): this;
|
|
6913
6942
|
/**
|
|
6943
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6944
|
+
*
|
|
6914
6945
|
* Fires event {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate} to attached listeners.
|
|
6915
6946
|
*
|
|
6916
6947
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6964,6 +6995,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
6964
6995
|
}
|
|
6965
6996
|
): this;
|
|
6966
6997
|
/**
|
|
6998
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6999
|
+
*
|
|
6967
7000
|
* Fires event {@link #event:afterEndColumnNavigate afterEndColumnNavigate} to attached listeners.
|
|
6968
7001
|
*
|
|
6969
7002
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -7017,6 +7050,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7017
7050
|
}
|
|
7018
7051
|
): this;
|
|
7019
7052
|
/**
|
|
7053
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7054
|
+
*
|
|
7020
7055
|
* Fires event {@link #event:afterMidColumnNavigate afterMidColumnNavigate} to attached listeners.
|
|
7021
7056
|
*
|
|
7022
7057
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -7070,6 +7105,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7070
7105
|
}
|
|
7071
7106
|
): this;
|
|
7072
7107
|
/**
|
|
7108
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7109
|
+
*
|
|
7073
7110
|
* Fires event {@link #event:beginColumnNavigate beginColumnNavigate} to attached listeners.
|
|
7074
7111
|
*
|
|
7075
7112
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -7127,6 +7164,7 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7127
7164
|
): boolean;
|
|
7128
7165
|
/**
|
|
7129
7166
|
* @SINCE 1.76
|
|
7167
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7130
7168
|
*
|
|
7131
7169
|
* Fires event {@link #event:columnResize columnResize} to attached listeners.
|
|
7132
7170
|
*
|
|
@@ -7152,6 +7190,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7152
7190
|
}
|
|
7153
7191
|
): this;
|
|
7154
7192
|
/**
|
|
7193
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7194
|
+
*
|
|
7155
7195
|
* Fires event {@link #event:endColumnNavigate endColumnNavigate} to attached listeners.
|
|
7156
7196
|
*
|
|
7157
7197
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -7208,6 +7248,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7208
7248
|
}
|
|
7209
7249
|
): boolean;
|
|
7210
7250
|
/**
|
|
7251
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7252
|
+
*
|
|
7211
7253
|
* Fires event {@link #event:midColumnNavigate midColumnNavigate} to attached listeners.
|
|
7212
7254
|
*
|
|
7213
7255
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -7264,6 +7306,8 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
7264
7306
|
}
|
|
7265
7307
|
): boolean;
|
|
7266
7308
|
/**
|
|
7309
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7310
|
+
*
|
|
7267
7311
|
* Fires event {@link #event:stateChange stateChange} to attached listeners.
|
|
7268
7312
|
*
|
|
7269
7313
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9429,6 +9473,8 @@ declare module "sap/f/GridContainer" {
|
|
|
9429
9473
|
oListener?: object
|
|
9430
9474
|
): this;
|
|
9431
9475
|
/**
|
|
9476
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9477
|
+
*
|
|
9432
9478
|
* Fires event {@link #event:borderReached borderReached} to attached listeners.
|
|
9433
9479
|
*
|
|
9434
9480
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9457,6 +9503,8 @@ declare module "sap/f/GridContainer" {
|
|
|
9457
9503
|
}
|
|
9458
9504
|
): this;
|
|
9459
9505
|
/**
|
|
9506
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9507
|
+
*
|
|
9460
9508
|
* Fires event {@link #event:columnsChange columnsChange} to attached listeners.
|
|
9461
9509
|
*
|
|
9462
9510
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9473,6 +9521,8 @@ declare module "sap/f/GridContainer" {
|
|
|
9473
9521
|
}
|
|
9474
9522
|
): this;
|
|
9475
9523
|
/**
|
|
9524
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9525
|
+
*
|
|
9476
9526
|
* Fires event {@link #event:layoutChange layoutChange} to attached listeners.
|
|
9477
9527
|
*
|
|
9478
9528
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -10792,6 +10842,8 @@ declare module "sap/f/GridList" {
|
|
|
10792
10842
|
oListener?: object
|
|
10793
10843
|
): this;
|
|
10794
10844
|
/**
|
|
10845
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10846
|
+
*
|
|
10795
10847
|
* Fires event {@link #event:borderReached borderReached} to attached listeners.
|
|
10796
10848
|
*
|
|
10797
10849
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -10854,12 +10906,16 @@ declare module "sap/f/GridList" {
|
|
|
10854
10906
|
*/
|
|
10855
10907
|
getCustomLayout(): GridLayoutBase;
|
|
10856
10908
|
/**
|
|
10909
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10910
|
+
*
|
|
10857
10911
|
* Implements IGridConfigurable interface.
|
|
10858
10912
|
*
|
|
10859
10913
|
* @returns An array with the DOM elements
|
|
10860
10914
|
*/
|
|
10861
10915
|
getGridDomRefs(): HTMLElement[];
|
|
10862
10916
|
/**
|
|
10917
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
10918
|
+
*
|
|
10863
10919
|
* Implements IGridConfigurable interface.
|
|
10864
10920
|
*
|
|
10865
10921
|
* @returns The grid layout
|
|
@@ -11461,6 +11517,8 @@ declare module "sap/f/ProductSwitch" {
|
|
|
11461
11517
|
oListener?: object
|
|
11462
11518
|
): this;
|
|
11463
11519
|
/**
|
|
11520
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
11521
|
+
*
|
|
11464
11522
|
* Fires event {@link #event:change change} to attached listeners.
|
|
11465
11523
|
*
|
|
11466
11524
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -12730,6 +12788,8 @@ declare module "sap/f/SearchManager" {
|
|
|
12730
12788
|
oListener?: object
|
|
12731
12789
|
): this;
|
|
12732
12790
|
/**
|
|
12791
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12792
|
+
*
|
|
12733
12793
|
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
12734
12794
|
*
|
|
12735
12795
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -12746,6 +12806,8 @@ declare module "sap/f/SearchManager" {
|
|
|
12746
12806
|
}
|
|
12747
12807
|
): this;
|
|
12748
12808
|
/**
|
|
12809
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12810
|
+
*
|
|
12749
12811
|
* Fires event {@link #event:search search} to attached listeners.
|
|
12750
12812
|
*
|
|
12751
12813
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -12766,6 +12828,8 @@ declare module "sap/f/SearchManager" {
|
|
|
12766
12828
|
}
|
|
12767
12829
|
): this;
|
|
12768
12830
|
/**
|
|
12831
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12832
|
+
*
|
|
12769
12833
|
* Fires event {@link #event:suggest suggest} to attached listeners.
|
|
12770
12834
|
*
|
|
12771
12835
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -15568,8 +15632,6 @@ declare module "sap/f/semantic/SemanticPage" {
|
|
|
15568
15632
|
* If all the areas have assigned values greater than 1, the numbers are scaled so that at least one of
|
|
15569
15633
|
* them is equal to 1. For example, value of `2:4:8` is equal to `1:2:4`.
|
|
15570
15634
|
*
|
|
15571
|
-
* When this property is set the `titlePrimaryArea` property has no effect.
|
|
15572
|
-
*
|
|
15573
15635
|
* Default value is `"1:1.6:1.6"`.
|
|
15574
15636
|
*
|
|
15575
15637
|
* @returns Value of property `titleAreaShrinkRatio`
|
|
@@ -16526,8 +16588,6 @@ declare module "sap/f/semantic/SemanticPage" {
|
|
|
16526
16588
|
* If all the areas have assigned values greater than 1, the numbers are scaled so that at least one of
|
|
16527
16589
|
* them is equal to 1. For example, value of `2:4:8` is equal to `1:2:4`.
|
|
16528
16590
|
*
|
|
16529
|
-
* When this property is set the `titlePrimaryArea` property has no effect.
|
|
16530
|
-
*
|
|
16531
16591
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16532
16592
|
*
|
|
16533
16593
|
* Default value is `"1:1.6:1.6"`.
|
|
@@ -16588,39 +16648,6 @@ declare module "sap/f/semantic/SemanticPage" {
|
|
|
16588
16648
|
*/
|
|
16589
16649
|
oTitleMainAction: TitleMainAction
|
|
16590
16650
|
): 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
16651
|
/**
|
|
16625
16652
|
* @SINCE 1.58
|
|
16626
16653
|
*
|
|
@@ -16750,8 +16777,6 @@ declare module "sap/f/semantic/SemanticPage" {
|
|
|
16750
16777
|
*
|
|
16751
16778
|
* If all the areas have assigned values greater than 1, the numbers are scaled so that at least one of
|
|
16752
16779
|
* 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
16780
|
*/
|
|
16756
16781
|
titleAreaShrinkRatio?:
|
|
16757
16782
|
| DynamicPageTitleShrinkRatio
|
|
@@ -17718,6 +17743,7 @@ declare module "sap/f/ShellBar" {
|
|
|
17718
17743
|
static getMetadata(): ElementMetadata;
|
|
17719
17744
|
/**
|
|
17720
17745
|
* @SINCE 1.65
|
|
17746
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17721
17747
|
*
|
|
17722
17748
|
* Sets classes according to the context of the page. Possible contexts are header, footer, and subheader.
|
|
17723
17749
|
*
|
|
@@ -17726,6 +17752,7 @@ declare module "sap/f/ShellBar" {
|
|
|
17726
17752
|
_applyContextClassFor(): IBar;
|
|
17727
17753
|
/**
|
|
17728
17754
|
* @SINCE 1.65
|
|
17755
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17729
17756
|
*
|
|
17730
17757
|
* Sets the HTML tag according to the context of the page. Possible contexts are header, footer, and subheader.
|
|
17731
17758
|
*
|
|
@@ -17745,6 +17772,7 @@ declare module "sap/f/ShellBar" {
|
|
|
17745
17772
|
): this;
|
|
17746
17773
|
/**
|
|
17747
17774
|
* @SINCE 1.65
|
|
17775
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
17748
17776
|
*
|
|
17749
17777
|
* Sets classes and HTML tag according to the context of the page. Possible contexts are header, footer,
|
|
17750
17778
|
* and subheader
|
|
@@ -18297,6 +18325,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18297
18325
|
oListener?: object
|
|
18298
18326
|
): this;
|
|
18299
18327
|
/**
|
|
18328
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18329
|
+
*
|
|
18300
18330
|
* Fires event {@link #event:avatarPressed avatarPressed} to attached listeners.
|
|
18301
18331
|
*
|
|
18302
18332
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18313,6 +18343,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18313
18343
|
}
|
|
18314
18344
|
): this;
|
|
18315
18345
|
/**
|
|
18346
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18347
|
+
*
|
|
18316
18348
|
* Fires event {@link #event:copilotPressed copilotPressed} to attached listeners.
|
|
18317
18349
|
*
|
|
18318
18350
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18329,6 +18361,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18329
18361
|
}
|
|
18330
18362
|
): this;
|
|
18331
18363
|
/**
|
|
18364
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18365
|
+
*
|
|
18332
18366
|
* Fires event {@link #event:homeIconPressed homeIconPressed} to attached listeners.
|
|
18333
18367
|
*
|
|
18334
18368
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18345,6 +18379,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18345
18379
|
}
|
|
18346
18380
|
): this;
|
|
18347
18381
|
/**
|
|
18382
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18383
|
+
*
|
|
18348
18384
|
* Fires event {@link #event:menuButtonPressed menuButtonPressed} to attached listeners.
|
|
18349
18385
|
*
|
|
18350
18386
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18361,6 +18397,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18361
18397
|
}
|
|
18362
18398
|
): this;
|
|
18363
18399
|
/**
|
|
18400
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18401
|
+
*
|
|
18364
18402
|
* Fires event {@link #event:navButtonPressed navButtonPressed} to attached listeners.
|
|
18365
18403
|
*
|
|
18366
18404
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18377,6 +18415,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18377
18415
|
}
|
|
18378
18416
|
): this;
|
|
18379
18417
|
/**
|
|
18418
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18419
|
+
*
|
|
18380
18420
|
* Fires event {@link #event:notificationsPressed notificationsPressed} to attached listeners.
|
|
18381
18421
|
*
|
|
18382
18422
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18393,6 +18433,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18393
18433
|
}
|
|
18394
18434
|
): this;
|
|
18395
18435
|
/**
|
|
18436
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18437
|
+
*
|
|
18396
18438
|
* Fires event {@link #event:productSwitcherPressed productSwitcherPressed} to attached listeners.
|
|
18397
18439
|
*
|
|
18398
18440
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18409,6 +18451,8 @@ declare module "sap/f/ShellBar" {
|
|
|
18409
18451
|
}
|
|
18410
18452
|
): this;
|
|
18411
18453
|
/**
|
|
18454
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18455
|
+
*
|
|
18412
18456
|
* Fires event {@link #event:searchButtonPressed searchButtonPressed} to attached listeners.
|
|
18413
18457
|
*
|
|
18414
18458
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18434,6 +18478,7 @@ declare module "sap/f/ShellBar" {
|
|
|
18434
18478
|
getAdditionalContent(): IShellBar[];
|
|
18435
18479
|
/**
|
|
18436
18480
|
* @SINCE 1.65
|
|
18481
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18437
18482
|
*
|
|
18438
18483
|
* Gets the available Bar contexts.
|
|
18439
18484
|
*
|
|
@@ -18464,6 +18509,7 @@ declare module "sap/f/ShellBar" {
|
|
|
18464
18509
|
getHomeIconTooltip(): string;
|
|
18465
18510
|
/**
|
|
18466
18511
|
* @SINCE 1.65
|
|
18512
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18467
18513
|
*
|
|
18468
18514
|
* Gets the HTML tag of the root DOM Reference.
|
|
18469
18515
|
*
|
|
@@ -18616,6 +18662,7 @@ declare module "sap/f/ShellBar" {
|
|
|
18616
18662
|
): this;
|
|
18617
18663
|
/**
|
|
18618
18664
|
* @SINCE 1.65
|
|
18665
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18619
18666
|
*
|
|
18620
18667
|
* Returns if the bar is sensitive to the container context. Implementation of the IBar interface
|
|
18621
18668
|
*
|
|
@@ -18679,6 +18726,7 @@ declare module "sap/f/ShellBar" {
|
|
|
18679
18726
|
): this;
|
|
18680
18727
|
/**
|
|
18681
18728
|
* @SINCE 1.65
|
|
18729
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
18682
18730
|
*
|
|
18683
18731
|
* Sets the HTML tag of the root DOM Reference.
|
|
18684
18732
|
*
|
|
@@ -19003,6 +19051,8 @@ declare module "sap/f/SidePanel" {
|
|
|
19003
19051
|
|
|
19004
19052
|
import { ID, CSSSize } from "sap/ui/core/library";
|
|
19005
19053
|
|
|
19054
|
+
import { SidePanelPosition } from "sap/f/library";
|
|
19055
|
+
|
|
19006
19056
|
import {
|
|
19007
19057
|
PropertyBindingInfo,
|
|
19008
19058
|
AggregationBindingInfo,
|
|
@@ -19263,6 +19313,8 @@ declare module "sap/f/SidePanel" {
|
|
|
19263
19313
|
oListener?: object
|
|
19264
19314
|
): this;
|
|
19265
19315
|
/**
|
|
19316
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
19317
|
+
*
|
|
19266
19318
|
* Fires event {@link #event:toggle toggle} to attached listeners.
|
|
19267
19319
|
*
|
|
19268
19320
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -19350,6 +19402,16 @@ declare module "sap/f/SidePanel" {
|
|
|
19350
19402
|
* @returns Value of property `sidePanelMinWidth`
|
|
19351
19403
|
*/
|
|
19352
19404
|
getSidePanelMinWidth(): CSSSize;
|
|
19405
|
+
/**
|
|
19406
|
+
* Gets current value of property {@link #getSidePanelPosition sidePanelPosition}.
|
|
19407
|
+
*
|
|
19408
|
+
* Defines where to place the side panel position.
|
|
19409
|
+
*
|
|
19410
|
+
* Default value is `Right`.
|
|
19411
|
+
*
|
|
19412
|
+
* @returns Value of property `sidePanelPosition`
|
|
19413
|
+
*/
|
|
19414
|
+
getSidePanelPosition(): SidePanelPosition | keyof typeof SidePanelPosition;
|
|
19353
19415
|
/**
|
|
19354
19416
|
* Gets current value of property {@link #getSidePanelResizable sidePanelResizable}.
|
|
19355
19417
|
*
|
|
@@ -19573,6 +19635,23 @@ declare module "sap/f/SidePanel" {
|
|
|
19573
19635
|
*/
|
|
19574
19636
|
sSidePanelMinWidth?: CSSSize
|
|
19575
19637
|
): this;
|
|
19638
|
+
/**
|
|
19639
|
+
* Sets a new value for property {@link #getSidePanelPosition sidePanelPosition}.
|
|
19640
|
+
*
|
|
19641
|
+
* Defines where to place the side panel position.
|
|
19642
|
+
*
|
|
19643
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
19644
|
+
*
|
|
19645
|
+
* Default value is `Right`.
|
|
19646
|
+
*
|
|
19647
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
19648
|
+
*/
|
|
19649
|
+
setSidePanelPosition(
|
|
19650
|
+
/**
|
|
19651
|
+
* New value for property `sidePanelPosition`
|
|
19652
|
+
*/
|
|
19653
|
+
sSidePanelPosition?: SidePanelPosition | keyof typeof SidePanelPosition
|
|
19654
|
+
): this;
|
|
19576
19655
|
/**
|
|
19577
19656
|
* Sets a new value for property {@link #getSidePanelResizable sidePanelResizable}.
|
|
19578
19657
|
*
|
|
@@ -19695,6 +19774,14 @@ declare module "sap/f/SidePanel" {
|
|
|
19695
19774
|
*/
|
|
19696
19775
|
sidePanelResizeLargerStep?: int | PropertyBindingInfo | `{${string}}`;
|
|
19697
19776
|
|
|
19777
|
+
/**
|
|
19778
|
+
* Defines where to place the side panel position.
|
|
19779
|
+
*/
|
|
19780
|
+
sidePanelPosition?:
|
|
19781
|
+
| (SidePanelPosition | keyof typeof SidePanelPosition)
|
|
19782
|
+
| PropertyBindingInfo
|
|
19783
|
+
| `{${string}}`;
|
|
19784
|
+
|
|
19698
19785
|
/**
|
|
19699
19786
|
* The list of controls for the main content.
|
|
19700
19787
|
*/
|