@openui5/ts-types-esm 1.108.35 → 1.108.36
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.f.d.ts +1 -1
- package/types/sap.m.d.ts +146 -4
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.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.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.108.
|
|
1
|
+
// For Library Version: 1.108.36
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -55111,7 +55111,8 @@ declare module "sap/m/NavContainer" {
|
|
|
55111
55111
|
*
|
|
55112
55112
|
* The event is fired when navigation between two pages has completed (once all events to the child controls
|
|
55113
55113
|
* have been fired). In case of animated transitions this event is fired with some delay after the "navigate"
|
|
55114
|
-
* event.
|
|
55114
|
+
* event. This event is only fired if the DOM ref of the `NavContainer` is available. If the DOM ref is
|
|
55115
|
+
* not available, the `navigationFinished` event should be used instead.
|
|
55115
55116
|
*
|
|
55116
55117
|
* @returns Reference to `this` in order to allow method chaining
|
|
55117
55118
|
*/
|
|
@@ -55140,7 +55141,8 @@ declare module "sap/m/NavContainer" {
|
|
|
55140
55141
|
*
|
|
55141
55142
|
* The event is fired when navigation between two pages has completed (once all events to the child controls
|
|
55142
55143
|
* have been fired). In case of animated transitions this event is fired with some delay after the "navigate"
|
|
55143
|
-
* event.
|
|
55144
|
+
* event. This event is only fired if the DOM ref of the `NavContainer` is available. If the DOM ref is
|
|
55145
|
+
* not available, the `navigationFinished` event should be used instead.
|
|
55144
55146
|
*
|
|
55145
55147
|
* @returns Reference to `this` in order to allow method chaining
|
|
55146
55148
|
*/
|
|
@@ -55207,6 +55209,61 @@ declare module "sap/m/NavContainer" {
|
|
|
55207
55209
|
*/
|
|
55208
55210
|
oListener?: object
|
|
55209
55211
|
): this;
|
|
55212
|
+
/**
|
|
55213
|
+
* @SINCE 1.111.0
|
|
55214
|
+
*
|
|
55215
|
+
* Attaches event handler `fnFunction` to the {@link #event:navigationFinished navigationFinished} event
|
|
55216
|
+
* of this `sap.m.NavContainer`.
|
|
55217
|
+
*
|
|
55218
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
55219
|
+
* otherwise it will be bound to this `sap.m.NavContainer` itself.
|
|
55220
|
+
*
|
|
55221
|
+
* The event is fired when navigation between two pages has completed regardless of whether the DOM is ready
|
|
55222
|
+
* or not. This event is useful when performing navigation without/before rendering of the `NavContainer`.
|
|
55223
|
+
* Keep in mind that the DOM is not guaranteed to be ready when this event is fired.
|
|
55224
|
+
*
|
|
55225
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
55226
|
+
*/
|
|
55227
|
+
attachNavigationFinished(
|
|
55228
|
+
/**
|
|
55229
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
55230
|
+
* object when firing the event
|
|
55231
|
+
*/
|
|
55232
|
+
oData: object,
|
|
55233
|
+
/**
|
|
55234
|
+
* The function to be called when the event occurs
|
|
55235
|
+
*/
|
|
55236
|
+
fnFunction: (p1: Event) => void,
|
|
55237
|
+
/**
|
|
55238
|
+
* Context object to call the event handler with. Defaults to this `sap.m.NavContainer` itself
|
|
55239
|
+
*/
|
|
55240
|
+
oListener?: object
|
|
55241
|
+
): this;
|
|
55242
|
+
/**
|
|
55243
|
+
* @SINCE 1.111.0
|
|
55244
|
+
*
|
|
55245
|
+
* Attaches event handler `fnFunction` to the {@link #event:navigationFinished navigationFinished} event
|
|
55246
|
+
* of this `sap.m.NavContainer`.
|
|
55247
|
+
*
|
|
55248
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
55249
|
+
* otherwise it will be bound to this `sap.m.NavContainer` itself.
|
|
55250
|
+
*
|
|
55251
|
+
* The event is fired when navigation between two pages has completed regardless of whether the DOM is ready
|
|
55252
|
+
* or not. This event is useful when performing navigation without/before rendering of the `NavContainer`.
|
|
55253
|
+
* Keep in mind that the DOM is not guaranteed to be ready when this event is fired.
|
|
55254
|
+
*
|
|
55255
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
55256
|
+
*/
|
|
55257
|
+
attachNavigationFinished(
|
|
55258
|
+
/**
|
|
55259
|
+
* The function to be called when the event occurs
|
|
55260
|
+
*/
|
|
55261
|
+
fnFunction: (p1: Event) => void,
|
|
55262
|
+
/**
|
|
55263
|
+
* Context object to call the event handler with. Defaults to this `sap.m.NavContainer` itself
|
|
55264
|
+
*/
|
|
55265
|
+
oListener?: object
|
|
55266
|
+
): this;
|
|
55210
55267
|
/**
|
|
55211
55268
|
* Navigates back one level. If already on the initial page and there is no place to go back, nothing happens.
|
|
55212
55269
|
*
|
|
@@ -55382,6 +55439,26 @@ declare module "sap/m/NavContainer" {
|
|
|
55382
55439
|
*/
|
|
55383
55440
|
oListener?: object
|
|
55384
55441
|
): this;
|
|
55442
|
+
/**
|
|
55443
|
+
* @SINCE 1.111.0
|
|
55444
|
+
*
|
|
55445
|
+
* Detaches event handler `fnFunction` from the {@link #event:navigationFinished navigationFinished} event
|
|
55446
|
+
* of this `sap.m.NavContainer`.
|
|
55447
|
+
*
|
|
55448
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
55449
|
+
*
|
|
55450
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
55451
|
+
*/
|
|
55452
|
+
detachNavigationFinished(
|
|
55453
|
+
/**
|
|
55454
|
+
* The function to be called, when the event occurs
|
|
55455
|
+
*/
|
|
55456
|
+
fnFunction: (p1: Event) => void,
|
|
55457
|
+
/**
|
|
55458
|
+
* Context object on which the given function had to be called
|
|
55459
|
+
*/
|
|
55460
|
+
oListener?: object
|
|
55461
|
+
): this;
|
|
55385
55462
|
/**
|
|
55386
55463
|
* @SINCE 1.7.1
|
|
55387
55464
|
*
|
|
@@ -55495,6 +55572,61 @@ declare module "sap/m/NavContainer" {
|
|
|
55495
55572
|
direction?: string;
|
|
55496
55573
|
}
|
|
55497
55574
|
): boolean;
|
|
55575
|
+
/**
|
|
55576
|
+
* @SINCE 1.111.0
|
|
55577
|
+
*
|
|
55578
|
+
* Fires event {@link #event:navigationFinished navigationFinished} to attached listeners.
|
|
55579
|
+
*
|
|
55580
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
55581
|
+
*/
|
|
55582
|
+
fireNavigationFinished(
|
|
55583
|
+
/**
|
|
55584
|
+
* Parameters to pass along with the event
|
|
55585
|
+
*/
|
|
55586
|
+
mParameters?: {
|
|
55587
|
+
/**
|
|
55588
|
+
* The page which had been shown before navigation.
|
|
55589
|
+
*/
|
|
55590
|
+
from?: Control;
|
|
55591
|
+
/**
|
|
55592
|
+
* The ID of the page which had been shown before navigation.
|
|
55593
|
+
*/
|
|
55594
|
+
fromId?: string;
|
|
55595
|
+
/**
|
|
55596
|
+
* The page which is now shown after navigation.
|
|
55597
|
+
*/
|
|
55598
|
+
to?: Control;
|
|
55599
|
+
/**
|
|
55600
|
+
* The ID of the page which is now shown after navigation.
|
|
55601
|
+
*/
|
|
55602
|
+
toId?: string;
|
|
55603
|
+
/**
|
|
55604
|
+
* Whether the "to" page (more precisely: a control with the ID of the page which has been navigated to)
|
|
55605
|
+
* had not been shown/navigated to before.
|
|
55606
|
+
*/
|
|
55607
|
+
firstTime?: boolean;
|
|
55608
|
+
/**
|
|
55609
|
+
* Whether was a forward navigation, triggered by "to()".
|
|
55610
|
+
*/
|
|
55611
|
+
isTo?: boolean;
|
|
55612
|
+
/**
|
|
55613
|
+
* Whether this was a back navigation, triggered by "back()".
|
|
55614
|
+
*/
|
|
55615
|
+
isBack?: boolean;
|
|
55616
|
+
/**
|
|
55617
|
+
* Whether this was a navigation to the root page, triggered by "backToTop()".
|
|
55618
|
+
*/
|
|
55619
|
+
isBackToTop?: boolean;
|
|
55620
|
+
/**
|
|
55621
|
+
* Whether this was a navigation to a specific page, triggered by "backToPage()".
|
|
55622
|
+
*/
|
|
55623
|
+
isBackToPage?: boolean;
|
|
55624
|
+
/**
|
|
55625
|
+
* How the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
|
|
55626
|
+
*/
|
|
55627
|
+
direction?: string;
|
|
55628
|
+
}
|
|
55629
|
+
): this;
|
|
55498
55630
|
/**
|
|
55499
55631
|
* @SINCE 1.30
|
|
55500
55632
|
*
|
|
@@ -55991,9 +56123,19 @@ declare module "sap/m/NavContainer" {
|
|
|
55991
56123
|
*
|
|
55992
56124
|
* The event is fired when navigation between two pages has completed (once all events to the child controls
|
|
55993
56125
|
* have been fired). In case of animated transitions this event is fired with some delay after the "navigate"
|
|
55994
|
-
* event.
|
|
56126
|
+
* event. This event is only fired if the DOM ref of the `NavContainer` is available. If the DOM ref is
|
|
56127
|
+
* not available, the `navigationFinished` event should be used instead.
|
|
55995
56128
|
*/
|
|
55996
56129
|
afterNavigate?: (oEvent: Event) => void;
|
|
56130
|
+
|
|
56131
|
+
/**
|
|
56132
|
+
* @SINCE 1.111.0
|
|
56133
|
+
*
|
|
56134
|
+
* The event is fired when navigation between two pages has completed regardless of whether the DOM is ready
|
|
56135
|
+
* or not. This event is useful when performing navigation without/before rendering of the `NavContainer`.
|
|
56136
|
+
* Keep in mind that the DOM is not guaranteed to be ready when this event is fired.
|
|
56137
|
+
*/
|
|
56138
|
+
navigationFinished?: (oEvent: Event) => void;
|
|
55997
56139
|
}
|
|
55998
56140
|
}
|
|
55999
56141
|
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED