@openui5/types 1.115.1 → 1.117.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 +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +196 -276
- package/types/sap.m.d.ts +2202 -2899
- package/types/sap.tnt.d.ts +64 -29
- package/types/sap.ui.codeeditor.d.ts +11 -17
- package/types/sap.ui.commons.d.ts +278 -422
- package/types/sap.ui.core.d.ts +1160 -1090
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +24 -74
- package/types/sap.ui.integration.d.ts +192 -100
- package/types/sap.ui.layout.d.ts +100 -69
- package/types/sap.ui.mdc.d.ts +1100 -913
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -15
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +140 -192
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +277 -501
- package/types/sap.ui.ux3.d.ts +263 -504
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +864 -342
- package/types/sap.ui.webc.main.d.ts +4337 -1135
- package/types/sap.uxap.d.ts +51 -91
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ declare namespace sap {
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
// For Library Version: 1.
|
|
283
|
+
// For Library Version: 1.117.0
|
|
284
284
|
|
|
285
285
|
declare module "sap/base/assert" {
|
|
286
286
|
/**
|
|
@@ -2658,9 +2658,7 @@ declare module "sap/ui/core/date/CalendarUtils" {
|
|
|
2658
2658
|
* {@link sap.ui.core.Configuration#getCalendarWeekNumbering}. If this value is `Default` the returned calendar
|
|
2659
2659
|
* week configuration is derived from the given `oLocale`.
|
|
2660
2660
|
*/
|
|
2661
|
-
sCalendarWeekNumbering?:
|
|
2662
|
-
| CalendarWeekNumbering
|
|
2663
|
-
| keyof typeof CalendarWeekNumbering,
|
|
2661
|
+
sCalendarWeekNumbering?: CalendarWeekNumbering,
|
|
2664
2662
|
/**
|
|
2665
2663
|
* The locale to use; if not provided, this falls back to the format locale from the Configuration; see
|
|
2666
2664
|
* {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale}. Is only used when `sCalendarWeekNumbering`
|
|
@@ -3139,7 +3137,8 @@ declare module "sap/ui/core/date/UI5Date" {
|
|
|
3139
3137
|
*/
|
|
3140
3138
|
setYear(
|
|
3141
3139
|
/**
|
|
3142
|
-
* The year which is to be set for this date
|
|
3140
|
+
* The year which is to be set for this date. If iYear is a number between 0 and 99 (inclusive), then the
|
|
3141
|
+
* year for this date is set to 1900 + iYear. Otherwise, the year for this date is set to iYear.
|
|
3143
3142
|
*/
|
|
3144
3143
|
iYear: int
|
|
3145
3144
|
): int;
|
|
@@ -4557,7 +4556,8 @@ declare module "sap/ui/util/Mobile" {
|
|
|
4557
4556
|
* The "options" parameter configures what exactly should be done.
|
|
4558
4557
|
*
|
|
4559
4558
|
* It can have the following properties:
|
|
4560
|
-
* - viewport: whether to set the viewport in a way that disables zooming (default: true)
|
|
4559
|
+
* - viewport: whether to set the viewport in a way that disables zooming (default: true). This does not
|
|
4560
|
+
* work in case there is already a meta tag with name 'viewport'.
|
|
4561
4561
|
* - statusBar: the iOS status bar color, "default", "black" or "black-translucent" (default: "default")
|
|
4562
4562
|
*
|
|
4563
4563
|
* - hideBrowser: whether the browser UI should be hidden as far as possible to make the app feel more
|
|
@@ -4567,7 +4567,8 @@ declare module "sap/ui/util/Mobile" {
|
|
|
4567
4567
|
* - preventPhoneNumberDetection: whether Safari Mobile should be prevented from transforming any numbers
|
|
4568
4568
|
* that look like phone numbers into clickable links; this should be left as "true", otherwise it might
|
|
4569
4569
|
* break controls because Safari actually changes the DOM. This only affects all page content which is created
|
|
4570
|
-
* after init() is called.
|
|
4570
|
+
* after init() is called and only in case there is not already a meta tag with name 'format-detection'.
|
|
4571
|
+
*
|
|
4571
4572
|
* - rootId: the ID of the root element that should be made fullscreen; only used when hideBrowser is
|
|
4572
4573
|
* set (default: the document.body)
|
|
4573
4574
|
* - useFullScreenHeight: a boolean that defines whether the height of the html root element should be
|
|
@@ -5473,12 +5474,12 @@ declare module "sap/ui/base/DataType" {
|
|
|
5473
5474
|
}
|
|
5474
5475
|
|
|
5475
5476
|
declare module "sap/ui/base/Event" {
|
|
5477
|
+
import EventProvider from "sap/ui/base/EventProvider";
|
|
5478
|
+
|
|
5476
5479
|
import BaseObject from "sap/ui/base/Object";
|
|
5477
5480
|
|
|
5478
5481
|
import { Poolable } from "sap/ui/base/ObjectPool";
|
|
5479
5482
|
|
|
5480
|
-
import EventProvider from "sap/ui/base/EventProvider";
|
|
5481
|
-
|
|
5482
5483
|
import Metadata from "sap/ui/base/Metadata";
|
|
5483
5484
|
|
|
5484
5485
|
/**
|
|
@@ -5486,7 +5487,10 @@ declare module "sap/ui/base/Event" {
|
|
|
5486
5487
|
* and therefore an event object in the event handler will be reset by {@link sap.ui.base.ObjectPool} after
|
|
5487
5488
|
* the event handler is done.
|
|
5488
5489
|
*/
|
|
5489
|
-
export default class Event<
|
|
5490
|
+
export default class Event<
|
|
5491
|
+
ParamsType extends Record<string, any> = object,
|
|
5492
|
+
SourceType extends EventProvider = EventProvider
|
|
5493
|
+
>
|
|
5490
5494
|
extends BaseObject
|
|
5491
5495
|
implements Poolable {
|
|
5492
5496
|
__implements__sap_ui_base_Poolable: boolean;
|
|
@@ -5501,7 +5505,7 @@ declare module "sap/ui/base/Event" {
|
|
|
5501
5505
|
/**
|
|
5502
5506
|
* Source of the event
|
|
5503
5507
|
*/
|
|
5504
|
-
oSource:
|
|
5508
|
+
oSource: SourceType,
|
|
5505
5509
|
/**
|
|
5506
5510
|
* Parameters for this event
|
|
5507
5511
|
*/
|
|
@@ -5571,7 +5575,7 @@ declare module "sap/ui/base/Event" {
|
|
|
5571
5575
|
*
|
|
5572
5576
|
* @returns The source of the event
|
|
5573
5577
|
*/
|
|
5574
|
-
getSource():
|
|
5578
|
+
getSource<T extends SourceType>(): T;
|
|
5575
5579
|
/**
|
|
5576
5580
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5577
5581
|
*
|
|
@@ -5591,7 +5595,7 @@ declare module "sap/ui/base/Event" {
|
|
|
5591
5595
|
/**
|
|
5592
5596
|
* Source of the event
|
|
5593
5597
|
*/
|
|
5594
|
-
oSource:
|
|
5598
|
+
oSource: SourceType,
|
|
5595
5599
|
/**
|
|
5596
5600
|
* The event parameters
|
|
5597
5601
|
*/
|
|
@@ -7500,8 +7504,8 @@ declare module "sap/ui/base/ManagedObject" {
|
|
|
7500
7504
|
* Changing the state via the standard mutators, therefore, does not require an explicit call to `invalidate`.
|
|
7501
7505
|
* The same applies to changes made via data binding, as it internally uses the standard mutators.
|
|
7502
7506
|
*
|
|
7503
|
-
* By default, a `ManagedObject` propagates any invalidation to its parent
|
|
7504
|
-
* on their own by triggering a re-rendering.
|
|
7507
|
+
* By default, a `ManagedObject` propagates any invalidation to its parent, unless the invalidation is suppressed
|
|
7508
|
+
* on the parent. Controls or UIAreas handle invalidation on their own by triggering a re-rendering.
|
|
7505
7509
|
*/
|
|
7506
7510
|
invalidate(): void;
|
|
7507
7511
|
/**
|
|
@@ -8448,33 +8452,25 @@ declare module "sap/ui/base/ManagedObject" {
|
|
|
8448
8452
|
* Fired after a new value for a bound property has been propagated to the model. Only fired, when the binding
|
|
8449
8453
|
* uses a data type.
|
|
8450
8454
|
*/
|
|
8451
|
-
validationSuccess?: (
|
|
8452
|
-
oEvent: Event<ManagedObject$ValidationSuccessEventParameters>
|
|
8453
|
-
) => void;
|
|
8455
|
+
validationSuccess?: (oEvent: ManagedObject$ValidationSuccessEvent) => void;
|
|
8454
8456
|
|
|
8455
8457
|
/**
|
|
8456
8458
|
* Fired when a new value for a bound property should have been propagated to the model, but validating
|
|
8457
8459
|
* the value failed with an exception.
|
|
8458
8460
|
*/
|
|
8459
|
-
validationError?: (
|
|
8460
|
-
oEvent: Event<ManagedObject$ValidationErrorEventParameters>
|
|
8461
|
-
) => void;
|
|
8461
|
+
validationError?: (oEvent: ManagedObject$ValidationErrorEvent) => void;
|
|
8462
8462
|
|
|
8463
8463
|
/**
|
|
8464
8464
|
* Fired when a new value for a bound property should have been propagated to the model, but parsing the
|
|
8465
8465
|
* value failed with an exception.
|
|
8466
8466
|
*/
|
|
8467
|
-
parseError?: (
|
|
8468
|
-
oEvent: Event<ManagedObject$ParseErrorEventParameters>
|
|
8469
|
-
) => void;
|
|
8467
|
+
parseError?: (oEvent: ManagedObject$ParseErrorEvent) => void;
|
|
8470
8468
|
|
|
8471
8469
|
/**
|
|
8472
8470
|
* Fired when a new value for a bound property should have been propagated from the model, but formatting
|
|
8473
8471
|
* the value failed with an exception.
|
|
8474
8472
|
*/
|
|
8475
|
-
formatError?: (
|
|
8476
|
-
oEvent: Event<ManagedObject$FormatErrorEventParameters>
|
|
8477
|
-
) => void;
|
|
8473
|
+
formatError?: (oEvent: ManagedObject$FormatErrorEvent) => void;
|
|
8478
8474
|
|
|
8479
8475
|
/**
|
|
8480
8476
|
* Fired when models or contexts are changed on this object (either by calling setModel/setBindingContext
|
|
@@ -8510,23 +8506,17 @@ declare module "sap/ui/base/ManagedObject" {
|
|
|
8510
8506
|
oldValue?: any;
|
|
8511
8507
|
}
|
|
8512
8508
|
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
export type $ManagedObjectFormatErrorEventParameters = ManagedObject$FormatErrorEventParameters;
|
|
8518
|
-
|
|
8519
|
-
export type ManagedObject$FormatErrorEvent = Event<ManagedObject$FormatErrorEventParameters>;
|
|
8509
|
+
export type ManagedObject$FormatErrorEvent = Event<
|
|
8510
|
+
ManagedObject$FormatErrorEventParameters,
|
|
8511
|
+
ManagedObject
|
|
8512
|
+
>;
|
|
8520
8513
|
|
|
8521
8514
|
export interface ManagedObject$ModelContextChangeEventParameters {}
|
|
8522
8515
|
|
|
8523
|
-
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
export type $ManagedObjectModelContextChangeEventParameters = ManagedObject$ModelContextChangeEventParameters;
|
|
8528
|
-
|
|
8529
|
-
export type ManagedObject$ModelContextChangeEvent = Event<ManagedObject$ModelContextChangeEventParameters>;
|
|
8516
|
+
export type ManagedObject$ModelContextChangeEvent = Event<
|
|
8517
|
+
ManagedObject$ModelContextChangeEventParameters,
|
|
8518
|
+
ManagedObject
|
|
8519
|
+
>;
|
|
8530
8520
|
|
|
8531
8521
|
export interface ManagedObject$ParseErrorEventParameters {
|
|
8532
8522
|
/**
|
|
@@ -8560,13 +8550,10 @@ declare module "sap/ui/base/ManagedObject" {
|
|
|
8560
8550
|
message?: string;
|
|
8561
8551
|
}
|
|
8562
8552
|
|
|
8563
|
-
|
|
8564
|
-
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
export type $ManagedObjectParseErrorEventParameters = ManagedObject$ParseErrorEventParameters;
|
|
8568
|
-
|
|
8569
|
-
export type ManagedObject$ParseErrorEvent = Event<ManagedObject$ParseErrorEventParameters>;
|
|
8553
|
+
export type ManagedObject$ParseErrorEvent = Event<
|
|
8554
|
+
ManagedObject$ParseErrorEventParameters,
|
|
8555
|
+
ManagedObject
|
|
8556
|
+
>;
|
|
8570
8557
|
|
|
8571
8558
|
export interface ManagedObject$ValidationErrorEventParameters {
|
|
8572
8559
|
/**
|
|
@@ -8600,13 +8587,10 @@ declare module "sap/ui/base/ManagedObject" {
|
|
|
8600
8587
|
message?: string;
|
|
8601
8588
|
}
|
|
8602
8589
|
|
|
8603
|
-
|
|
8604
|
-
|
|
8605
|
-
|
|
8606
|
-
|
|
8607
|
-
export type $ManagedObjectValidationErrorEventParameters = ManagedObject$ValidationErrorEventParameters;
|
|
8608
|
-
|
|
8609
|
-
export type ManagedObject$ValidationErrorEvent = Event<ManagedObject$ValidationErrorEventParameters>;
|
|
8590
|
+
export type ManagedObject$ValidationErrorEvent = Event<
|
|
8591
|
+
ManagedObject$ValidationErrorEventParameters,
|
|
8592
|
+
ManagedObject
|
|
8593
|
+
>;
|
|
8610
8594
|
|
|
8611
8595
|
export interface ManagedObject$ValidationSuccessEventParameters {
|
|
8612
8596
|
/**
|
|
@@ -8638,13 +8622,10 @@ declare module "sap/ui/base/ManagedObject" {
|
|
|
8638
8622
|
oldValue?: any;
|
|
8639
8623
|
}
|
|
8640
8624
|
|
|
8641
|
-
|
|
8642
|
-
|
|
8643
|
-
|
|
8644
|
-
|
|
8645
|
-
export type $ManagedObjectValidationSuccessEventParameters = ManagedObject$ValidationSuccessEventParameters;
|
|
8646
|
-
|
|
8647
|
-
export type ManagedObject$ValidationSuccessEvent = Event<ManagedObject$ValidationSuccessEventParameters>;
|
|
8625
|
+
export type ManagedObject$ValidationSuccessEvent = Event<
|
|
8626
|
+
ManagedObject$ValidationSuccessEventParameters,
|
|
8627
|
+
ManagedObject
|
|
8628
|
+
>;
|
|
8648
8629
|
|
|
8649
8630
|
export namespace MetadataOptions {
|
|
8650
8631
|
/**
|
|
@@ -10977,7 +10958,6 @@ declare module "sap/ui/core/library" {
|
|
|
10977
10958
|
|
|
10978
10959
|
/**
|
|
10979
10960
|
* @since 1.86.0
|
|
10980
|
-
* @experimental (since 1.86)
|
|
10981
10961
|
*
|
|
10982
10962
|
* Marker interface for controls that can be used as content of `sap.ui.layout.form.SemanticFormElement`.
|
|
10983
10963
|
*
|
|
@@ -10992,7 +10972,6 @@ declare module "sap/ui/core/library" {
|
|
|
10992
10972
|
|
|
10993
10973
|
/**
|
|
10994
10974
|
* @since 1.86.0
|
|
10995
|
-
* @experimental (since 1.86)
|
|
10996
10975
|
*
|
|
10997
10976
|
* Returns the formatted value of a control used in a `SemanticFormElement`.
|
|
10998
10977
|
*
|
|
@@ -11007,9 +10986,36 @@ declare module "sap/ui/core/library" {
|
|
|
11007
10986
|
* @returns Formatted value or a `Promise` returning the formatted value if resolved
|
|
11008
10987
|
*/
|
|
11009
10988
|
getFormFormattedValue?(): string | Promise<string>;
|
|
10989
|
+
/**
|
|
10990
|
+
* @since 1.117.0
|
|
10991
|
+
*
|
|
10992
|
+
* Returns the names of the properties of a control that might update the rendering in a `SemanticFormElement`.
|
|
10993
|
+
*
|
|
10994
|
+
* In the `SemanticFormElement` element, the assigned fields are rendered in edit mode. In display mode,
|
|
10995
|
+
* depending on `getFormRenderAsControl`, either a text is rendered, which concatenates the values of all
|
|
10996
|
+
* assigned fields, or the control is rendered. So if a property of the control changes that might lead
|
|
10997
|
+
* to a different rendering (some controls have a special rendering in display mode), the `SemanticFormElement`
|
|
10998
|
+
* needs to check the rendering.
|
|
10999
|
+
*
|
|
11000
|
+
* This is an optional method. If not defined, no check for updates (only for property defined in `getFormValueProperty`)
|
|
11001
|
+
* is done once the control has been assigned.
|
|
11002
|
+
*
|
|
11003
|
+
* @returns Name of the properties
|
|
11004
|
+
*/
|
|
11005
|
+
getFormObservingProperties?(): string[];
|
|
11006
|
+
/**
|
|
11007
|
+
* @since 1.117.0
|
|
11008
|
+
*
|
|
11009
|
+
* If set to `true`, the `SemanticFormElement` also renders the control in display mode, if the used `FormLayout`
|
|
11010
|
+
* supports this.
|
|
11011
|
+
*
|
|
11012
|
+
* This is an optional method. If not defined, just the text is rendered.
|
|
11013
|
+
*
|
|
11014
|
+
* @returns Name of the value-holding property
|
|
11015
|
+
*/
|
|
11016
|
+
getFormRenderAsControl?(): string;
|
|
11010
11017
|
/**
|
|
11011
11018
|
* @since 1.86.0
|
|
11012
|
-
* @experimental (since 1.86)
|
|
11013
11019
|
*
|
|
11014
11020
|
* Returns the name of the value-holding property of a control used in a `SemanticFormElement`.
|
|
11015
11021
|
*
|
|
@@ -12061,13 +12067,10 @@ declare module "sap/ui/core/CommandExecution" {
|
|
|
12061
12067
|
|
|
12062
12068
|
export interface CommandExecution$ExecuteEventParameters {}
|
|
12063
12069
|
|
|
12064
|
-
|
|
12065
|
-
|
|
12066
|
-
|
|
12067
|
-
|
|
12068
|
-
export type $CommandExecutionExecuteEventParameters = CommandExecution$ExecuteEventParameters;
|
|
12069
|
-
|
|
12070
|
-
export type CommandExecution$ExecuteEvent = Event<CommandExecution$ExecuteEventParameters>;
|
|
12070
|
+
export type CommandExecution$ExecuteEvent = Event<
|
|
12071
|
+
CommandExecution$ExecuteEventParameters,
|
|
12072
|
+
CommandExecution
|
|
12073
|
+
>;
|
|
12071
12074
|
}
|
|
12072
12075
|
|
|
12073
12076
|
declare module "sap/ui/core/Component" {
|
|
@@ -13660,7 +13663,7 @@ declare module "sap/ui/core/ComponentContainer" {
|
|
|
13660
13663
|
* Fired when the component instance has been created by the ComponentContainer.
|
|
13661
13664
|
*/
|
|
13662
13665
|
componentCreated?: (
|
|
13663
|
-
oEvent:
|
|
13666
|
+
oEvent: ComponentContainer$ComponentCreatedEvent
|
|
13664
13667
|
) => void;
|
|
13665
13668
|
|
|
13666
13669
|
/**
|
|
@@ -13671,9 +13674,7 @@ declare module "sap/ui/core/ComponentContainer" {
|
|
|
13671
13674
|
* By default, the `ComponentContainer` also logs the error that occurred. Since 1.83, this default behavior
|
|
13672
13675
|
* can be prevented by calling `preventDefault()` on the event object.
|
|
13673
13676
|
*/
|
|
13674
|
-
componentFailed?: (
|
|
13675
|
-
oEvent: Event<ComponentContainer$ComponentFailedEventParameters>
|
|
13676
|
-
) => void;
|
|
13677
|
+
componentFailed?: (oEvent: ComponentContainer$ComponentFailedEvent) => void;
|
|
13677
13678
|
}
|
|
13678
13679
|
|
|
13679
13680
|
export interface ComponentContainer$ComponentCreatedEventParameters {
|
|
@@ -13683,13 +13684,10 @@ declare module "sap/ui/core/ComponentContainer" {
|
|
|
13683
13684
|
component?: UIComponent;
|
|
13684
13685
|
}
|
|
13685
13686
|
|
|
13686
|
-
|
|
13687
|
-
|
|
13688
|
-
|
|
13689
|
-
|
|
13690
|
-
export type $ComponentContainerComponentCreatedEventParameters = ComponentContainer$ComponentCreatedEventParameters;
|
|
13691
|
-
|
|
13692
|
-
export type ComponentContainer$ComponentCreatedEvent = Event<ComponentContainer$ComponentCreatedEventParameters>;
|
|
13687
|
+
export type ComponentContainer$ComponentCreatedEvent = Event<
|
|
13688
|
+
ComponentContainer$ComponentCreatedEventParameters,
|
|
13689
|
+
ComponentContainer
|
|
13690
|
+
>;
|
|
13693
13691
|
|
|
13694
13692
|
export interface ComponentContainer$ComponentFailedEventParameters {
|
|
13695
13693
|
/**
|
|
@@ -13698,13 +13696,10 @@ declare module "sap/ui/core/ComponentContainer" {
|
|
|
13698
13696
|
reason?: object;
|
|
13699
13697
|
}
|
|
13700
13698
|
|
|
13701
|
-
|
|
13702
|
-
|
|
13703
|
-
|
|
13704
|
-
|
|
13705
|
-
export type $ComponentContainerComponentFailedEventParameters = ComponentContainer$ComponentFailedEventParameters;
|
|
13706
|
-
|
|
13707
|
-
export type ComponentContainer$ComponentFailedEvent = Event<ComponentContainer$ComponentFailedEventParameters>;
|
|
13699
|
+
export type ComponentContainer$ComponentFailedEvent = Event<
|
|
13700
|
+
ComponentContainer$ComponentFailedEventParameters,
|
|
13701
|
+
ComponentContainer
|
|
13702
|
+
>;
|
|
13708
13703
|
}
|
|
13709
13704
|
|
|
13710
13705
|
declare module "sap/ui/core/ComponentMetadata" {
|
|
@@ -13988,6 +13983,28 @@ declare module "sap/ui/core/Configuration" {
|
|
|
13988
13983
|
*/
|
|
13989
13984
|
AnimationMode: typeof AnimationMode;
|
|
13990
13985
|
|
|
13986
|
+
/**
|
|
13987
|
+
* @since 1.38.6
|
|
13988
|
+
*
|
|
13989
|
+
* Applies multiple changes to the configuration at once.
|
|
13990
|
+
*
|
|
13991
|
+
* If the changed settings contain localization related settings like `language` or calendarType,
|
|
13992
|
+
* then only a single `localizationChanged` event will be fired. As the framework has to inform all existing
|
|
13993
|
+
* components, elements, models etc. about localization changes, using `applySettings` can significantly
|
|
13994
|
+
* reduce the overhead for multiple changes, esp. when they occur after the UI has been created already.
|
|
13995
|
+
*
|
|
13996
|
+
* The `mSettings` can contain any property `xyz` for which a setter method `setXYZ` exists
|
|
13997
|
+
* in the API of this class. Similarly, values for the {@link sap.ui.core.Configuration.FormatSettings format settings }
|
|
13998
|
+
* API can be provided in a nested object with name `formatSettings`.
|
|
13999
|
+
*
|
|
14000
|
+
* @returns Returns `this` to allow method chaining
|
|
14001
|
+
*/
|
|
14002
|
+
applySettings(
|
|
14003
|
+
/**
|
|
14004
|
+
* Configuration options to apply
|
|
14005
|
+
*/
|
|
14006
|
+
mSettings: object
|
|
14007
|
+
): this;
|
|
13991
14008
|
/**
|
|
13992
14009
|
* Creates a new subclass of class sap.ui.core.Configuration with name `sClassName` and enriches it with
|
|
13993
14010
|
* the information contained in `oClassInfo`.
|
|
@@ -14012,37 +14029,9 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14012
14029
|
FNMetaImpl?: Function
|
|
14013
14030
|
): Function;
|
|
14014
14031
|
/**
|
|
14015
|
-
* Returns
|
|
14016
|
-
*
|
|
14017
|
-
* @returns Metadata object describing this class
|
|
14018
|
-
*/
|
|
14019
|
-
getMetadata(): Metadata;
|
|
14020
|
-
/**
|
|
14021
|
-
* @since 1.38.6
|
|
14022
|
-
*
|
|
14023
|
-
* Applies multiple changes to the configuration at once.
|
|
14024
|
-
*
|
|
14025
|
-
* If the changed settings contain localization related settings like `language` or calendarType,
|
|
14026
|
-
* then only a single `localizationChanged` event will be fired. As the framework has to inform all existing
|
|
14027
|
-
* components, elements, models etc. about localization changes, using `applySettings` can significantly
|
|
14028
|
-
* reduce the overhead for multiple changes, esp. when they occur after the UI has been created already.
|
|
14029
|
-
*
|
|
14030
|
-
* The `mSettings` can contain any property `xyz` for which a setter method `setXYZ` exists
|
|
14031
|
-
* in the API of this class. Similarly, values for the {@link sap.ui.core.Configuration.FormatSettings format settings }
|
|
14032
|
-
* API can be provided in a nested object with name `formatSettings`.
|
|
14033
|
-
*
|
|
14034
|
-
* @returns Returns `this` to allow method chaining
|
|
14035
|
-
*/
|
|
14036
|
-
applySettings(
|
|
14037
|
-
/**
|
|
14038
|
-
* Configuration options to apply
|
|
14039
|
-
*/
|
|
14040
|
-
mSettings: object
|
|
14041
|
-
): this;
|
|
14042
|
-
/**
|
|
14043
|
-
* Returns whether the accessibility mode is used or not.
|
|
14032
|
+
* Returns whether the accessibility mode is enabled or not.
|
|
14044
14033
|
*
|
|
14045
|
-
* @returns whether the accessibility mode is
|
|
14034
|
+
* @returns whether the accessibility mode is enabled or not
|
|
14046
14035
|
*/
|
|
14047
14036
|
getAccessibility(): boolean;
|
|
14048
14037
|
/**
|
|
@@ -14100,6 +14089,8 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14100
14089
|
* @since 1.27.0
|
|
14101
14090
|
*
|
|
14102
14091
|
* Returns whether the framework automatically adds the ARIA role 'application' to the HTML body or not.
|
|
14092
|
+
*
|
|
14093
|
+
* @returns Wether the ARIA role 'application' should be added to the HTML body or not
|
|
14103
14094
|
*/
|
|
14104
14095
|
getAutoAriaBodyRole(): boolean;
|
|
14105
14096
|
/**
|
|
@@ -14110,9 +14101,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14110
14101
|
*
|
|
14111
14102
|
* @returns The calendar week numbering algorithm
|
|
14112
14103
|
*/
|
|
14113
|
-
getCalendarWeekNumbering():
|
|
14114
|
-
| CalendarWeekNumbering
|
|
14115
|
-
| keyof typeof CalendarWeekNumbering;
|
|
14104
|
+
getCalendarWeekNumbering(): CalendarWeekNumbering;
|
|
14116
14105
|
/**
|
|
14117
14106
|
* Returns the used compatibility version for the given feature.
|
|
14118
14107
|
*
|
|
@@ -14187,7 +14176,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14187
14176
|
/**
|
|
14188
14177
|
* Returns a string that identifies the current language.
|
|
14189
14178
|
*
|
|
14190
|
-
* The value returned by
|
|
14179
|
+
* The value returned by config method in most cases corresponds to the exact value that has been configured
|
|
14191
14180
|
* by the user or application or that has been determined from the user agent settings. It has not been
|
|
14192
14181
|
* normalized, but has been validated against a relaxed version of {@link http://www.ietf.org/rfc/bcp/bcp47.txt BCP47},
|
|
14193
14182
|
* allowing underscores ('_') instead of the suggested dashes ('-') and not taking the case of letters into
|
|
@@ -14220,7 +14209,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14220
14209
|
/**
|
|
14221
14210
|
* Returns a BCP47-compliant language tag for the current language.
|
|
14222
14211
|
*
|
|
14223
|
-
* The return value of
|
|
14212
|
+
* The return value of config method is especially useful for an HTTP `Accept-Language` header.
|
|
14224
14213
|
*
|
|
14225
14214
|
* Retrieves the modern locale, e.g. sr-Latn (Serbian (Cyrillic)), he (Hebrew), yi (Yiddish)
|
|
14226
14215
|
*
|
|
@@ -14243,6 +14232,12 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14243
14232
|
* @returns true if a Component should load the manifest first
|
|
14244
14233
|
*/
|
|
14245
14234
|
getManifestFirst(): boolean;
|
|
14235
|
+
/**
|
|
14236
|
+
* Returns a metadata object for class sap.ui.core.Configuration.
|
|
14237
|
+
*
|
|
14238
|
+
* @returns Metadata object describing this class
|
|
14239
|
+
*/
|
|
14240
|
+
getMetadata(): Metadata;
|
|
14246
14241
|
/**
|
|
14247
14242
|
* Returns whether there should be an exception on any duplicate element IDs.
|
|
14248
14243
|
*
|
|
@@ -14368,7 +14363,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14368
14363
|
* the new calendar type. Set it with null to clear the calendar type and the calendar type is calculated
|
|
14369
14364
|
* based on the format settings and current locale.
|
|
14370
14365
|
*/
|
|
14371
|
-
sCalendarType:
|
|
14366
|
+
sCalendarType: CalendarType | null
|
|
14372
14367
|
): this;
|
|
14373
14368
|
/**
|
|
14374
14369
|
* @since 1.113.0
|
|
@@ -14382,9 +14377,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14382
14377
|
/**
|
|
14383
14378
|
* The calendar week numbering algorithm
|
|
14384
14379
|
*/
|
|
14385
|
-
sCalendarWeekNumbering:
|
|
14386
|
-
| CalendarWeekNumbering
|
|
14387
|
-
| keyof typeof CalendarWeekNumbering
|
|
14380
|
+
sCalendarWeekNumbering: CalendarWeekNumbering
|
|
14388
14381
|
): this;
|
|
14389
14382
|
/**
|
|
14390
14383
|
* Sets a new format locale to be used from now on for retrieving locale specific formatters. Modifying
|
|
@@ -14423,7 +14416,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14423
14416
|
* Restrictions:
|
|
14424
14417
|
*
|
|
14425
14418
|
* The framework **does not** guarantee that already created, language dependent objects will be updated
|
|
14426
|
-
* by
|
|
14419
|
+
* by config call. It therefore remains best practice for applications to switch the language early, e.g.
|
|
14427
14420
|
* before any language dependent objects are created. Applications that need to support more dynamic changes
|
|
14428
14421
|
* of the language should listen to the `localizationChanged` event and adapt all language dependent objects
|
|
14429
14422
|
* that they use (e.g. by rebuilding their UI).
|
|
@@ -14446,17 +14439,15 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14446
14439
|
* - the `dir` attribute of the page will be changed to reflect the new mode.
|
|
14447
14440
|
* - all UIAreas will be invalidated (which results in a rendering of the whole UI5 UI)
|
|
14448
14441
|
*
|
|
14449
|
-
*
|
|
14442
|
+
* config method does not accept SAP language codes for `sLanguage`. Instead, a second parameter `sSAPLogonLanguage`
|
|
14450
14443
|
* can be provided with an SAP language code corresponding to the given language. A given value will be
|
|
14451
14444
|
* returned by the {@link #getSAPLogonLanguage} method. It is up to the caller to provide a consistent pair
|
|
14452
14445
|
* of BCP47 language and SAP language code. The SAP language code is only checked to be of length 2 and
|
|
14453
14446
|
* must consist of letters or digits only.
|
|
14454
14447
|
*
|
|
14455
|
-
* **Note**: When using
|
|
14448
|
+
* **Note**: When using config method please take note of and respect the above mentioned restrictions.
|
|
14456
14449
|
* See:
|
|
14457
14450
|
* http://scn.sap.com/docs/DOC-14377
|
|
14458
|
-
*
|
|
14459
|
-
* @returns `this` to allow method chaining
|
|
14460
14451
|
*/
|
|
14461
14452
|
setLanguage(
|
|
14462
14453
|
/**
|
|
@@ -14470,7 +14461,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14470
14461
|
* `sLanguage` as SAP Logon language.
|
|
14471
14462
|
*/
|
|
14472
14463
|
sSAPLogonLanguage?: string
|
|
14473
|
-
):
|
|
14464
|
+
): void;
|
|
14474
14465
|
/**
|
|
14475
14466
|
* Sets the character orientation mode to be used from now on.
|
|
14476
14467
|
*
|
|
@@ -14504,16 +14495,27 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14504
14495
|
*/
|
|
14505
14496
|
aSecurityTokenHandlers: Array<(p1: URI) => Promise<any>>
|
|
14506
14497
|
): void;
|
|
14498
|
+
/**
|
|
14499
|
+
* Allows setting the theme name
|
|
14500
|
+
*
|
|
14501
|
+
* @returns `this` to allow method chaining
|
|
14502
|
+
*/
|
|
14503
|
+
setTheme(
|
|
14504
|
+
/**
|
|
14505
|
+
* the theme name
|
|
14506
|
+
*/
|
|
14507
|
+
sTheme: string
|
|
14508
|
+
): this;
|
|
14507
14509
|
/**
|
|
14508
14510
|
* @since 1.99.0
|
|
14509
14511
|
*
|
|
14510
|
-
* Sets the timezone such that all date and time based calculations use
|
|
14512
|
+
* Sets the timezone such that all date and time based calculations use config timezone.
|
|
14511
14513
|
*
|
|
14512
|
-
* **Important:** It is strongly recommended to only use
|
|
14513
|
-
* a UI5 app. A later adjustment of the time zone should be avoided. It can lead to unexpected
|
|
14514
|
-
* in a running application, because date objects could still be related to a previously
|
|
14515
|
-
* zone. Instead, the app should be completely restarted with the new time zone. For more
|
|
14516
|
-
* {@link https://ui5.sap.com/#/topic/6c9e61dc157a40c19460660ece8368bc Dates, Times, Timestamps, and Time Zones}.
|
|
14514
|
+
* **Important:** It is strongly recommended to only use config API at the earliest point of time while
|
|
14515
|
+
* initializing a UI5 app. A later adjustment of the time zone should be avoided. It can lead to unexpected
|
|
14516
|
+
* data inconsistencies in a running application, because date objects could still be related to a previously
|
|
14517
|
+
* configured time zone. Instead, the app should be completely restarted with the new time zone. For more
|
|
14518
|
+
* information, see {@link https://ui5.sap.com/#/topic/6c9e61dc157a40c19460660ece8368bc Dates, Times, Timestamps, and Time Zones}.
|
|
14517
14519
|
*
|
|
14518
14520
|
* When the timezone has changed, the Core will fire its {@link sap.ui.core.Core#event:localizationChanged localizationChanged }
|
|
14519
14521
|
* event.
|
|
@@ -14601,7 +14603,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14601
14603
|
* Adds custom currencies to the existing entries. E.g. ` { "KWD": {"digits": 3}, "TND" : {"digits": 3 }
|
|
14602
14604
|
* } `
|
|
14603
14605
|
* See:
|
|
14604
|
-
*
|
|
14606
|
+
* #setCustomCurrencies
|
|
14605
14607
|
*
|
|
14606
14608
|
* @returns Returns `this` to allow method chaining
|
|
14607
14609
|
*/
|
|
@@ -14609,18 +14611,25 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14609
14611
|
/**
|
|
14610
14612
|
* adds to the currency map
|
|
14611
14613
|
*/
|
|
14612
|
-
mCurrencies:
|
|
14614
|
+
mCurrencies: object
|
|
14613
14615
|
): this;
|
|
14614
14616
|
/**
|
|
14615
14617
|
* Retrieves the custom currencies. E.g. ` { "KWD": {"digits": 3}, "TND" : {"digits": 3} } `
|
|
14616
14618
|
*
|
|
14617
14619
|
* @returns the mapping between custom currencies and its digits
|
|
14618
14620
|
*/
|
|
14619
|
-
getCustomCurrencies():
|
|
14621
|
+
getCustomCurrencies(): object;
|
|
14620
14622
|
/**
|
|
14621
14623
|
* Returns the currently set date pattern or undefined if no pattern has been defined.
|
|
14624
|
+
*
|
|
14625
|
+
* @returns The resulting date pattern
|
|
14622
14626
|
*/
|
|
14623
|
-
getDatePattern(
|
|
14627
|
+
getDatePattern(
|
|
14628
|
+
/**
|
|
14629
|
+
* The date style (short, medium, long or full)
|
|
14630
|
+
*/
|
|
14631
|
+
sStyle: "short" | "medium" | "long" | "full"
|
|
14632
|
+
): string;
|
|
14624
14633
|
/**
|
|
14625
14634
|
* Returns the locale to be used for formatting.
|
|
14626
14635
|
*
|
|
@@ -14636,9 +14645,10 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14636
14645
|
/**
|
|
14637
14646
|
* Returns the currently set customizing data for Islamic calendar support
|
|
14638
14647
|
*
|
|
14639
|
-
* @returns Returns an array contains the customizing data.
|
|
14648
|
+
* @returns Returns an array contains the customizing data. Each element in the array has properties: dateFormat,
|
|
14649
|
+
* islamicMonthStart, gregDate. For details, please see {@link #setLegacyDateCalendarCustomizing}
|
|
14640
14650
|
*/
|
|
14641
|
-
getLegacyDateCalendarCustomizing():
|
|
14651
|
+
getLegacyDateCalendarCustomizing(): object[];
|
|
14642
14652
|
/**
|
|
14643
14653
|
* Returns the currently set legacy ABAP date format (its id) or undefined if none has been set.
|
|
14644
14654
|
*
|
|
@@ -14688,8 +14698,15 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14688
14698
|
): string;
|
|
14689
14699
|
/**
|
|
14690
14700
|
* Returns the currently set time pattern or undefined if no pattern has been defined.
|
|
14701
|
+
*
|
|
14702
|
+
* @returns The resulting time pattern
|
|
14691
14703
|
*/
|
|
14692
|
-
getTimePattern(
|
|
14704
|
+
getTimePattern(
|
|
14705
|
+
/**
|
|
14706
|
+
* The time style (short, medium, long or full)
|
|
14707
|
+
*/
|
|
14708
|
+
sStyle: "short" | "medium" | "long" | "full"
|
|
14709
|
+
): string;
|
|
14693
14710
|
/**
|
|
14694
14711
|
* @since 1.75.0
|
|
14695
14712
|
*
|
|
@@ -14721,7 +14738,7 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14721
14738
|
/**
|
|
14722
14739
|
* currency map which is set
|
|
14723
14740
|
*/
|
|
14724
|
-
mCurrencies:
|
|
14741
|
+
mCurrencies: object
|
|
14725
14742
|
): this;
|
|
14726
14743
|
/**
|
|
14727
14744
|
* Defines the preferred format pattern for the given date format style.
|
|
@@ -14748,7 +14765,8 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14748
14765
|
sPattern: string
|
|
14749
14766
|
): this;
|
|
14750
14767
|
/**
|
|
14751
|
-
* @deprecated (since 1.113.0) - Use {@link sap.ui.core.Configuration#setCalendarWeekNumbering}
|
|
14768
|
+
* @deprecated (since 1.113.0) - Use {@link sap.ui.core.Configuration.FormatSettings#setCalendarWeekNumbering }
|
|
14769
|
+
* instead.
|
|
14752
14770
|
*
|
|
14753
14771
|
* Defines the day used as the first day of the week.
|
|
14754
14772
|
*
|
|
@@ -14780,7 +14798,20 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14780
14798
|
/**
|
|
14781
14799
|
* contains the customizing data for the support of Islamic calendar.
|
|
14782
14800
|
*/
|
|
14783
|
-
aMappings:
|
|
14801
|
+
aMappings: Array<{
|
|
14802
|
+
/**
|
|
14803
|
+
* The date format
|
|
14804
|
+
*/
|
|
14805
|
+
dateFormat: string;
|
|
14806
|
+
/**
|
|
14807
|
+
* The Islamic date
|
|
14808
|
+
*/
|
|
14809
|
+
islamicMonthStart: string;
|
|
14810
|
+
/**
|
|
14811
|
+
* The corresponding Gregorian date
|
|
14812
|
+
*/
|
|
14813
|
+
gregDate: string;
|
|
14814
|
+
}>
|
|
14784
14815
|
): this;
|
|
14785
14816
|
/**
|
|
14786
14817
|
* Allows to specify one of the legacy ABAP date formats.
|
|
@@ -14921,23 +14952,6 @@ declare module "sap/ui/core/Configuration" {
|
|
|
14921
14952
|
bTrailingCurrencyCode: boolean
|
|
14922
14953
|
): this;
|
|
14923
14954
|
}
|
|
14924
|
-
/**
|
|
14925
|
-
* The object that contains the information for date calendar customizing
|
|
14926
|
-
*/
|
|
14927
|
-
export type LegacyDateCalendarCustomizing = {
|
|
14928
|
-
/**
|
|
14929
|
-
* The IO of the date format. It has value "A" or "B".
|
|
14930
|
-
*/
|
|
14931
|
-
dateFormat: "A" | "B";
|
|
14932
|
-
/**
|
|
14933
|
-
* The Islamic date in format "yyyyMMdd".
|
|
14934
|
-
*/
|
|
14935
|
-
islamicMonthStart: string;
|
|
14936
|
-
/**
|
|
14937
|
-
* The corresponding Gregorian date in format "yyyyMMdd".
|
|
14938
|
-
*/
|
|
14939
|
-
gregDate: string;
|
|
14940
|
-
};
|
|
14941
14955
|
}
|
|
14942
14956
|
|
|
14943
14957
|
declare module "sap/ui/core/Control" {
|
|
@@ -15799,9 +15813,7 @@ declare module "sap/ui/core/Control" {
|
|
|
15799
15813
|
* Listen to this event to validate data of the controls belonging to a field group. See {@link #setFieldGroupIds},
|
|
15800
15814
|
* or consult the {@link https://ui5.sap.com/#/topic/5b0775397e394b1fb973fa207554003e Field Group} documentation.
|
|
15801
15815
|
*/
|
|
15802
|
-
validateFieldGroup?: (
|
|
15803
|
-
oEvent: Event<Control$ValidateFieldGroupEventParameters>
|
|
15804
|
-
) => void;
|
|
15816
|
+
validateFieldGroup?: (oEvent: Control$ValidateFieldGroupEvent) => void;
|
|
15805
15817
|
}
|
|
15806
15818
|
|
|
15807
15819
|
export interface Control$ValidateFieldGroupEventParameters {
|
|
@@ -15811,13 +15823,10 @@ declare module "sap/ui/core/Control" {
|
|
|
15811
15823
|
fieldGroupIds?: string[];
|
|
15812
15824
|
}
|
|
15813
15825
|
|
|
15814
|
-
|
|
15815
|
-
|
|
15816
|
-
|
|
15817
|
-
|
|
15818
|
-
export type $ControlValidateFieldGroupEventParameters = Control$ValidateFieldGroupEventParameters;
|
|
15819
|
-
|
|
15820
|
-
export type Control$ValidateFieldGroupEvent = Event<Control$ValidateFieldGroupEventParameters>;
|
|
15826
|
+
export type Control$ValidateFieldGroupEvent = Event<
|
|
15827
|
+
Control$ValidateFieldGroupEventParameters,
|
|
15828
|
+
Control
|
|
15829
|
+
>;
|
|
15821
15830
|
}
|
|
15822
15831
|
|
|
15823
15832
|
declare module "sap/ui/core/ElementMetadata" {
|
|
@@ -18009,53 +18018,38 @@ declare module "sap/ui/core/delegate/ItemNavigation" {
|
|
|
18009
18018
|
|
|
18010
18019
|
export interface ItemNavigation$AfterFocusEventParameters {}
|
|
18011
18020
|
|
|
18012
|
-
|
|
18013
|
-
|
|
18014
|
-
|
|
18015
|
-
|
|
18016
|
-
export type $ItemNavigationAfterFocusEventParameters = ItemNavigation$AfterFocusEventParameters;
|
|
18017
|
-
|
|
18018
|
-
export type ItemNavigation$AfterFocusEvent = Event<ItemNavigation$AfterFocusEventParameters>;
|
|
18021
|
+
export type ItemNavigation$AfterFocusEvent = Event<
|
|
18022
|
+
ItemNavigation$AfterFocusEventParameters,
|
|
18023
|
+
ItemNavigation
|
|
18024
|
+
>;
|
|
18019
18025
|
|
|
18020
18026
|
export interface ItemNavigation$BeforeFocusEventParameters {}
|
|
18021
18027
|
|
|
18022
|
-
|
|
18023
|
-
|
|
18024
|
-
|
|
18025
|
-
|
|
18026
|
-
export type $ItemNavigationBeforeFocusEventParameters = ItemNavigation$BeforeFocusEventParameters;
|
|
18027
|
-
|
|
18028
|
-
export type ItemNavigation$BeforeFocusEvent = Event<ItemNavigation$BeforeFocusEventParameters>;
|
|
18028
|
+
export type ItemNavigation$BeforeFocusEvent = Event<
|
|
18029
|
+
ItemNavigation$BeforeFocusEventParameters,
|
|
18030
|
+
ItemNavigation
|
|
18031
|
+
>;
|
|
18029
18032
|
|
|
18030
18033
|
export interface ItemNavigation$BorderReachedEventParameters {}
|
|
18031
18034
|
|
|
18032
|
-
|
|
18033
|
-
|
|
18034
|
-
|
|
18035
|
-
|
|
18036
|
-
export type $ItemNavigationBorderReachedEventParameters = ItemNavigation$BorderReachedEventParameters;
|
|
18037
|
-
|
|
18038
|
-
export type ItemNavigation$BorderReachedEvent = Event<ItemNavigation$BorderReachedEventParameters>;
|
|
18035
|
+
export type ItemNavigation$BorderReachedEvent = Event<
|
|
18036
|
+
ItemNavigation$BorderReachedEventParameters,
|
|
18037
|
+
ItemNavigation
|
|
18038
|
+
>;
|
|
18039
18039
|
|
|
18040
18040
|
export interface ItemNavigation$FocusAgainEventParameters {}
|
|
18041
18041
|
|
|
18042
|
-
|
|
18043
|
-
|
|
18044
|
-
|
|
18045
|
-
|
|
18046
|
-
export type $ItemNavigationFocusAgainEventParameters = ItemNavigation$FocusAgainEventParameters;
|
|
18047
|
-
|
|
18048
|
-
export type ItemNavigation$FocusAgainEvent = Event<ItemNavigation$FocusAgainEventParameters>;
|
|
18042
|
+
export type ItemNavigation$FocusAgainEvent = Event<
|
|
18043
|
+
ItemNavigation$FocusAgainEventParameters,
|
|
18044
|
+
ItemNavigation
|
|
18045
|
+
>;
|
|
18049
18046
|
|
|
18050
18047
|
export interface ItemNavigation$FocusLeaveEventParameters {}
|
|
18051
18048
|
|
|
18052
|
-
|
|
18053
|
-
|
|
18054
|
-
|
|
18055
|
-
|
|
18056
|
-
export type $ItemNavigationFocusLeaveEventParameters = ItemNavigation$FocusLeaveEventParameters;
|
|
18057
|
-
|
|
18058
|
-
export type ItemNavigation$FocusLeaveEvent = Event<ItemNavigation$FocusLeaveEventParameters>;
|
|
18049
|
+
export type ItemNavigation$FocusLeaveEvent = Event<
|
|
18050
|
+
ItemNavigation$FocusLeaveEventParameters,
|
|
18051
|
+
ItemNavigation
|
|
18052
|
+
>;
|
|
18059
18053
|
}
|
|
18060
18054
|
|
|
18061
18055
|
declare module "sap/ui/core/delegate/ScrollEnablement" {
|
|
@@ -18834,7 +18828,7 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
|
|
|
18834
18828
|
/**
|
|
18835
18829
|
* This event is fired when the user starts dragging an element.
|
|
18836
18830
|
*/
|
|
18837
|
-
dragStart?: (oEvent:
|
|
18831
|
+
dragStart?: (oEvent: DragDropInfo$DragStartEvent) => void;
|
|
18838
18832
|
|
|
18839
18833
|
/**
|
|
18840
18834
|
* @since 1.56
|
|
@@ -18846,13 +18840,10 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
|
|
|
18846
18840
|
|
|
18847
18841
|
export interface DragDropInfo$DragEndEventParameters {}
|
|
18848
18842
|
|
|
18849
|
-
|
|
18850
|
-
|
|
18851
|
-
|
|
18852
|
-
|
|
18853
|
-
export type $DragDropInfoDragEndEventParameters = DragDropInfo$DragEndEventParameters;
|
|
18854
|
-
|
|
18855
|
-
export type DragDropInfo$DragEndEvent = Event<DragDropInfo$DragEndEventParameters>;
|
|
18843
|
+
export type DragDropInfo$DragEndEvent = Event<
|
|
18844
|
+
DragDropInfo$DragEndEventParameters,
|
|
18845
|
+
DragDropInfo
|
|
18846
|
+
>;
|
|
18856
18847
|
|
|
18857
18848
|
export interface DragDropInfo$DragStartEventParameters {
|
|
18858
18849
|
/**
|
|
@@ -18871,13 +18862,10 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
|
|
|
18871
18862
|
browserEvent?: Event;
|
|
18872
18863
|
}
|
|
18873
18864
|
|
|
18874
|
-
|
|
18875
|
-
|
|
18876
|
-
|
|
18877
|
-
|
|
18878
|
-
export type $DragDropInfoDragStartEventParameters = DragDropInfo$DragStartEventParameters;
|
|
18879
|
-
|
|
18880
|
-
export type DragDropInfo$DragStartEvent = Event<DragDropInfo$DragStartEventParameters>;
|
|
18865
|
+
export type DragDropInfo$DragStartEvent = Event<
|
|
18866
|
+
DragDropInfo$DragStartEventParameters,
|
|
18867
|
+
DragDropInfo
|
|
18868
|
+
>;
|
|
18881
18869
|
}
|
|
18882
18870
|
|
|
18883
18871
|
declare module "sap/ui/core/dnd/DragInfo" {
|
|
@@ -18892,12 +18880,12 @@ declare module "sap/ui/core/dnd/DragInfo" {
|
|
|
18892
18880
|
|
|
18893
18881
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
18894
18882
|
|
|
18895
|
-
import Event from "sap/ui/base/Event";
|
|
18896
|
-
|
|
18897
18883
|
import UI5Element from "sap/ui/core/Element";
|
|
18898
18884
|
|
|
18899
18885
|
import { DragSession } from "sap/ui/core/dnd/DragAndDrop";
|
|
18900
18886
|
|
|
18887
|
+
import Event from "sap/ui/base/Event";
|
|
18888
|
+
|
|
18901
18889
|
/**
|
|
18902
18890
|
* @since 1.56
|
|
18903
18891
|
*
|
|
@@ -19165,14 +19153,14 @@ declare module "sap/ui/core/dnd/DragInfo" {
|
|
|
19165
19153
|
/**
|
|
19166
19154
|
* This event is fired when the user starts dragging an element.
|
|
19167
19155
|
*/
|
|
19168
|
-
dragStart?: (oEvent:
|
|
19156
|
+
dragStart?: (oEvent: DragInfo$DragStartEvent) => void;
|
|
19169
19157
|
|
|
19170
19158
|
/**
|
|
19171
19159
|
* @since 1.56
|
|
19172
19160
|
*
|
|
19173
19161
|
* This event is fired when a drag operation is being ended.
|
|
19174
19162
|
*/
|
|
19175
|
-
dragEnd?: (oEvent:
|
|
19163
|
+
dragEnd?: (oEvent: DragInfo$DragEndEvent) => void;
|
|
19176
19164
|
}
|
|
19177
19165
|
|
|
19178
19166
|
export interface DragInfo$DragEndEventParameters {
|
|
@@ -19192,13 +19180,10 @@ declare module "sap/ui/core/dnd/DragInfo" {
|
|
|
19192
19180
|
browserEvent?: Event;
|
|
19193
19181
|
}
|
|
19194
19182
|
|
|
19195
|
-
|
|
19196
|
-
|
|
19197
|
-
|
|
19198
|
-
|
|
19199
|
-
export type $DragInfoDragEndEventParameters = DragInfo$DragEndEventParameters;
|
|
19200
|
-
|
|
19201
|
-
export type DragInfo$DragEndEvent = Event<DragInfo$DragEndEventParameters>;
|
|
19183
|
+
export type DragInfo$DragEndEvent = Event<
|
|
19184
|
+
DragInfo$DragEndEventParameters,
|
|
19185
|
+
DragInfo
|
|
19186
|
+
>;
|
|
19202
19187
|
|
|
19203
19188
|
export interface DragInfo$DragStartEventParameters {
|
|
19204
19189
|
/**
|
|
@@ -19217,13 +19202,10 @@ declare module "sap/ui/core/dnd/DragInfo" {
|
|
|
19217
19202
|
browserEvent?: Event;
|
|
19218
19203
|
}
|
|
19219
19204
|
|
|
19220
|
-
|
|
19221
|
-
|
|
19222
|
-
|
|
19223
|
-
|
|
19224
|
-
export type $DragInfoDragStartEventParameters = DragInfo$DragStartEventParameters;
|
|
19225
|
-
|
|
19226
|
-
export type DragInfo$DragStartEvent = Event<DragInfo$DragStartEventParameters>;
|
|
19205
|
+
export type DragInfo$DragStartEvent = Event<
|
|
19206
|
+
DragInfo$DragStartEventParameters,
|
|
19207
|
+
DragInfo
|
|
19208
|
+
>;
|
|
19227
19209
|
}
|
|
19228
19210
|
|
|
19229
19211
|
declare module "sap/ui/core/dnd/DragAndDrop" {
|
|
@@ -19385,12 +19367,12 @@ declare module "sap/ui/core/dnd/DropInfo" {
|
|
|
19385
19367
|
|
|
19386
19368
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
19387
19369
|
|
|
19388
|
-
import Event from "sap/ui/base/Event";
|
|
19389
|
-
|
|
19390
19370
|
import UI5Element from "sap/ui/core/Element";
|
|
19391
19371
|
|
|
19392
19372
|
import { DragSession } from "sap/ui/core/dnd/DragAndDrop";
|
|
19393
19373
|
|
|
19374
|
+
import Event from "sap/ui/base/Event";
|
|
19375
|
+
|
|
19394
19376
|
/**
|
|
19395
19377
|
* @since 1.56
|
|
19396
19378
|
*
|
|
@@ -19841,20 +19823,20 @@ declare module "sap/ui/core/dnd/DropInfo" {
|
|
|
19841
19823
|
/**
|
|
19842
19824
|
* This event is fired when a dragged element enters a drop target.
|
|
19843
19825
|
*/
|
|
19844
|
-
dragEnter?: (oEvent:
|
|
19826
|
+
dragEnter?: (oEvent: DropInfo$DragEnterEvent) => void;
|
|
19845
19827
|
|
|
19846
19828
|
/**
|
|
19847
19829
|
* @since 1.56
|
|
19848
19830
|
*
|
|
19849
19831
|
* This event is fired when an element is being dragged over a valid drop target.
|
|
19850
19832
|
*/
|
|
19851
|
-
dragOver?: (oEvent:
|
|
19833
|
+
dragOver?: (oEvent: DropInfo$DragOverEvent) => void;
|
|
19852
19834
|
|
|
19853
19835
|
/**
|
|
19854
19836
|
* This event is fired when an element is dropped on a valid drop target, as specified by the drag-and-drop
|
|
19855
19837
|
* info.
|
|
19856
19838
|
*/
|
|
19857
|
-
drop?: (oEvent:
|
|
19839
|
+
drop?: (oEvent: DropInfo$DropEvent) => void;
|
|
19858
19840
|
}
|
|
19859
19841
|
|
|
19860
19842
|
export interface DropInfo$DragEnterEventParameters {
|
|
@@ -19874,13 +19856,10 @@ declare module "sap/ui/core/dnd/DropInfo" {
|
|
|
19874
19856
|
browserEvent?: Event;
|
|
19875
19857
|
}
|
|
19876
19858
|
|
|
19877
|
-
|
|
19878
|
-
|
|
19879
|
-
|
|
19880
|
-
|
|
19881
|
-
export type $DropInfoDragEnterEventParameters = DropInfo$DragEnterEventParameters;
|
|
19882
|
-
|
|
19883
|
-
export type DropInfo$DragEnterEvent = Event<DropInfo$DragEnterEventParameters>;
|
|
19859
|
+
export type DropInfo$DragEnterEvent = Event<
|
|
19860
|
+
DropInfo$DragEnterEventParameters,
|
|
19861
|
+
DropInfo
|
|
19862
|
+
>;
|
|
19884
19863
|
|
|
19885
19864
|
export interface DropInfo$DragOverEventParameters {
|
|
19886
19865
|
/**
|
|
@@ -19906,13 +19885,10 @@ declare module "sap/ui/core/dnd/DropInfo" {
|
|
|
19906
19885
|
browserEvent?: Event;
|
|
19907
19886
|
}
|
|
19908
19887
|
|
|
19909
|
-
|
|
19910
|
-
|
|
19911
|
-
|
|
19912
|
-
|
|
19913
|
-
export type $DropInfoDragOverEventParameters = DropInfo$DragOverEventParameters;
|
|
19914
|
-
|
|
19915
|
-
export type DropInfo$DragOverEvent = Event<DropInfo$DragOverEventParameters>;
|
|
19888
|
+
export type DropInfo$DragOverEvent = Event<
|
|
19889
|
+
DropInfo$DragOverEventParameters,
|
|
19890
|
+
DropInfo
|
|
19891
|
+
>;
|
|
19916
19892
|
|
|
19917
19893
|
export interface DropInfo$DropEventParameters {
|
|
19918
19894
|
/**
|
|
@@ -19943,13 +19919,10 @@ declare module "sap/ui/core/dnd/DropInfo" {
|
|
|
19943
19919
|
browserEvent?: Event;
|
|
19944
19920
|
}
|
|
19945
19921
|
|
|
19946
|
-
|
|
19947
|
-
|
|
19948
|
-
|
|
19949
|
-
|
|
19950
|
-
export type $DropInfoDropEventParameters = DropInfo$DropEventParameters;
|
|
19951
|
-
|
|
19952
|
-
export type DropInfo$DropEvent = Event<DropInfo$DropEventParameters>;
|
|
19922
|
+
export type DropInfo$DropEvent = Event<
|
|
19923
|
+
DropInfo$DropEventParameters,
|
|
19924
|
+
DropInfo
|
|
19925
|
+
>;
|
|
19953
19926
|
}
|
|
19954
19927
|
|
|
19955
19928
|
declare module "sap/ui/core/Element" {
|
|
@@ -21611,9 +21584,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
21611
21584
|
* since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
21612
21585
|
* and `oFormatOptions.minimalDaysInFirstWeek`.
|
|
21613
21586
|
*/
|
|
21614
|
-
calendarWeekNumbering?:
|
|
21615
|
-
| CalendarWeekNumbering
|
|
21616
|
-
| keyof typeof CalendarWeekNumbering;
|
|
21587
|
+
calendarWeekNumbering?: CalendarWeekNumbering;
|
|
21617
21588
|
/**
|
|
21618
21589
|
* since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
21619
21590
|
* the value taken from the locale is used
|
|
@@ -21692,7 +21663,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
21692
21663
|
* The calender type which is used to format and parse the date. This value is by default either set in
|
|
21693
21664
|
* configuration or calculated based on current locale.
|
|
21694
21665
|
*/
|
|
21695
|
-
calendarType?: CalendarType
|
|
21666
|
+
calendarType?: CalendarType;
|
|
21696
21667
|
},
|
|
21697
21668
|
/**
|
|
21698
21669
|
* Locale to ask for locale specific texts/settings
|
|
@@ -21724,9 +21695,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
21724
21695
|
* since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
21725
21696
|
* and `oFormatOptions.minimalDaysInFirstWeek`.
|
|
21726
21697
|
*/
|
|
21727
|
-
calendarWeekNumbering?:
|
|
21728
|
-
| CalendarWeekNumbering
|
|
21729
|
-
| keyof typeof CalendarWeekNumbering;
|
|
21698
|
+
calendarWeekNumbering?: CalendarWeekNumbering;
|
|
21730
21699
|
/**
|
|
21731
21700
|
* since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
21732
21701
|
* the value taken from the locale is used
|
|
@@ -21808,7 +21777,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
21808
21777
|
* The calender type which is used to format and parse the date. This value is by default either set in
|
|
21809
21778
|
* configuration or calculated based on current locale.
|
|
21810
21779
|
*/
|
|
21811
|
-
calendarType?: CalendarType
|
|
21780
|
+
calendarType?: CalendarType;
|
|
21812
21781
|
},
|
|
21813
21782
|
/**
|
|
21814
21783
|
* Locale to ask for locale specific texts/settings
|
|
@@ -21842,9 +21811,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
21842
21811
|
* since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
21843
21812
|
* and `oFormatOptions.minimalDaysInFirstWeek`.
|
|
21844
21813
|
*/
|
|
21845
|
-
calendarWeekNumbering?:
|
|
21846
|
-
| CalendarWeekNumbering
|
|
21847
|
-
| keyof typeof CalendarWeekNumbering;
|
|
21814
|
+
calendarWeekNumbering?: CalendarWeekNumbering;
|
|
21848
21815
|
/**
|
|
21849
21816
|
* since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
21850
21817
|
* the value taken from the locale is used
|
|
@@ -21917,7 +21884,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
21917
21884
|
* The calendar type which is used to format and parse the date. This value is by default either set in
|
|
21918
21885
|
* the configuration or calculated based on the current locale.
|
|
21919
21886
|
*/
|
|
21920
|
-
calendarType?: CalendarType
|
|
21887
|
+
calendarType?: CalendarType;
|
|
21921
21888
|
},
|
|
21922
21889
|
/**
|
|
21923
21890
|
* Locale to ask for locale-specific texts/settings
|
|
@@ -21951,9 +21918,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
21951
21918
|
* since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
|
|
21952
21919
|
* and `oFormatOptions.minimalDaysInFirstWeek`.
|
|
21953
21920
|
*/
|
|
21954
|
-
calendarWeekNumbering?:
|
|
21955
|
-
| CalendarWeekNumbering
|
|
21956
|
-
| keyof typeof CalendarWeekNumbering;
|
|
21921
|
+
calendarWeekNumbering?: CalendarWeekNumbering;
|
|
21957
21922
|
/**
|
|
21958
21923
|
* since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
|
|
21959
21924
|
* the value taken from the locale is used
|
|
@@ -22032,7 +21997,7 @@ declare module "sap/ui/core/format/DateFormat" {
|
|
|
22032
21997
|
* The calender type which is used to format and parse the date. This value is by default either set in
|
|
22033
21998
|
* configuration or calculated based on current locale.
|
|
22034
21999
|
*/
|
|
22035
|
-
calendarType?: CalendarType
|
|
22000
|
+
calendarType?: CalendarType;
|
|
22036
22001
|
},
|
|
22037
22002
|
/**
|
|
22038
22003
|
* Locale to ask for locale specific texts/settings
|
|
@@ -24053,9 +24018,7 @@ declare module "sap/ui/core/HTML" {
|
|
|
24053
24018
|
* When the control doesn't have string content and no preserved DOM existed for this control, then this
|
|
24054
24019
|
* event will fire, but there won't be a DOM node for this control.
|
|
24055
24020
|
*/
|
|
24056
|
-
afterRendering?: (
|
|
24057
|
-
oEvent: Event<HTML$AfterRenderingEventParameters>
|
|
24058
|
-
) => void;
|
|
24021
|
+
afterRendering?: (oEvent: HTML$AfterRenderingEvent) => void;
|
|
24059
24022
|
}
|
|
24060
24023
|
|
|
24061
24024
|
export interface HTML$AfterRenderingEventParameters {
|
|
@@ -24066,13 +24029,10 @@ declare module "sap/ui/core/HTML" {
|
|
|
24066
24029
|
isPreservedDOM?: boolean;
|
|
24067
24030
|
}
|
|
24068
24031
|
|
|
24069
|
-
|
|
24070
|
-
|
|
24071
|
-
|
|
24072
|
-
|
|
24073
|
-
export type $HTMLAfterRenderingEventParameters = HTML$AfterRenderingEventParameters;
|
|
24074
|
-
|
|
24075
|
-
export type HTML$AfterRenderingEvent = Event<HTML$AfterRenderingEventParameters>;
|
|
24032
|
+
export type HTML$AfterRenderingEvent = Event<
|
|
24033
|
+
HTML$AfterRenderingEventParameters,
|
|
24034
|
+
HTML
|
|
24035
|
+
>;
|
|
24076
24036
|
}
|
|
24077
24037
|
|
|
24078
24038
|
declare module "sap/ui/core/hyphenation/Hyphenation" {
|
|
@@ -24337,7 +24297,7 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
|
|
|
24337
24297
|
/**
|
|
24338
24298
|
* Fired if an error with initialization or hyphenation occurs.
|
|
24339
24299
|
*/
|
|
24340
|
-
error?: (oEvent:
|
|
24300
|
+
error?: (oEvent: Hyphenation$ErrorEvent) => void;
|
|
24341
24301
|
}
|
|
24342
24302
|
|
|
24343
24303
|
export interface Hyphenation$ErrorEventParameters {
|
|
@@ -24347,13 +24307,10 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
|
|
|
24347
24307
|
sErrorMessage?: string;
|
|
24348
24308
|
}
|
|
24349
24309
|
|
|
24350
|
-
|
|
24351
|
-
|
|
24352
|
-
|
|
24353
|
-
|
|
24354
|
-
export type $HyphenationErrorEventParameters = Hyphenation$ErrorEventParameters;
|
|
24355
|
-
|
|
24356
|
-
export type Hyphenation$ErrorEvent = Event<Hyphenation$ErrorEventParameters>;
|
|
24310
|
+
export type Hyphenation$ErrorEvent = Event<
|
|
24311
|
+
Hyphenation$ErrorEventParameters,
|
|
24312
|
+
Hyphenation
|
|
24313
|
+
>;
|
|
24357
24314
|
}
|
|
24358
24315
|
|
|
24359
24316
|
declare module "sap/ui/core/Icon" {
|
|
@@ -25089,13 +25046,7 @@ declare module "sap/ui/core/Icon" {
|
|
|
25089
25046
|
|
|
25090
25047
|
export interface Icon$PressEventParameters {}
|
|
25091
25048
|
|
|
25092
|
-
|
|
25093
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Icon$PressEventParameters'
|
|
25094
|
-
* in 1.115.1 and any later releases.
|
|
25095
|
-
*/
|
|
25096
|
-
export type $IconPressEventParameters = Icon$PressEventParameters;
|
|
25097
|
-
|
|
25098
|
-
export type Icon$PressEvent = Event<Icon$PressEventParameters>;
|
|
25049
|
+
export type Icon$PressEvent = Event<Icon$PressEventParameters, Icon>;
|
|
25099
25050
|
}
|
|
25100
25051
|
|
|
25101
25052
|
declare module "sap/ui/core/IconPool" {
|
|
@@ -26494,7 +26445,7 @@ declare module "sap/ui/core/Locale" {
|
|
|
26494
26445
|
/**
|
|
26495
26446
|
* the locale identifier, in format en-US or en_US.
|
|
26496
26447
|
*/
|
|
26497
|
-
|
|
26448
|
+
sLocale: string
|
|
26498
26449
|
);
|
|
26499
26450
|
|
|
26500
26451
|
/**
|
|
@@ -26532,7 +26483,7 @@ declare module "sap/ui/core/Locale" {
|
|
|
26532
26483
|
* The extension always consists of a singleton character (not 'x'), a dash '-' and one or more extension
|
|
26533
26484
|
* token, each separated again with a dash.
|
|
26534
26485
|
*
|
|
26535
|
-
* Use {@link #
|
|
26486
|
+
* Use {@link #getExtensions} to get the individual extension tokens as an array.
|
|
26536
26487
|
*
|
|
26537
26488
|
* @returns the extension or `null`
|
|
26538
26489
|
*/
|
|
@@ -26726,7 +26677,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26726
26677
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26727
26678
|
* or calculated from locale.
|
|
26728
26679
|
*/
|
|
26729
|
-
sCalendarType?: CalendarType
|
|
26680
|
+
sCalendarType?: CalendarType
|
|
26730
26681
|
): string;
|
|
26731
26682
|
/**
|
|
26732
26683
|
* @since 1.46
|
|
@@ -26747,7 +26698,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26747
26698
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26748
26699
|
* or calculated from locale.
|
|
26749
26700
|
*/
|
|
26750
|
-
sCalendarType?: CalendarType
|
|
26701
|
+
sCalendarType?: CalendarType
|
|
26751
26702
|
): string;
|
|
26752
26703
|
/**
|
|
26753
26704
|
* @since 1.27.0
|
|
@@ -26859,7 +26810,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26859
26810
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26860
26811
|
* or calculated from locale.
|
|
26861
26812
|
*/
|
|
26862
|
-
sCalendarType?: CalendarType
|
|
26813
|
+
sCalendarType?: CalendarType
|
|
26863
26814
|
): string;
|
|
26864
26815
|
/**
|
|
26865
26816
|
* @since 1.46
|
|
@@ -26892,7 +26843,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26892
26843
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26893
26844
|
* or calculated from locale.
|
|
26894
26845
|
*/
|
|
26895
|
-
sCalendarType?: CalendarType
|
|
26846
|
+
sCalendarType?: CalendarType
|
|
26896
26847
|
): string | string[];
|
|
26897
26848
|
/**
|
|
26898
26849
|
* Get date pattern in format "short", "medium", "long" or "full".
|
|
@@ -26908,7 +26859,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26908
26859
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26909
26860
|
* or calculated from locale.
|
|
26910
26861
|
*/
|
|
26911
|
-
sCalendarType?: CalendarType
|
|
26862
|
+
sCalendarType?: CalendarType
|
|
26912
26863
|
): string;
|
|
26913
26864
|
/**
|
|
26914
26865
|
* Get datetime pattern in style "short", "medium", "long" or "full".
|
|
@@ -26924,7 +26875,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26924
26875
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26925
26876
|
* or calculated from locale.
|
|
26926
26877
|
*/
|
|
26927
|
-
sCalendarType?: CalendarType
|
|
26878
|
+
sCalendarType?: CalendarType
|
|
26928
26879
|
): string;
|
|
26929
26880
|
/**
|
|
26930
26881
|
* Get day periods in width "narrow", "abbreviated" or "wide".
|
|
@@ -26940,7 +26891,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26940
26891
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26941
26892
|
* or calculated from locale.
|
|
26942
26893
|
*/
|
|
26943
|
-
sCalendarType?: CalendarType
|
|
26894
|
+
sCalendarType?: CalendarType
|
|
26944
26895
|
): any[];
|
|
26945
26896
|
/**
|
|
26946
26897
|
* Get standalone day periods in width "narrow", "abbreviated" or "wide".
|
|
@@ -26956,7 +26907,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26956
26907
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26957
26908
|
* or calculated from locale.
|
|
26958
26909
|
*/
|
|
26959
|
-
sCalendarType?: CalendarType
|
|
26910
|
+
sCalendarType?: CalendarType
|
|
26960
26911
|
): any[];
|
|
26961
26912
|
/**
|
|
26962
26913
|
* Get day names in width "narrow", "abbreviated" or "wide".
|
|
@@ -26972,7 +26923,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26972
26923
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26973
26924
|
* or calculated from locale.
|
|
26974
26925
|
*/
|
|
26975
|
-
sCalendarType?: CalendarType
|
|
26926
|
+
sCalendarType?: CalendarType
|
|
26976
26927
|
): any[];
|
|
26977
26928
|
/**
|
|
26978
26929
|
* Get standalone day names in width "narrow", "abbreviated" or "wide".
|
|
@@ -26988,7 +26939,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
26988
26939
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
26989
26940
|
* or calculated from locale.
|
|
26990
26941
|
*/
|
|
26991
|
-
sCalendarType?: CalendarType
|
|
26942
|
+
sCalendarType?: CalendarType
|
|
26992
26943
|
): any[];
|
|
26993
26944
|
/**
|
|
26994
26945
|
* @since 1.25.0
|
|
@@ -27044,7 +26995,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27044
26995
|
/**
|
|
27045
26996
|
* the type of calendar
|
|
27046
26997
|
*/
|
|
27047
|
-
sCalendarType?: CalendarType
|
|
26998
|
+
sCalendarType?: CalendarType
|
|
27048
26999
|
): any[];
|
|
27049
27000
|
/**
|
|
27050
27001
|
* @since 1.32.0
|
|
@@ -27061,7 +27012,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27061
27012
|
/**
|
|
27062
27013
|
* the type of calendar
|
|
27063
27014
|
*/
|
|
27064
|
-
sCalendarType?: CalendarType
|
|
27015
|
+
sCalendarType?: CalendarType
|
|
27065
27016
|
): any[];
|
|
27066
27017
|
/**
|
|
27067
27018
|
* Returns the day that usually is regarded as the first day of a week in the current locale.
|
|
@@ -27094,7 +27045,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27094
27045
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
27095
27046
|
* or calculated from locale.
|
|
27096
27047
|
*/
|
|
27097
|
-
sCalendarType?: CalendarType
|
|
27048
|
+
sCalendarType?: CalendarType
|
|
27098
27049
|
): string;
|
|
27099
27050
|
/**
|
|
27100
27051
|
* Get locale specific language names.
|
|
@@ -27152,7 +27103,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27152
27103
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
27153
27104
|
* or calculated from locale.
|
|
27154
27105
|
*/
|
|
27155
|
-
sCalendarType?: CalendarType
|
|
27106
|
+
sCalendarType?: CalendarType
|
|
27156
27107
|
): any[];
|
|
27157
27108
|
/**
|
|
27158
27109
|
* Get standalone month names in width "narrow", "abbreviated" or "wide".
|
|
@@ -27168,7 +27119,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27168
27119
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
27169
27120
|
* or calculated from locale.
|
|
27170
27121
|
*/
|
|
27171
|
-
sCalendarType?: CalendarType
|
|
27122
|
+
sCalendarType?: CalendarType
|
|
27172
27123
|
): any[];
|
|
27173
27124
|
/**
|
|
27174
27125
|
* Get number symbol "decimal", "group", "plusSign", "minusSign", "percentSign".
|
|
@@ -27232,7 +27183,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27232
27183
|
*
|
|
27233
27184
|
* @returns the preferred calendar type
|
|
27234
27185
|
*/
|
|
27235
|
-
getPreferredCalendarType(): CalendarType
|
|
27186
|
+
getPreferredCalendarType(): CalendarType;
|
|
27236
27187
|
/**
|
|
27237
27188
|
* @since 1.34
|
|
27238
27189
|
*
|
|
@@ -27255,7 +27206,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27255
27206
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
27256
27207
|
* or calculated from locale.
|
|
27257
27208
|
*/
|
|
27258
|
-
sCalendarType?: CalendarType
|
|
27209
|
+
sCalendarType?: CalendarType
|
|
27259
27210
|
): any[];
|
|
27260
27211
|
/**
|
|
27261
27212
|
* Get standalone quarter names in width "narrow", "abbreviated" or "wide".
|
|
@@ -27271,7 +27222,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27271
27222
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
27272
27223
|
* or calculated from locale.
|
|
27273
27224
|
*/
|
|
27274
|
-
sCalendarType?: CalendarType
|
|
27225
|
+
sCalendarType?: CalendarType
|
|
27275
27226
|
): any[];
|
|
27276
27227
|
/**
|
|
27277
27228
|
* @since 1.25.0
|
|
@@ -27507,7 +27458,7 @@ declare module "sap/ui/core/LocaleData" {
|
|
|
27507
27458
|
* the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
|
|
27508
27459
|
* or calculated from locale.
|
|
27509
27460
|
*/
|
|
27510
|
-
sCalendarType?: CalendarType
|
|
27461
|
+
sCalendarType?: CalendarType
|
|
27511
27462
|
): string;
|
|
27512
27463
|
/**
|
|
27513
27464
|
* @since 1.54
|
|
@@ -28862,13 +28813,10 @@ declare module "sap/ui/core/message/MessageProcessor" {
|
|
|
28862
28813
|
newMessages?: Message;
|
|
28863
28814
|
}
|
|
28864
28815
|
|
|
28865
|
-
|
|
28866
|
-
|
|
28867
|
-
|
|
28868
|
-
|
|
28869
|
-
export type $MessageProcessorMessageChangeEventParameters = MessageProcessor$MessageChangeEventParameters;
|
|
28870
|
-
|
|
28871
|
-
export type MessageProcessor$MessageChangeEvent = Event<MessageProcessor$MessageChangeEventParameters>;
|
|
28816
|
+
export type MessageProcessor$MessageChangeEvent = Event<
|
|
28817
|
+
MessageProcessor$MessageChangeEventParameters,
|
|
28818
|
+
MessageProcessor
|
|
28819
|
+
>;
|
|
28872
28820
|
}
|
|
28873
28821
|
|
|
28874
28822
|
declare module "sap/ui/core/mvc/Controller" {
|
|
@@ -30890,43 +30838,28 @@ declare module "sap/ui/core/mvc/View" {
|
|
|
30890
30838
|
|
|
30891
30839
|
export interface View$AfterInitEventParameters {}
|
|
30892
30840
|
|
|
30893
|
-
|
|
30894
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'View$AfterInitEventParameters'
|
|
30895
|
-
* in 1.115.1 and any later releases.
|
|
30896
|
-
*/
|
|
30897
|
-
export type $ViewAfterInitEventParameters = View$AfterInitEventParameters;
|
|
30898
|
-
|
|
30899
|
-
export type View$AfterInitEvent = Event<View$AfterInitEventParameters>;
|
|
30841
|
+
export type View$AfterInitEvent = Event<View$AfterInitEventParameters, View>;
|
|
30900
30842
|
|
|
30901
30843
|
export interface View$AfterRenderingEventParameters {}
|
|
30902
30844
|
|
|
30903
|
-
|
|
30904
|
-
|
|
30905
|
-
|
|
30906
|
-
|
|
30907
|
-
export type $ViewAfterRenderingEventParameters = View$AfterRenderingEventParameters;
|
|
30908
|
-
|
|
30909
|
-
export type View$AfterRenderingEvent = Event<View$AfterRenderingEventParameters>;
|
|
30845
|
+
export type View$AfterRenderingEvent = Event<
|
|
30846
|
+
View$AfterRenderingEventParameters,
|
|
30847
|
+
View
|
|
30848
|
+
>;
|
|
30910
30849
|
|
|
30911
30850
|
export interface View$BeforeExitEventParameters {}
|
|
30912
30851
|
|
|
30913
|
-
|
|
30914
|
-
|
|
30915
|
-
|
|
30916
|
-
|
|
30917
|
-
export type $ViewBeforeExitEventParameters = View$BeforeExitEventParameters;
|
|
30918
|
-
|
|
30919
|
-
export type View$BeforeExitEvent = Event<View$BeforeExitEventParameters>;
|
|
30852
|
+
export type View$BeforeExitEvent = Event<
|
|
30853
|
+
View$BeforeExitEventParameters,
|
|
30854
|
+
View
|
|
30855
|
+
>;
|
|
30920
30856
|
|
|
30921
30857
|
export interface View$BeforeRenderingEventParameters {}
|
|
30922
30858
|
|
|
30923
|
-
|
|
30924
|
-
|
|
30925
|
-
|
|
30926
|
-
|
|
30927
|
-
export type $ViewBeforeRenderingEventParameters = View$BeforeRenderingEventParameters;
|
|
30928
|
-
|
|
30929
|
-
export type View$BeforeRenderingEvent = Event<View$BeforeRenderingEventParameters>;
|
|
30859
|
+
export type View$BeforeRenderingEvent = Event<
|
|
30860
|
+
View$BeforeRenderingEventParameters,
|
|
30861
|
+
View
|
|
30862
|
+
>;
|
|
30930
30863
|
|
|
30931
30864
|
export namespace Preprocessor {
|
|
30932
30865
|
/**
|
|
@@ -31339,22 +31272,6 @@ declare module "sap/ui/core/Popup" {
|
|
|
31339
31272
|
* or `modal` is enabled. E.g. the `RichTextEditor` with running TinyMCE uses this method to be able to
|
|
31340
31273
|
* focus the popups of the TinyMCE if the `RichTextEditor` runs within a `Popup`/`Dialog` etc.
|
|
31341
31274
|
*
|
|
31342
|
-
* To provide an additional DOM element that can get the focus the following should be done:
|
|
31343
|
-
* ```javascript
|
|
31344
|
-
*
|
|
31345
|
-
* // create an object with the corresponding DOM-ID
|
|
31346
|
-
* var oObject = {
|
|
31347
|
-
* id : "this_is_the_most_valuable_id_of_the_DOM_element"
|
|
31348
|
-
* };
|
|
31349
|
-
*
|
|
31350
|
-
* // add the event prefix for adding an element to the ID of the corresponding Popup
|
|
31351
|
-
* var sEventId = "sap.ui.core.Popup.addFocusableContent-" + oPopup.getId();
|
|
31352
|
-
*
|
|
31353
|
-
* // fire the event with the created event-ID and the object with the DOM-ID
|
|
31354
|
-
* sap.ui.getCore().getEventBus().publish("sap.ui", sEventId, oObject);
|
|
31355
|
-
* ```
|
|
31356
|
-
*
|
|
31357
|
-
*
|
|
31358
31275
|
* **Since 1.75**, DOM elements which have the attribute `data-sap-ui-integration-popup-content` are considered
|
|
31359
31276
|
* to be part of all opened popups. Those DOM elements can get the focus without causing the autoclose popup
|
|
31360
31277
|
* to be closed or the modal popup to take the focus back to itself. Additionally, a further DOM query selector
|
|
@@ -32175,33 +32092,18 @@ declare module "sap/ui/core/Popup" {
|
|
|
32175
32092
|
zIndex?: number;
|
|
32176
32093
|
}
|
|
32177
32094
|
|
|
32178
|
-
|
|
32179
|
-
|
|
32180
|
-
|
|
32181
|
-
|
|
32182
|
-
export type $PopupBlockLayerStateChangeEventParameters = Popup$BlockLayerStateChangeEventParameters;
|
|
32183
|
-
|
|
32184
|
-
export type Popup$BlockLayerStateChangeEvent = Event<Popup$BlockLayerStateChangeEventParameters>;
|
|
32095
|
+
export type Popup$BlockLayerStateChangeEvent = Event<
|
|
32096
|
+
Popup$BlockLayerStateChangeEventParameters,
|
|
32097
|
+
Popup
|
|
32098
|
+
>;
|
|
32185
32099
|
|
|
32186
32100
|
export interface Popup$ClosedEventParameters {}
|
|
32187
32101
|
|
|
32188
|
-
|
|
32189
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Popup$ClosedEventParameters'
|
|
32190
|
-
* in 1.115.1 and any later releases.
|
|
32191
|
-
*/
|
|
32192
|
-
export type $PopupClosedEventParameters = Popup$ClosedEventParameters;
|
|
32193
|
-
|
|
32194
|
-
export type Popup$ClosedEvent = Event<Popup$ClosedEventParameters>;
|
|
32102
|
+
export type Popup$ClosedEvent = Event<Popup$ClosedEventParameters, Popup>;
|
|
32195
32103
|
|
|
32196
32104
|
export interface Popup$OpenedEventParameters {}
|
|
32197
32105
|
|
|
32198
|
-
|
|
32199
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Popup$OpenedEventParameters'
|
|
32200
|
-
* in 1.115.1 and any later releases.
|
|
32201
|
-
*/
|
|
32202
|
-
export type $PopupOpenedEventParameters = Popup$OpenedEventParameters;
|
|
32203
|
-
|
|
32204
|
-
export type Popup$OpenedEvent = Event<Popup$OpenedEventParameters>;
|
|
32106
|
+
export type Popup$OpenedEvent = Event<Popup$OpenedEventParameters, Popup>;
|
|
32205
32107
|
}
|
|
32206
32108
|
|
|
32207
32109
|
declare module "sap/ui/core/Renderer" {
|
|
@@ -33984,13 +33886,10 @@ declare module "sap/ui/core/routing/Route" {
|
|
|
33984
33886
|
nestedRoute?: Route;
|
|
33985
33887
|
}
|
|
33986
33888
|
|
|
33987
|
-
|
|
33988
|
-
|
|
33989
|
-
|
|
33990
|
-
|
|
33991
|
-
export type $RouteBeforeMatchedEventParameters = Route$BeforeMatchedEventParameters;
|
|
33992
|
-
|
|
33993
|
-
export type Route$BeforeMatchedEvent = Event<Route$BeforeMatchedEventParameters>;
|
|
33889
|
+
export type Route$BeforeMatchedEvent = Event<
|
|
33890
|
+
Route$BeforeMatchedEventParameters,
|
|
33891
|
+
Route
|
|
33892
|
+
>;
|
|
33994
33893
|
|
|
33995
33894
|
export interface Route$MatchedEventParameters {
|
|
33996
33895
|
/**
|
|
@@ -34040,13 +33939,7 @@ declare module "sap/ui/core/routing/Route" {
|
|
|
34040
33939
|
targetControls?: Control[];
|
|
34041
33940
|
}
|
|
34042
33941
|
|
|
34043
|
-
|
|
34044
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Route$MatchedEventParameters'
|
|
34045
|
-
* in 1.115.1 and any later releases.
|
|
34046
|
-
*/
|
|
34047
|
-
export type $RouteMatchedEventParameters = Route$MatchedEventParameters;
|
|
34048
|
-
|
|
34049
|
-
export type Route$MatchedEvent = Event<Route$MatchedEventParameters>;
|
|
33942
|
+
export type Route$MatchedEvent = Event<Route$MatchedEventParameters, Route>;
|
|
34050
33943
|
|
|
34051
33944
|
export interface Route$PatternMatchedEventParameters {
|
|
34052
33945
|
/**
|
|
@@ -34088,13 +33981,10 @@ declare module "sap/ui/core/routing/Route" {
|
|
|
34088
33981
|
targetControls?: Control[];
|
|
34089
33982
|
}
|
|
34090
33983
|
|
|
34091
|
-
|
|
34092
|
-
|
|
34093
|
-
|
|
34094
|
-
|
|
34095
|
-
export type $RoutePatternMatchedEventParameters = Route$PatternMatchedEventParameters;
|
|
34096
|
-
|
|
34097
|
-
export type Route$PatternMatchedEvent = Event<Route$PatternMatchedEventParameters>;
|
|
33984
|
+
export type Route$PatternMatchedEvent = Event<
|
|
33985
|
+
Route$PatternMatchedEventParameters,
|
|
33986
|
+
Route
|
|
33987
|
+
>;
|
|
34098
33988
|
|
|
34099
33989
|
export interface Route$SwitchedEventParameters {
|
|
34100
33990
|
/**
|
|
@@ -34114,13 +34004,7 @@ declare module "sap/ui/core/routing/Route" {
|
|
|
34114
34004
|
config?: object;
|
|
34115
34005
|
}
|
|
34116
34006
|
|
|
34117
|
-
|
|
34118
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Route$SwitchedEventParameters'
|
|
34119
|
-
* in 1.115.1 and any later releases.
|
|
34120
|
-
*/
|
|
34121
|
-
export type $RouteSwitchedEventParameters = Route$SwitchedEventParameters;
|
|
34122
|
-
|
|
34123
|
-
export type Route$SwitchedEvent = Event<Route$SwitchedEventParameters>;
|
|
34007
|
+
export type Route$SwitchedEvent = Event<Route$SwitchedEventParameters, Route>;
|
|
34124
34008
|
}
|
|
34125
34009
|
|
|
34126
34010
|
declare module "sap/ui/core/routing/Target" {
|
|
@@ -34566,13 +34450,10 @@ declare module "sap/ui/core/routing/Target" {
|
|
|
34566
34450
|
routeRelevant?: object;
|
|
34567
34451
|
}
|
|
34568
34452
|
|
|
34569
|
-
|
|
34570
|
-
|
|
34571
|
-
|
|
34572
|
-
|
|
34573
|
-
export type $TargetDisplayEventParameters = Target$DisplayEventParameters;
|
|
34574
|
-
|
|
34575
|
-
export type Target$DisplayEvent = Event<Target$DisplayEventParameters>;
|
|
34453
|
+
export type Target$DisplayEvent = Event<
|
|
34454
|
+
Target$DisplayEventParameters,
|
|
34455
|
+
Target
|
|
34456
|
+
>;
|
|
34576
34457
|
}
|
|
34577
34458
|
|
|
34578
34459
|
declare module "sap/ui/core/routing/HashChanger" {
|
|
@@ -34771,13 +34652,10 @@ declare module "sap/ui/core/routing/HashChanger" {
|
|
|
34771
34652
|
hash?: string;
|
|
34772
34653
|
}
|
|
34773
34654
|
|
|
34774
|
-
|
|
34775
|
-
|
|
34776
|
-
|
|
34777
|
-
|
|
34778
|
-
export type $HashChangerHashSetEventParameters = HashChanger$HashSetEventParameters;
|
|
34779
|
-
|
|
34780
|
-
export type HashChanger$HashSetEvent = Event<HashChanger$HashSetEventParameters>;
|
|
34655
|
+
export type HashChanger$HashSetEvent = Event<
|
|
34656
|
+
HashChanger$HashSetEventParameters,
|
|
34657
|
+
HashChanger
|
|
34658
|
+
>;
|
|
34781
34659
|
}
|
|
34782
34660
|
|
|
34783
34661
|
declare module "sap/ui/core/routing/HashChangerBase" {
|
|
@@ -34889,14 +34767,10 @@ declare module "sap/ui/core/routing/HashChangerBase" {
|
|
|
34889
34767
|
fullHash?: string;
|
|
34890
34768
|
}
|
|
34891
34769
|
|
|
34892
|
-
|
|
34893
|
-
|
|
34894
|
-
|
|
34895
|
-
|
|
34896
|
-
*/
|
|
34897
|
-
export type $HashChangerBaseHashChangedEventParameters = HashChangerBase$HashChangedEventParameters;
|
|
34898
|
-
|
|
34899
|
-
export type HashChangerBase$HashChangedEvent = Event<HashChangerBase$HashChangedEventParameters>;
|
|
34770
|
+
export type HashChangerBase$HashChangedEvent = Event<
|
|
34771
|
+
HashChangerBase$HashChangedEventParameters,
|
|
34772
|
+
HashChangerBase
|
|
34773
|
+
>;
|
|
34900
34774
|
|
|
34901
34775
|
export interface HashChangerBase$HashReplacedEventParameters {
|
|
34902
34776
|
/**
|
|
@@ -34905,14 +34779,10 @@ declare module "sap/ui/core/routing/HashChangerBase" {
|
|
|
34905
34779
|
hash?: string;
|
|
34906
34780
|
}
|
|
34907
34781
|
|
|
34908
|
-
|
|
34909
|
-
|
|
34910
|
-
|
|
34911
|
-
|
|
34912
|
-
*/
|
|
34913
|
-
export type $HashChangerBaseHashReplacedEventParameters = HashChangerBase$HashReplacedEventParameters;
|
|
34914
|
-
|
|
34915
|
-
export type HashChangerBase$HashReplacedEvent = Event<HashChangerBase$HashReplacedEventParameters>;
|
|
34782
|
+
export type HashChangerBase$HashReplacedEvent = Event<
|
|
34783
|
+
HashChangerBase$HashReplacedEventParameters,
|
|
34784
|
+
HashChangerBase
|
|
34785
|
+
>;
|
|
34916
34786
|
}
|
|
34917
34787
|
|
|
34918
34788
|
declare module "sap/ui/core/routing/History" {
|
|
@@ -36118,13 +35988,10 @@ declare module "sap/ui/core/routing/Router" {
|
|
|
36118
35988
|
nestedRoute?: Route;
|
|
36119
35989
|
}
|
|
36120
35990
|
|
|
36121
|
-
|
|
36122
|
-
|
|
36123
|
-
|
|
36124
|
-
|
|
36125
|
-
export type $RouterBeforeRouteMatchedEventParameters = Router$BeforeRouteMatchedEventParameters;
|
|
36126
|
-
|
|
36127
|
-
export type Router$BeforeRouteMatchedEvent = Event<Router$BeforeRouteMatchedEventParameters>;
|
|
35991
|
+
export type Router$BeforeRouteMatchedEvent = Event<
|
|
35992
|
+
Router$BeforeRouteMatchedEventParameters,
|
|
35993
|
+
Router
|
|
35994
|
+
>;
|
|
36128
35995
|
|
|
36129
35996
|
export interface Router$BypassedEventParameters {
|
|
36130
35997
|
/**
|
|
@@ -36133,13 +36000,10 @@ declare module "sap/ui/core/routing/Router" {
|
|
|
36133
36000
|
hash?: string;
|
|
36134
36001
|
}
|
|
36135
36002
|
|
|
36136
|
-
|
|
36137
|
-
|
|
36138
|
-
|
|
36139
|
-
|
|
36140
|
-
export type $RouterBypassedEventParameters = Router$BypassedEventParameters;
|
|
36141
|
-
|
|
36142
|
-
export type Router$BypassedEvent = Event<Router$BypassedEventParameters>;
|
|
36003
|
+
export type Router$BypassedEvent = Event<
|
|
36004
|
+
Router$BypassedEventParameters,
|
|
36005
|
+
Router
|
|
36006
|
+
>;
|
|
36143
36007
|
|
|
36144
36008
|
export interface Router$RouteMatchedEventParameters {
|
|
36145
36009
|
/**
|
|
@@ -36189,13 +36053,10 @@ declare module "sap/ui/core/routing/Router" {
|
|
|
36189
36053
|
targetControls?: Control[];
|
|
36190
36054
|
}
|
|
36191
36055
|
|
|
36192
|
-
|
|
36193
|
-
|
|
36194
|
-
|
|
36195
|
-
|
|
36196
|
-
export type $RouterRouteMatchedEventParameters = Router$RouteMatchedEventParameters;
|
|
36197
|
-
|
|
36198
|
-
export type Router$RouteMatchedEvent = Event<Router$RouteMatchedEventParameters>;
|
|
36056
|
+
export type Router$RouteMatchedEvent = Event<
|
|
36057
|
+
Router$RouteMatchedEventParameters,
|
|
36058
|
+
Router
|
|
36059
|
+
>;
|
|
36199
36060
|
|
|
36200
36061
|
export interface Router$RoutePatternMatchedEventParameters {
|
|
36201
36062
|
/**
|
|
@@ -36237,13 +36098,10 @@ declare module "sap/ui/core/routing/Router" {
|
|
|
36237
36098
|
targetControls?: Control[];
|
|
36238
36099
|
}
|
|
36239
36100
|
|
|
36240
|
-
|
|
36241
|
-
|
|
36242
|
-
|
|
36243
|
-
|
|
36244
|
-
export type $RouterRoutePatternMatchedEventParameters = Router$RoutePatternMatchedEventParameters;
|
|
36245
|
-
|
|
36246
|
-
export type Router$RoutePatternMatchedEvent = Event<Router$RoutePatternMatchedEventParameters>;
|
|
36101
|
+
export type Router$RoutePatternMatchedEvent = Event<
|
|
36102
|
+
Router$RoutePatternMatchedEventParameters,
|
|
36103
|
+
Router
|
|
36104
|
+
>;
|
|
36247
36105
|
|
|
36248
36106
|
export interface Router$TitleChangedEventParameters {
|
|
36249
36107
|
/**
|
|
@@ -36271,13 +36129,10 @@ declare module "sap/ui/core/routing/Router" {
|
|
|
36271
36129
|
propagated?: boolean;
|
|
36272
36130
|
}
|
|
36273
36131
|
|
|
36274
|
-
|
|
36275
|
-
|
|
36276
|
-
|
|
36277
|
-
|
|
36278
|
-
export type $RouterTitleChangedEventParameters = Router$TitleChangedEventParameters;
|
|
36279
|
-
|
|
36280
|
-
export type Router$TitleChangedEvent = Event<Router$TitleChangedEventParameters>;
|
|
36132
|
+
export type Router$TitleChangedEvent = Event<
|
|
36133
|
+
Router$TitleChangedEventParameters,
|
|
36134
|
+
Router
|
|
36135
|
+
>;
|
|
36281
36136
|
}
|
|
36282
36137
|
|
|
36283
36138
|
declare module "sap/ui/core/routing/RouterHashChanger" {
|
|
@@ -36865,13 +36720,10 @@ declare module "sap/ui/core/routing/Targets" {
|
|
|
36865
36720
|
routeRelevant?: object;
|
|
36866
36721
|
}
|
|
36867
36722
|
|
|
36868
|
-
|
|
36869
|
-
|
|
36870
|
-
|
|
36871
|
-
|
|
36872
|
-
export type $TargetsDisplayEventParameters = Targets$DisplayEventParameters;
|
|
36873
|
-
|
|
36874
|
-
export type Targets$DisplayEvent = Event<Targets$DisplayEventParameters>;
|
|
36723
|
+
export type Targets$DisplayEvent = Event<
|
|
36724
|
+
Targets$DisplayEventParameters,
|
|
36725
|
+
Targets
|
|
36726
|
+
>;
|
|
36875
36727
|
|
|
36876
36728
|
export interface Targets$TitleChangedEventParameters {
|
|
36877
36729
|
/**
|
|
@@ -36885,13 +36737,10 @@ declare module "sap/ui/core/routing/Targets" {
|
|
|
36885
36737
|
name?: string;
|
|
36886
36738
|
}
|
|
36887
36739
|
|
|
36888
|
-
|
|
36889
|
-
|
|
36890
|
-
|
|
36891
|
-
|
|
36892
|
-
export type $TargetsTitleChangedEventParameters = Targets$TitleChangedEventParameters;
|
|
36893
|
-
|
|
36894
|
-
export type Targets$TitleChangedEvent = Event<Targets$TitleChangedEventParameters>;
|
|
36740
|
+
export type Targets$TitleChangedEvent = Event<
|
|
36741
|
+
Targets$TitleChangedEventParameters,
|
|
36742
|
+
Targets
|
|
36743
|
+
>;
|
|
36895
36744
|
}
|
|
36896
36745
|
|
|
36897
36746
|
declare module "sap/ui/core/routing/Views" {
|
|
@@ -37027,13 +36876,7 @@ declare module "sap/ui/core/routing/Views" {
|
|
|
37027
36876
|
viewOptions?: object;
|
|
37028
36877
|
}
|
|
37029
36878
|
|
|
37030
|
-
|
|
37031
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Views$CreatedEventParameters'
|
|
37032
|
-
* in 1.115.1 and any later releases.
|
|
37033
|
-
*/
|
|
37034
|
-
export type $ViewsCreatedEventParameters = Views$CreatedEventParameters;
|
|
37035
|
-
|
|
37036
|
-
export type Views$CreatedEvent = Event<Views$CreatedEventParameters>;
|
|
36879
|
+
export type Views$CreatedEvent = Event<Views$CreatedEventParameters, Views>;
|
|
37037
36880
|
}
|
|
37038
36881
|
|
|
37039
36882
|
declare module "sap/ui/core/ScrollBar" {
|
|
@@ -37367,7 +37210,7 @@ declare module "sap/ui/core/ScrollBar" {
|
|
|
37367
37210
|
/**
|
|
37368
37211
|
* Scroll event.
|
|
37369
37212
|
*/
|
|
37370
|
-
scroll?: (oEvent:
|
|
37213
|
+
scroll?: (oEvent: ScrollBar$ScrollEvent) => void;
|
|
37371
37214
|
}
|
|
37372
37215
|
|
|
37373
37216
|
export interface ScrollBar$ScrollEventParameters {
|
|
@@ -37392,13 +37235,10 @@ declare module "sap/ui/core/ScrollBar" {
|
|
|
37392
37235
|
oldScrollPos?: int;
|
|
37393
37236
|
}
|
|
37394
37237
|
|
|
37395
|
-
|
|
37396
|
-
|
|
37397
|
-
|
|
37398
|
-
|
|
37399
|
-
export type $ScrollBarScrollEventParameters = ScrollBar$ScrollEventParameters;
|
|
37400
|
-
|
|
37401
|
-
export type ScrollBar$ScrollEvent = Event<ScrollBar$ScrollEventParameters>;
|
|
37238
|
+
export type ScrollBar$ScrollEvent = Event<
|
|
37239
|
+
ScrollBar$ScrollEventParameters,
|
|
37240
|
+
ScrollBar
|
|
37241
|
+
>;
|
|
37402
37242
|
}
|
|
37403
37243
|
|
|
37404
37244
|
declare module "sap/ui/core/search/OpenSearchProvider" {
|
|
@@ -39524,23 +39364,17 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
|
|
|
39524
39364
|
|
|
39525
39365
|
export interface TemplateControl$AfterRenderingEventParameters {}
|
|
39526
39366
|
|
|
39527
|
-
|
|
39528
|
-
|
|
39529
|
-
|
|
39530
|
-
|
|
39531
|
-
export type $TemplateControlAfterRenderingEventParameters = TemplateControl$AfterRenderingEventParameters;
|
|
39532
|
-
|
|
39533
|
-
export type TemplateControl$AfterRenderingEvent = Event<TemplateControl$AfterRenderingEventParameters>;
|
|
39367
|
+
export type TemplateControl$AfterRenderingEvent = Event<
|
|
39368
|
+
TemplateControl$AfterRenderingEventParameters,
|
|
39369
|
+
TemplateControl
|
|
39370
|
+
>;
|
|
39534
39371
|
|
|
39535
39372
|
export interface TemplateControl$BeforeRenderingEventParameters {}
|
|
39536
39373
|
|
|
39537
|
-
|
|
39538
|
-
|
|
39539
|
-
|
|
39540
|
-
|
|
39541
|
-
export type $TemplateControlBeforeRenderingEventParameters = TemplateControl$BeforeRenderingEventParameters;
|
|
39542
|
-
|
|
39543
|
-
export type TemplateControl$BeforeRenderingEvent = Event<TemplateControl$BeforeRenderingEventParameters>;
|
|
39374
|
+
export type TemplateControl$BeforeRenderingEvent = Event<
|
|
39375
|
+
TemplateControl$BeforeRenderingEventParameters,
|
|
39376
|
+
TemplateControl
|
|
39377
|
+
>;
|
|
39544
39378
|
}
|
|
39545
39379
|
|
|
39546
39380
|
declare module "sap/ui/core/TooltipBase" {
|
|
@@ -40008,13 +39842,10 @@ declare module "sap/ui/core/TooltipBase" {
|
|
|
40008
39842
|
|
|
40009
39843
|
export interface TooltipBase$ClosedEventParameters {}
|
|
40010
39844
|
|
|
40011
|
-
|
|
40012
|
-
|
|
40013
|
-
|
|
40014
|
-
|
|
40015
|
-
export type $TooltipBaseClosedEventParameters = TooltipBase$ClosedEventParameters;
|
|
40016
|
-
|
|
40017
|
-
export type TooltipBase$ClosedEvent = Event<TooltipBase$ClosedEventParameters>;
|
|
39845
|
+
export type TooltipBase$ClosedEvent = Event<
|
|
39846
|
+
TooltipBase$ClosedEventParameters,
|
|
39847
|
+
TooltipBase
|
|
39848
|
+
>;
|
|
40018
39849
|
}
|
|
40019
39850
|
|
|
40020
39851
|
declare module "sap/ui/core/UIArea" {
|
|
@@ -43236,13 +43067,10 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
|
|
|
43236
43067
|
pcpFields?: string;
|
|
43237
43068
|
}
|
|
43238
43069
|
|
|
43239
|
-
|
|
43240
|
-
|
|
43241
|
-
|
|
43242
|
-
|
|
43243
|
-
export type $SapPcpWebSocketMessageEventParameters = SapPcpWebSocket$MessageEventParameters;
|
|
43244
|
-
|
|
43245
|
-
export type SapPcpWebSocket$MessageEvent = Event<SapPcpWebSocket$MessageEventParameters>;
|
|
43070
|
+
export type SapPcpWebSocket$MessageEvent = Event<
|
|
43071
|
+
SapPcpWebSocket$MessageEventParameters,
|
|
43072
|
+
SapPcpWebSocket
|
|
43073
|
+
>;
|
|
43246
43074
|
}
|
|
43247
43075
|
|
|
43248
43076
|
declare module "sap/ui/core/ws/WebSocket" {
|
|
@@ -43665,23 +43493,17 @@ declare module "sap/ui/core/ws/WebSocket" {
|
|
|
43665
43493
|
wasClean?: string;
|
|
43666
43494
|
}
|
|
43667
43495
|
|
|
43668
|
-
|
|
43669
|
-
|
|
43670
|
-
|
|
43671
|
-
|
|
43672
|
-
export type $WebSocketCloseEventParameters = WebSocket$CloseEventParameters;
|
|
43673
|
-
|
|
43674
|
-
export type WebSocket$CloseEvent = Event<WebSocket$CloseEventParameters>;
|
|
43496
|
+
export type WebSocket$CloseEvent = Event<
|
|
43497
|
+
WebSocket$CloseEventParameters,
|
|
43498
|
+
WebSocket
|
|
43499
|
+
>;
|
|
43675
43500
|
|
|
43676
43501
|
export interface WebSocket$ErrorEventParameters {}
|
|
43677
43502
|
|
|
43678
|
-
|
|
43679
|
-
|
|
43680
|
-
|
|
43681
|
-
|
|
43682
|
-
export type $WebSocketErrorEventParameters = WebSocket$ErrorEventParameters;
|
|
43683
|
-
|
|
43684
|
-
export type WebSocket$ErrorEvent = Event<WebSocket$ErrorEventParameters>;
|
|
43503
|
+
export type WebSocket$ErrorEvent = Event<
|
|
43504
|
+
WebSocket$ErrorEventParameters,
|
|
43505
|
+
WebSocket
|
|
43506
|
+
>;
|
|
43685
43507
|
|
|
43686
43508
|
export interface WebSocket$MessageEventParameters {
|
|
43687
43509
|
/**
|
|
@@ -43690,23 +43512,17 @@ declare module "sap/ui/core/ws/WebSocket" {
|
|
|
43690
43512
|
data?: string;
|
|
43691
43513
|
}
|
|
43692
43514
|
|
|
43693
|
-
|
|
43694
|
-
|
|
43695
|
-
|
|
43696
|
-
|
|
43697
|
-
export type $WebSocketMessageEventParameters = WebSocket$MessageEventParameters;
|
|
43698
|
-
|
|
43699
|
-
export type WebSocket$MessageEvent = Event<WebSocket$MessageEventParameters>;
|
|
43515
|
+
export type WebSocket$MessageEvent = Event<
|
|
43516
|
+
WebSocket$MessageEventParameters,
|
|
43517
|
+
WebSocket
|
|
43518
|
+
>;
|
|
43700
43519
|
|
|
43701
43520
|
export interface WebSocket$OpenEventParameters {}
|
|
43702
43521
|
|
|
43703
|
-
|
|
43704
|
-
|
|
43705
|
-
|
|
43706
|
-
|
|
43707
|
-
export type $WebSocketOpenEventParameters = WebSocket$OpenEventParameters;
|
|
43708
|
-
|
|
43709
|
-
export type WebSocket$OpenEvent = Event<WebSocket$OpenEventParameters>;
|
|
43522
|
+
export type WebSocket$OpenEvent = Event<
|
|
43523
|
+
WebSocket$OpenEventParameters,
|
|
43524
|
+
WebSocket
|
|
43525
|
+
>;
|
|
43710
43526
|
}
|
|
43711
43527
|
|
|
43712
43528
|
declare module "sap/ui/core/XMLComposite" {
|
|
@@ -44858,7 +44674,7 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
|
|
|
44858
44674
|
*/
|
|
44859
44675
|
aFilters?: any[],
|
|
44860
44676
|
/**
|
|
44861
|
-
* A map containing additional binding parameters
|
|
44677
|
+
* A map containing additional binding parameters; for the `AnalyticalBinding` this parameter is mandatory
|
|
44862
44678
|
*/
|
|
44863
44679
|
mParameters?: {
|
|
44864
44680
|
/**
|
|
@@ -45507,6 +45323,14 @@ declare module "sap/ui/model/analytics/BatchResponseCollector" {
|
|
|
45507
45323
|
* may change during the process of a pending request. Typically changed via a call to AnalyticalBinding#updateAnalyticalInfo.
|
|
45508
45324
|
*/
|
|
45509
45325
|
lastAnalyticalInfoVersion: int;
|
|
45326
|
+
/**
|
|
45327
|
+
* a success handler function, which is called after all requests in mParams.executedRequests have returned.
|
|
45328
|
+
*/
|
|
45329
|
+
success: Function;
|
|
45330
|
+
/**
|
|
45331
|
+
* an error handler function, which is called if one or more requests have returned with an error
|
|
45332
|
+
*/
|
|
45333
|
+
error: Function;
|
|
45510
45334
|
}
|
|
45511
45335
|
): void;
|
|
45512
45336
|
/**
|
|
@@ -47487,7 +47311,7 @@ declare module "sap/ui/model/Binding" {
|
|
|
47487
47311
|
/**
|
|
47488
47312
|
* The context object
|
|
47489
47313
|
*/
|
|
47490
|
-
oContext
|
|
47314
|
+
oContext?: Context,
|
|
47491
47315
|
/**
|
|
47492
47316
|
* Additional, implementation-specific parameters
|
|
47493
47317
|
*/
|
|
@@ -47778,7 +47602,7 @@ declare module "sap/ui/model/Binding" {
|
|
|
47778
47602
|
*
|
|
47779
47603
|
* @returns Context object
|
|
47780
47604
|
*/
|
|
47781
|
-
getContext(): Context;
|
|
47605
|
+
getContext(): null | undefined | Context;
|
|
47782
47606
|
/**
|
|
47783
47607
|
* @since 1.82.0
|
|
47784
47608
|
*
|
|
@@ -47800,7 +47624,7 @@ declare module "sap/ui/model/Binding" {
|
|
|
47800
47624
|
*
|
|
47801
47625
|
* @returns Model to which this binding belongs
|
|
47802
47626
|
*/
|
|
47803
|
-
getModel(): Model;
|
|
47627
|
+
getModel(): null | Model;
|
|
47804
47628
|
/**
|
|
47805
47629
|
* Returns the model path to which this binding binds.
|
|
47806
47630
|
*
|
|
@@ -47809,7 +47633,7 @@ declare module "sap/ui/model/Binding" {
|
|
|
47809
47633
|
*
|
|
47810
47634
|
* @returns Binding path
|
|
47811
47635
|
*/
|
|
47812
|
-
getPath(): string;
|
|
47636
|
+
getPath(): null | string;
|
|
47813
47637
|
/**
|
|
47814
47638
|
* @since 1.88.0
|
|
47815
47639
|
*
|
|
@@ -47934,13 +47758,10 @@ declare module "sap/ui/model/Binding" {
|
|
|
47934
47758
|
dataState?: DataState;
|
|
47935
47759
|
}
|
|
47936
47760
|
|
|
47937
|
-
|
|
47938
|
-
|
|
47939
|
-
|
|
47940
|
-
|
|
47941
|
-
export type $BindingAggregatedDataStateChangeEventParameters = Binding$AggregatedDataStateChangeEventParameters;
|
|
47942
|
-
|
|
47943
|
-
export type Binding$AggregatedDataStateChangeEvent = Event<Binding$AggregatedDataStateChangeEventParameters>;
|
|
47761
|
+
export type Binding$AggregatedDataStateChangeEvent = Event<
|
|
47762
|
+
Binding$AggregatedDataStateChangeEventParameters,
|
|
47763
|
+
Binding
|
|
47764
|
+
>;
|
|
47944
47765
|
|
|
47945
47766
|
export interface Binding$ChangeEventParameters {
|
|
47946
47767
|
/**
|
|
@@ -47950,13 +47771,10 @@ declare module "sap/ui/model/Binding" {
|
|
|
47950
47771
|
reason?: string;
|
|
47951
47772
|
}
|
|
47952
47773
|
|
|
47953
|
-
|
|
47954
|
-
|
|
47955
|
-
|
|
47956
|
-
|
|
47957
|
-
export type $BindingChangeEventParameters = Binding$ChangeEventParameters;
|
|
47958
|
-
|
|
47959
|
-
export type Binding$ChangeEvent = Event<Binding$ChangeEventParameters>;
|
|
47774
|
+
export type Binding$ChangeEvent = Event<
|
|
47775
|
+
Binding$ChangeEventParameters,
|
|
47776
|
+
Binding
|
|
47777
|
+
>;
|
|
47960
47778
|
|
|
47961
47779
|
export interface Binding$DataReceivedEventParameters {
|
|
47962
47780
|
/**
|
|
@@ -47965,23 +47783,17 @@ declare module "sap/ui/model/Binding" {
|
|
|
47965
47783
|
data?: string;
|
|
47966
47784
|
}
|
|
47967
47785
|
|
|
47968
|
-
|
|
47969
|
-
|
|
47970
|
-
|
|
47971
|
-
|
|
47972
|
-
export type $BindingDataReceivedEventParameters = Binding$DataReceivedEventParameters;
|
|
47973
|
-
|
|
47974
|
-
export type Binding$DataReceivedEvent = Event<Binding$DataReceivedEventParameters>;
|
|
47786
|
+
export type Binding$DataReceivedEvent = Event<
|
|
47787
|
+
Binding$DataReceivedEventParameters,
|
|
47788
|
+
Binding
|
|
47789
|
+
>;
|
|
47975
47790
|
|
|
47976
47791
|
export interface Binding$DataRequestedEventParameters {}
|
|
47977
47792
|
|
|
47978
|
-
|
|
47979
|
-
|
|
47980
|
-
|
|
47981
|
-
|
|
47982
|
-
export type $BindingDataRequestedEventParameters = Binding$DataRequestedEventParameters;
|
|
47983
|
-
|
|
47984
|
-
export type Binding$DataRequestedEvent = Event<Binding$DataRequestedEventParameters>;
|
|
47793
|
+
export type Binding$DataRequestedEvent = Event<
|
|
47794
|
+
Binding$DataRequestedEventParameters,
|
|
47795
|
+
Binding
|
|
47796
|
+
>;
|
|
47985
47797
|
|
|
47986
47798
|
export interface Binding$DataStateChangeEventParameters {
|
|
47987
47799
|
/**
|
|
@@ -47990,13 +47802,10 @@ declare module "sap/ui/model/Binding" {
|
|
|
47990
47802
|
dataState?: DataState;
|
|
47991
47803
|
}
|
|
47992
47804
|
|
|
47993
|
-
|
|
47994
|
-
|
|
47995
|
-
|
|
47996
|
-
|
|
47997
|
-
export type $BindingDataStateChangeEventParameters = Binding$DataStateChangeEventParameters;
|
|
47998
|
-
|
|
47999
|
-
export type Binding$DataStateChangeEvent = Event<Binding$DataStateChangeEventParameters>;
|
|
47805
|
+
export type Binding$DataStateChangeEvent = Event<
|
|
47806
|
+
Binding$DataStateChangeEventParameters,
|
|
47807
|
+
Binding
|
|
47808
|
+
>;
|
|
48000
47809
|
}
|
|
48001
47810
|
|
|
48002
47811
|
declare module "sap/ui/model/BindingMode" {
|
|
@@ -48839,6 +48648,12 @@ declare module "sap/ui/model/CompositeBinding" {
|
|
|
48839
48648
|
* @returns The property bindings in this composite binding
|
|
48840
48649
|
*/
|
|
48841
48650
|
getBindings(): any[];
|
|
48651
|
+
/**
|
|
48652
|
+
* Returns `null` for the context of this binding instance, as a composite binding has no context.
|
|
48653
|
+
*
|
|
48654
|
+
* @returns `null`
|
|
48655
|
+
*/
|
|
48656
|
+
getContext(): null;
|
|
48842
48657
|
/**
|
|
48843
48658
|
* Returns the current external value of the bound target which is formatted via a type or formatter function.
|
|
48844
48659
|
*
|
|
@@ -48852,6 +48667,18 @@ declare module "sap/ui/model/CompositeBinding" {
|
|
|
48852
48667
|
* @returns The current values of the nested bindings
|
|
48853
48668
|
*/
|
|
48854
48669
|
getInternalValue(): any[];
|
|
48670
|
+
/**
|
|
48671
|
+
* Returns `null` for the model of this binding instance, as a composite binding has no model.
|
|
48672
|
+
*
|
|
48673
|
+
* @returns `null`
|
|
48674
|
+
*/
|
|
48675
|
+
getModel(): null;
|
|
48676
|
+
/**
|
|
48677
|
+
* Returns `null` for the path of this binding instance, as a composite binding has no path.
|
|
48678
|
+
*
|
|
48679
|
+
* @returns `null`
|
|
48680
|
+
*/
|
|
48681
|
+
getPath(): null;
|
|
48855
48682
|
/**
|
|
48856
48683
|
* Returns the current raw value of the bound target which is an array of the raw (model) values of nested
|
|
48857
48684
|
* bindings.
|
|
@@ -48875,6 +48702,14 @@ declare module "sap/ui/model/CompositeBinding" {
|
|
|
48875
48702
|
* @returns A reference to itself
|
|
48876
48703
|
*/
|
|
48877
48704
|
initialize(): this;
|
|
48705
|
+
/**
|
|
48706
|
+
* @since 1.79.0
|
|
48707
|
+
*
|
|
48708
|
+
* Returns whether all binding parts are resolved.
|
|
48709
|
+
*
|
|
48710
|
+
* @returns Whether all binding parts are resolved
|
|
48711
|
+
*/
|
|
48712
|
+
isResolved(): boolean;
|
|
48878
48713
|
/**
|
|
48879
48714
|
* Suspends the binding update. No change events will be fired.
|
|
48880
48715
|
*
|
|
@@ -50222,6 +50057,9 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
50222
50057
|
* Model implementation for the JSON format.
|
|
50223
50058
|
*
|
|
50224
50059
|
* This model is not prepared to be inherited from.
|
|
50060
|
+
*
|
|
50061
|
+
* The model does not support {@link sap.ui.model.json.JSONModel#bindList binding lists} in case the bound
|
|
50062
|
+
* data contains circular structures and the bound control uses {@link https://ui5.sap.com/#/topic/7cdff73f308b4b10bdf7d83b7aba72e7 extended change detection}.
|
|
50225
50063
|
*/
|
|
50226
50064
|
export default class JSONModel extends ClientModel {
|
|
50227
50065
|
/**
|
|
@@ -50824,6 +50662,23 @@ declare module "sap/ui/model/ListBinding" {
|
|
|
50824
50662
|
*/
|
|
50825
50663
|
sPath: string
|
|
50826
50664
|
): any[];
|
|
50665
|
+
/**
|
|
50666
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
50667
|
+
*
|
|
50668
|
+
* Returns the string key for the given model context, which is a unique representation of the context's
|
|
50669
|
+
* data. This key is used in extended change detection to compute the difference between current and previous
|
|
50670
|
+
* contexts retrieved via {@link sap.ui.model.ListBinding#getContexts}.
|
|
50671
|
+
*
|
|
50672
|
+
* The implementation of this method is optional for model-specific implementations of `sap.ui.model.ListBinding`.
|
|
50673
|
+
*
|
|
50674
|
+
* @returns The key for the given context
|
|
50675
|
+
*/
|
|
50676
|
+
getEntryKey(
|
|
50677
|
+
/**
|
|
50678
|
+
* The context for which the key is to be computed
|
|
50679
|
+
*/
|
|
50680
|
+
oContext: Context
|
|
50681
|
+
): string;
|
|
50827
50682
|
/**
|
|
50828
50683
|
* @since 1.96.0
|
|
50829
50684
|
*
|
|
@@ -50891,7 +50746,7 @@ declare module "sap/ui/model/ListBinding" {
|
|
|
50891
50746
|
* in its constructor or in its {@link #filter} method; add filters which you want to keep with the "and"
|
|
50892
50747
|
* conjunction to the resulting filter before calling {@link #filter}.
|
|
50893
50748
|
*
|
|
50894
|
-
* The implementation of this method is optional for model
|
|
50749
|
+
* The implementation of this method is optional for model-specific implementations of `sap.ui.model.ListBinding`.
|
|
50895
50750
|
* Check for existence of this function before calling it.
|
|
50896
50751
|
*
|
|
50897
50752
|
* @returns A Promise that resolves with a {@link sap.ui.model.Filter} representing the entries with messages;
|
|
@@ -50925,27 +50780,30 @@ declare module "sap/ui/model/ListBinding" {
|
|
|
50925
50780
|
*/
|
|
50926
50781
|
aSorters: Sorter | Sorter[]
|
|
50927
50782
|
): this;
|
|
50783
|
+
/**
|
|
50784
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
50785
|
+
*
|
|
50786
|
+
* Update the list and apply sorting and filtering. Called after creation of the list binding on enabling
|
|
50787
|
+
* extended change detection, see {@link sap.ui.model.ListBinding#enableExtendedChangeDetection}.
|
|
50788
|
+
*
|
|
50789
|
+
* The implementation of this method is optional for model-specific implementations of `sap.ui.model.ListBinding`.
|
|
50790
|
+
*/
|
|
50791
|
+
update(): void;
|
|
50928
50792
|
}
|
|
50929
50793
|
|
|
50930
50794
|
export interface ListBinding$FilterEventParameters {}
|
|
50931
50795
|
|
|
50932
|
-
|
|
50933
|
-
|
|
50934
|
-
|
|
50935
|
-
|
|
50936
|
-
export type $ListBindingFilterEventParameters = ListBinding$FilterEventParameters;
|
|
50937
|
-
|
|
50938
|
-
export type ListBinding$FilterEvent = Event<ListBinding$FilterEventParameters>;
|
|
50796
|
+
export type ListBinding$FilterEvent = Event<
|
|
50797
|
+
ListBinding$FilterEventParameters,
|
|
50798
|
+
ListBinding
|
|
50799
|
+
>;
|
|
50939
50800
|
|
|
50940
50801
|
export interface ListBinding$SortEventParameters {}
|
|
50941
50802
|
|
|
50942
|
-
|
|
50943
|
-
|
|
50944
|
-
|
|
50945
|
-
|
|
50946
|
-
export type $ListBindingSortEventParameters = ListBinding$SortEventParameters;
|
|
50947
|
-
|
|
50948
|
-
export type ListBinding$SortEvent = Event<ListBinding$SortEventParameters>;
|
|
50803
|
+
export type ListBinding$SortEvent = Event<
|
|
50804
|
+
ListBinding$SortEventParameters,
|
|
50805
|
+
ListBinding
|
|
50806
|
+
>;
|
|
50949
50807
|
}
|
|
50950
50808
|
|
|
50951
50809
|
declare module "sap/ui/model/message/MessageModel" {
|
|
@@ -51859,13 +51717,10 @@ declare module "sap/ui/model/Model" {
|
|
|
51859
51717
|
filepos?: int;
|
|
51860
51718
|
}
|
|
51861
51719
|
|
|
51862
|
-
|
|
51863
|
-
|
|
51864
|
-
|
|
51865
|
-
|
|
51866
|
-
export type $ModelParseErrorEventParameters = Model$ParseErrorEventParameters;
|
|
51867
|
-
|
|
51868
|
-
export type Model$ParseErrorEvent = Event<Model$ParseErrorEventParameters>;
|
|
51720
|
+
export type Model$ParseErrorEvent = Event<
|
|
51721
|
+
Model$ParseErrorEventParameters,
|
|
51722
|
+
Model
|
|
51723
|
+
>;
|
|
51869
51724
|
|
|
51870
51725
|
export interface Model$PropertyChangeEventParameters {
|
|
51871
51726
|
/**
|
|
@@ -51889,13 +51744,10 @@ declare module "sap/ui/model/Model" {
|
|
|
51889
51744
|
value?: any;
|
|
51890
51745
|
}
|
|
51891
51746
|
|
|
51892
|
-
|
|
51893
|
-
|
|
51894
|
-
|
|
51895
|
-
|
|
51896
|
-
export type $ModelPropertyChangeEventParameters = Model$PropertyChangeEventParameters;
|
|
51897
|
-
|
|
51898
|
-
export type Model$PropertyChangeEvent = Event<Model$PropertyChangeEventParameters>;
|
|
51747
|
+
export type Model$PropertyChangeEvent = Event<
|
|
51748
|
+
Model$PropertyChangeEventParameters,
|
|
51749
|
+
Model
|
|
51750
|
+
>;
|
|
51899
51751
|
|
|
51900
51752
|
export interface Model$RequestCompletedEventParameters {
|
|
51901
51753
|
/**
|
|
@@ -51935,13 +51787,10 @@ declare module "sap/ui/model/Model" {
|
|
|
51935
51787
|
infoObject?: object;
|
|
51936
51788
|
}
|
|
51937
51789
|
|
|
51938
|
-
|
|
51939
|
-
|
|
51940
|
-
|
|
51941
|
-
|
|
51942
|
-
export type $ModelRequestCompletedEventParameters = Model$RequestCompletedEventParameters;
|
|
51943
|
-
|
|
51944
|
-
export type Model$RequestCompletedEvent = Event<Model$RequestCompletedEventParameters>;
|
|
51790
|
+
export type Model$RequestCompletedEvent = Event<
|
|
51791
|
+
Model$RequestCompletedEventParameters,
|
|
51792
|
+
Model
|
|
51793
|
+
>;
|
|
51945
51794
|
|
|
51946
51795
|
export interface Model$RequestFailedEventParameters {
|
|
51947
51796
|
/**
|
|
@@ -51965,13 +51814,10 @@ declare module "sap/ui/model/Model" {
|
|
|
51965
51814
|
responseText?: string;
|
|
51966
51815
|
}
|
|
51967
51816
|
|
|
51968
|
-
|
|
51969
|
-
|
|
51970
|
-
|
|
51971
|
-
|
|
51972
|
-
export type $ModelRequestFailedEventParameters = Model$RequestFailedEventParameters;
|
|
51973
|
-
|
|
51974
|
-
export type Model$RequestFailedEvent = Event<Model$RequestFailedEventParameters>;
|
|
51817
|
+
export type Model$RequestFailedEvent = Event<
|
|
51818
|
+
Model$RequestFailedEventParameters,
|
|
51819
|
+
Model
|
|
51820
|
+
>;
|
|
51975
51821
|
|
|
51976
51822
|
export interface Model$RequestSentEventParameters {
|
|
51977
51823
|
/**
|
|
@@ -52000,13 +51846,10 @@ declare module "sap/ui/model/Model" {
|
|
|
52000
51846
|
infoObject?: object;
|
|
52001
51847
|
}
|
|
52002
51848
|
|
|
52003
|
-
|
|
52004
|
-
|
|
52005
|
-
|
|
52006
|
-
|
|
52007
|
-
export type $ModelRequestSentEventParameters = Model$RequestSentEventParameters;
|
|
52008
|
-
|
|
52009
|
-
export type Model$RequestSentEvent = Event<Model$RequestSentEventParameters>;
|
|
51849
|
+
export type Model$RequestSentEvent = Event<
|
|
51850
|
+
Model$RequestSentEventParameters,
|
|
51851
|
+
Model
|
|
51852
|
+
>;
|
|
52010
51853
|
}
|
|
52011
51854
|
|
|
52012
51855
|
declare module "sap/ui/model/odata/ODataTreeBindingAdapter" {
|
|
@@ -52808,23 +52651,17 @@ declare module "sap/ui/model/odata/ODataAnnotations" {
|
|
|
52808
52651
|
|
|
52809
52652
|
export interface ODataAnnotations$FailedEventParameters {}
|
|
52810
52653
|
|
|
52811
|
-
|
|
52812
|
-
|
|
52813
|
-
|
|
52814
|
-
|
|
52815
|
-
export type $ODataAnnotationsFailedEventParameters = ODataAnnotations$FailedEventParameters;
|
|
52816
|
-
|
|
52817
|
-
export type ODataAnnotations$FailedEvent = Event<ODataAnnotations$FailedEventParameters>;
|
|
52654
|
+
export type ODataAnnotations$FailedEvent = Event<
|
|
52655
|
+
ODataAnnotations$FailedEventParameters,
|
|
52656
|
+
ODataAnnotations
|
|
52657
|
+
>;
|
|
52818
52658
|
|
|
52819
52659
|
export interface ODataAnnotations$LoadedEventParameters {}
|
|
52820
52660
|
|
|
52821
|
-
|
|
52822
|
-
|
|
52823
|
-
|
|
52824
|
-
|
|
52825
|
-
export type $ODataAnnotationsLoadedEventParameters = ODataAnnotations$LoadedEventParameters;
|
|
52826
|
-
|
|
52827
|
-
export type ODataAnnotations$LoadedEvent = Event<ODataAnnotations$LoadedEventParameters>;
|
|
52661
|
+
export type ODataAnnotations$LoadedEvent = Event<
|
|
52662
|
+
ODataAnnotations$LoadedEventParameters,
|
|
52663
|
+
ODataAnnotations
|
|
52664
|
+
>;
|
|
52828
52665
|
}
|
|
52829
52666
|
|
|
52830
52667
|
declare module "sap/ui/model/odata/ODataContextBinding" {
|
|
@@ -53212,9 +53049,9 @@ declare module "sap/ui/model/odata/ODataMetadata" {
|
|
|
53212
53049
|
*/
|
|
53213
53050
|
sMetadataURI: string,
|
|
53214
53051
|
/**
|
|
53215
|
-
*
|
|
53052
|
+
* map of parameters.
|
|
53216
53053
|
*/
|
|
53217
|
-
mParams
|
|
53054
|
+
mParams: {
|
|
53218
53055
|
/**
|
|
53219
53056
|
* request is per default async
|
|
53220
53057
|
*/
|
|
@@ -53236,6 +53073,11 @@ declare module "sap/ui/model/odata/ODataMetadata" {
|
|
|
53236
53073
|
* (optional) A valid cache key
|
|
53237
53074
|
*/
|
|
53238
53075
|
cacheKey?: string;
|
|
53076
|
+
/**
|
|
53077
|
+
* The metadata XML as string as provided in a back-end response; the `sMetadataURI` parameter is ignored
|
|
53078
|
+
* if this parameter is set, and there is no request for the metadata.
|
|
53079
|
+
*/
|
|
53080
|
+
metadata?: string;
|
|
53239
53081
|
}
|
|
53240
53082
|
);
|
|
53241
53083
|
|
|
@@ -53476,23 +53318,17 @@ declare module "sap/ui/model/odata/ODataMetadata" {
|
|
|
53476
53318
|
|
|
53477
53319
|
export interface ODataMetadata$FailedEventParameters {}
|
|
53478
53320
|
|
|
53479
|
-
|
|
53480
|
-
|
|
53481
|
-
|
|
53482
|
-
|
|
53483
|
-
export type $ODataMetadataFailedEventParameters = ODataMetadata$FailedEventParameters;
|
|
53484
|
-
|
|
53485
|
-
export type ODataMetadata$FailedEvent = Event<ODataMetadata$FailedEventParameters>;
|
|
53321
|
+
export type ODataMetadata$FailedEvent = Event<
|
|
53322
|
+
ODataMetadata$FailedEventParameters,
|
|
53323
|
+
ODataMetadata
|
|
53324
|
+
>;
|
|
53486
53325
|
|
|
53487
53326
|
export interface ODataMetadata$LoadedEventParameters {}
|
|
53488
53327
|
|
|
53489
|
-
|
|
53490
|
-
|
|
53491
|
-
|
|
53492
|
-
|
|
53493
|
-
export type $ODataMetadataLoadedEventParameters = ODataMetadata$LoadedEventParameters;
|
|
53494
|
-
|
|
53495
|
-
export type ODataMetadata$LoadedEvent = Event<ODataMetadata$LoadedEventParameters>;
|
|
53328
|
+
export type ODataMetadata$LoadedEvent = Event<
|
|
53329
|
+
ODataMetadata$LoadedEventParameters,
|
|
53330
|
+
ODataMetadata
|
|
53331
|
+
>;
|
|
53496
53332
|
}
|
|
53497
53333
|
|
|
53498
53334
|
declare module "sap/ui/model/odata/ODataMetaModel" {
|
|
@@ -53876,15 +53712,15 @@ declare module "sap/ui/model/odata/ODataMetaModel" {
|
|
|
53876
53712
|
* in the map is the JSON object for the annotation. The map is empty if the property has no `com.sap.vocabularies.Common.v1.ValueList`
|
|
53877
53713
|
* annotations.
|
|
53878
53714
|
*
|
|
53879
|
-
* @returns
|
|
53880
|
-
* have been loaded
|
|
53715
|
+
* @returns A Promise that gets resolved into the value lists for the given context, as soon as the value
|
|
53716
|
+
* lists as well as the required model elements have been loaded
|
|
53881
53717
|
*/
|
|
53882
53718
|
getODataValueLists(
|
|
53883
53719
|
/**
|
|
53884
|
-
*
|
|
53720
|
+
* A model context for a structural property of an entity type or a complex type, as returned by {@link #getMetaContext getMetaContext}
|
|
53885
53721
|
*/
|
|
53886
53722
|
oPropertyContext: Context
|
|
53887
|
-
): Promise<
|
|
53723
|
+
): Promise<Record<string, ValueListType>>;
|
|
53888
53724
|
/**
|
|
53889
53725
|
* Returns a promise which is fulfilled once the meta model data is loaded and can be used.
|
|
53890
53726
|
*
|
|
@@ -54080,6 +53916,16 @@ declare module "sap/ui/model/odata/ODataMetaModel" {
|
|
|
54080
53916
|
type: "Edm.Boolean";
|
|
54081
53917
|
};
|
|
54082
53918
|
|
|
53919
|
+
/**
|
|
53920
|
+
* An object representing a Boolean value.
|
|
53921
|
+
*/
|
|
53922
|
+
export type BoolExpression = {
|
|
53923
|
+
/**
|
|
53924
|
+
* The Boolean value
|
|
53925
|
+
*/
|
|
53926
|
+
Bool: "true" | "false";
|
|
53927
|
+
};
|
|
53928
|
+
|
|
54083
53929
|
/**
|
|
54084
53930
|
* A property of type `Edm.Byte`, see the corresponding UI5 type {@link sap.ui.model.odata.type.Byte}.
|
|
54085
53931
|
*/
|
|
@@ -54419,6 +54265,16 @@ declare module "sap/ui/model/odata/ODataMetaModel" {
|
|
|
54419
54265
|
| StringProperty
|
|
54420
54266
|
| TimeProperty;
|
|
54421
54267
|
|
|
54268
|
+
/**
|
|
54269
|
+
* An object representing a `PropertyPathExpression` with its corresponding value.
|
|
54270
|
+
*/
|
|
54271
|
+
export type PropertyPathExpression = {
|
|
54272
|
+
/**
|
|
54273
|
+
* The value of the `PropertyPathExpression`
|
|
54274
|
+
*/
|
|
54275
|
+
PropertyPath: string;
|
|
54276
|
+
};
|
|
54277
|
+
|
|
54422
54278
|
/**
|
|
54423
54279
|
* An object representing an OData property reference.
|
|
54424
54280
|
*/
|
|
@@ -54439,6 +54295,16 @@ declare module "sap/ui/model/odata/ODataMetaModel" {
|
|
|
54439
54295
|
type: "Edm.SByte";
|
|
54440
54296
|
};
|
|
54441
54297
|
|
|
54298
|
+
/**
|
|
54299
|
+
* An object representing an {@link https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.md#SimpleIdentifier OData SimpleIdentifier}
|
|
54300
|
+
*/
|
|
54301
|
+
export type SimpleIdentifier = {
|
|
54302
|
+
/**
|
|
54303
|
+
* The simple identifier string
|
|
54304
|
+
*/
|
|
54305
|
+
String: string;
|
|
54306
|
+
};
|
|
54307
|
+
|
|
54442
54308
|
/**
|
|
54443
54309
|
* A property of type `Edm.Single`, see the corresponding UI5 type {@link sap.ui.model.odata.type.Single}.
|
|
54444
54310
|
*/
|
|
@@ -54467,6 +54333,16 @@ declare module "sap/ui/model/odata/ODataMetaModel" {
|
|
|
54467
54333
|
maxLength?: string;
|
|
54468
54334
|
};
|
|
54469
54335
|
|
|
54336
|
+
/**
|
|
54337
|
+
* An object representing a string value.
|
|
54338
|
+
*/
|
|
54339
|
+
export type StringExpression = {
|
|
54340
|
+
/**
|
|
54341
|
+
* The string value
|
|
54342
|
+
*/
|
|
54343
|
+
String: string;
|
|
54344
|
+
};
|
|
54345
|
+
|
|
54470
54346
|
/**
|
|
54471
54347
|
* A property of type `Edm.String`, see the corresponding UI5 type {@link sap.ui.model.odata.type.String}.
|
|
54472
54348
|
*/
|
|
@@ -54502,6 +54378,155 @@ declare module "sap/ui/model/odata/ODataMetaModel" {
|
|
|
54502
54378
|
*/
|
|
54503
54379
|
precision?: string;
|
|
54504
54380
|
};
|
|
54381
|
+
|
|
54382
|
+
/**
|
|
54383
|
+
* The alias type for the OData {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListParameter ValueListParameter};
|
|
54384
|
+
* this alias comprises all supported value list parameter types.
|
|
54385
|
+
*/
|
|
54386
|
+
export type ValueListParameter =
|
|
54387
|
+
| ValueListParameterIn
|
|
54388
|
+
| ValueListParameterConstant
|
|
54389
|
+
| ValueListParameterInOut
|
|
54390
|
+
| ValueListParameterOut
|
|
54391
|
+
| ValueListParameterDisplayOnly;
|
|
54392
|
+
|
|
54393
|
+
/**
|
|
54394
|
+
* An object representing the value list parameter type {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListParameterConstant ValueListParameterConstant}.
|
|
54395
|
+
*/
|
|
54396
|
+
export type ValueListParameterConstant = {
|
|
54397
|
+
/**
|
|
54398
|
+
* An object containing the path to the property in the value list
|
|
54399
|
+
*/
|
|
54400
|
+
ValueListProperty: ValueListProperty;
|
|
54401
|
+
/**
|
|
54402
|
+
* A string representing a constant value that is used to filter the value list with an `eq` comparison,
|
|
54403
|
+
* using the same representation as property default values
|
|
54404
|
+
*/
|
|
54405
|
+
Constant: string;
|
|
54406
|
+
/**
|
|
54407
|
+
* Fully qualified name of the value list parameter type `ValueListParameterConstant`
|
|
54408
|
+
*/
|
|
54409
|
+
RecordType: "com.sap.vocabularies.Common.v1.ValueListParameterConstant";
|
|
54410
|
+
};
|
|
54411
|
+
|
|
54412
|
+
/**
|
|
54413
|
+
* An object representing the value list parameter type {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListParameterDisplayOnly ValueListParameterDisplayOnly}.
|
|
54414
|
+
*/
|
|
54415
|
+
export type ValueListParameterDisplayOnly = {
|
|
54416
|
+
/**
|
|
54417
|
+
* An object containing the path to the property in the value list
|
|
54418
|
+
*/
|
|
54419
|
+
ValueListProperty: ValueListProperty;
|
|
54420
|
+
/**
|
|
54421
|
+
* Fully qualified name of the value list parameter type `ValueListParameterDisplayOnly`
|
|
54422
|
+
*/
|
|
54423
|
+
RecordType: "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly";
|
|
54424
|
+
};
|
|
54425
|
+
|
|
54426
|
+
/**
|
|
54427
|
+
* An object representing the value list parameter type {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListParameterIn ValueListParameterIn}.
|
|
54428
|
+
*/
|
|
54429
|
+
export type ValueListParameterIn = {
|
|
54430
|
+
/**
|
|
54431
|
+
* An object containing the property path that is used to filter the value list with an `eq` comparison
|
|
54432
|
+
*/
|
|
54433
|
+
LocalDataProperty: PropertyPathExpression;
|
|
54434
|
+
/**
|
|
54435
|
+
* An object containing the path to the property in the value list
|
|
54436
|
+
*/
|
|
54437
|
+
ValueListProperty: ValueListProperty;
|
|
54438
|
+
/**
|
|
54439
|
+
* Fully qualified name of the value list parameter type `ValueListParameterIn`
|
|
54440
|
+
*/
|
|
54441
|
+
RecordType: "com.sap.vocabularies.Common.v1.ValueListParameterIn";
|
|
54442
|
+
};
|
|
54443
|
+
|
|
54444
|
+
/**
|
|
54445
|
+
* An object representing the value list parameter type {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListParameterInOut ValueListParameterInOut}.
|
|
54446
|
+
*/
|
|
54447
|
+
export type ValueListParameterInOut = {
|
|
54448
|
+
/**
|
|
54449
|
+
* An object containing the property path that is used to filter the value list with an `startswith` comparison
|
|
54450
|
+
* and filled from the picked value list item
|
|
54451
|
+
*/
|
|
54452
|
+
LocalDataProperty: PropertyPathExpression;
|
|
54453
|
+
/**
|
|
54454
|
+
* An object containing the path to the property in the value list
|
|
54455
|
+
*/
|
|
54456
|
+
ValueListProperty: ValueListProperty;
|
|
54457
|
+
/**
|
|
54458
|
+
* Fully qualified name of the value list parameter type `ValueListParameterInOut`
|
|
54459
|
+
*/
|
|
54460
|
+
RecordType: "com.sap.vocabularies.Common.v1.ValueListParameterInOut";
|
|
54461
|
+
};
|
|
54462
|
+
|
|
54463
|
+
/**
|
|
54464
|
+
* An object representing the value list parameter type {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListParameterOut ValueListParameterOut}.
|
|
54465
|
+
*/
|
|
54466
|
+
export type ValueListParameterOut = {
|
|
54467
|
+
/**
|
|
54468
|
+
* An object containing the path to the property that is filled from the response
|
|
54469
|
+
*/
|
|
54470
|
+
LocalDataProperty: PropertyPathExpression;
|
|
54471
|
+
/**
|
|
54472
|
+
* An object containing the path to the property in the value list
|
|
54473
|
+
*/
|
|
54474
|
+
ValueListProperty: ValueListProperty;
|
|
54475
|
+
/**
|
|
54476
|
+
* Fully qualified name of the value list parameter type `ValueListParameterOut`
|
|
54477
|
+
*/
|
|
54478
|
+
RecordType: "com.sap.vocabularies.Common.v1.ValueListParameterOut";
|
|
54479
|
+
};
|
|
54480
|
+
|
|
54481
|
+
/**
|
|
54482
|
+
* An object representing a `ValueListProperty` of a {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListParameter ValueListParameter}.
|
|
54483
|
+
*/
|
|
54484
|
+
export type ValueListProperty = {
|
|
54485
|
+
/**
|
|
54486
|
+
* The value of the `ValueListProperty`
|
|
54487
|
+
*/
|
|
54488
|
+
String: string;
|
|
54489
|
+
};
|
|
54490
|
+
|
|
54491
|
+
/**
|
|
54492
|
+
* An object describing the {@link https://sap.github.io/odata-vocabularies/vocabularies/Common.html#ValueListType ValueListType}.
|
|
54493
|
+
*/
|
|
54494
|
+
export type ValueListType = {
|
|
54495
|
+
/**
|
|
54496
|
+
* A `StringExpression` object representing the `Label` property
|
|
54497
|
+
*/
|
|
54498
|
+
Label?: StringExpression;
|
|
54499
|
+
/**
|
|
54500
|
+
* A `StringExpression` object representing the `CollectionPath` property
|
|
54501
|
+
*/
|
|
54502
|
+
CollectionPath: StringExpression;
|
|
54503
|
+
/**
|
|
54504
|
+
* A `StringExpression` object representing the `CollectionRoot` property
|
|
54505
|
+
*/
|
|
54506
|
+
CollectionRoot?: StringExpression;
|
|
54507
|
+
/**
|
|
54508
|
+
* A `BoolExpression` object representing the `DistinctValuesSupported` property
|
|
54509
|
+
*/
|
|
54510
|
+
DistinctValuesSupported: BoolExpression;
|
|
54511
|
+
/**
|
|
54512
|
+
* A `BoolExpression` object representing the `SearchSupported` property
|
|
54513
|
+
*/
|
|
54514
|
+
SearchSupported: BoolExpression;
|
|
54515
|
+
/**
|
|
54516
|
+
* The `PresentationVariantQualifier` property defines the identifier for an alternative representation
|
|
54517
|
+
* of the value help, e.g. as a bar chart
|
|
54518
|
+
*/
|
|
54519
|
+
PresentationVariantQualifier?: SimpleIdentifier;
|
|
54520
|
+
/**
|
|
54521
|
+
* The `SelectionVariantQualifier` property contains a combination of parameters and filters to query the
|
|
54522
|
+
* value help entity set
|
|
54523
|
+
*/
|
|
54524
|
+
SelectionVariantQualifier?: SimpleIdentifier;
|
|
54525
|
+
/**
|
|
54526
|
+
* An array of parameters used to construct the value list request and consume the response properties
|
|
54527
|
+
*/
|
|
54528
|
+
Parameters: ValueListParameter[];
|
|
54529
|
+
};
|
|
54505
54530
|
}
|
|
54506
54531
|
|
|
54507
54532
|
declare module "sap/ui/model/odata/ODataModel" {
|
|
@@ -55810,43 +55835,31 @@ declare module "sap/ui/model/odata/ODataModel" {
|
|
|
55810
55835
|
|
|
55811
55836
|
export interface ODataModel$AnnotationsFailedEventParameters {}
|
|
55812
55837
|
|
|
55813
|
-
|
|
55814
|
-
|
|
55815
|
-
|
|
55816
|
-
|
|
55817
|
-
export type $ODataModelAnnotationsFailedEventParameters = ODataModel$AnnotationsFailedEventParameters;
|
|
55818
|
-
|
|
55819
|
-
export type ODataModel$AnnotationsFailedEvent = Event<ODataModel$AnnotationsFailedEventParameters>;
|
|
55838
|
+
export type ODataModel$AnnotationsFailedEvent = Event<
|
|
55839
|
+
ODataModel$AnnotationsFailedEventParameters,
|
|
55840
|
+
ODataModel
|
|
55841
|
+
>;
|
|
55820
55842
|
|
|
55821
55843
|
export interface ODataModel$AnnotationsLoadedEventParameters {}
|
|
55822
55844
|
|
|
55823
|
-
|
|
55824
|
-
|
|
55825
|
-
|
|
55826
|
-
|
|
55827
|
-
export type $ODataModelAnnotationsLoadedEventParameters = ODataModel$AnnotationsLoadedEventParameters;
|
|
55828
|
-
|
|
55829
|
-
export type ODataModel$AnnotationsLoadedEvent = Event<ODataModel$AnnotationsLoadedEventParameters>;
|
|
55845
|
+
export type ODataModel$AnnotationsLoadedEvent = Event<
|
|
55846
|
+
ODataModel$AnnotationsLoadedEventParameters,
|
|
55847
|
+
ODataModel
|
|
55848
|
+
>;
|
|
55830
55849
|
|
|
55831
55850
|
export interface ODataModel$MetadataFailedEventParameters {}
|
|
55832
55851
|
|
|
55833
|
-
|
|
55834
|
-
|
|
55835
|
-
|
|
55836
|
-
|
|
55837
|
-
export type $ODataModelMetadataFailedEventParameters = ODataModel$MetadataFailedEventParameters;
|
|
55838
|
-
|
|
55839
|
-
export type ODataModel$MetadataFailedEvent = Event<ODataModel$MetadataFailedEventParameters>;
|
|
55852
|
+
export type ODataModel$MetadataFailedEvent = Event<
|
|
55853
|
+
ODataModel$MetadataFailedEventParameters,
|
|
55854
|
+
ODataModel
|
|
55855
|
+
>;
|
|
55840
55856
|
|
|
55841
55857
|
export interface ODataModel$MetadataLoadedEventParameters {}
|
|
55842
55858
|
|
|
55843
|
-
|
|
55844
|
-
|
|
55845
|
-
|
|
55846
|
-
|
|
55847
|
-
export type $ODataModelMetadataLoadedEventParameters = ODataModel$MetadataLoadedEventParameters;
|
|
55848
|
-
|
|
55849
|
-
export type ODataModel$MetadataLoadedEvent = Event<ODataModel$MetadataLoadedEventParameters>;
|
|
55859
|
+
export type ODataModel$MetadataLoadedEvent = Event<
|
|
55860
|
+
ODataModel$MetadataLoadedEventParameters,
|
|
55861
|
+
ODataModel
|
|
55862
|
+
>;
|
|
55850
55863
|
}
|
|
55851
55864
|
|
|
55852
55865
|
declare module "sap/ui/model/odata/ODataPropertyBinding" {
|
|
@@ -59371,7 +59384,8 @@ declare module "sap/ui/model/odata/v2/Context" {
|
|
|
59371
59384
|
* in the back end. **Note:** The context must not be used anymore after successful deletion.
|
|
59372
59385
|
*
|
|
59373
59386
|
* @returns A promise resolving with `undefined` in case of successful deletion or rejecting with an error
|
|
59374
|
-
* in case the deletion failed
|
|
59387
|
+
* in case the deletion failed. If the `DELETE` request has been aborted, the error has an `aborted` flag
|
|
59388
|
+
* set to `true`.
|
|
59375
59389
|
*/
|
|
59376
59390
|
delete(
|
|
59377
59391
|
/**
|
|
@@ -60382,8 +60396,12 @@ declare module "sap/ui/model/odata/v2/ODataListBinding" {
|
|
|
60382
60396
|
*/
|
|
60383
60397
|
groupId?: string;
|
|
60384
60398
|
/**
|
|
60385
|
-
* Whether the created context is inactive. An inactive context will only be sent to the server
|
|
60386
|
-
*
|
|
60399
|
+
* Whether the created context is inactive. An inactive context will only be sent to the server when it
|
|
60400
|
+
* has become active after a property update. From then on it behaves like any other created context.
|
|
60401
|
+
* When a property update happens on an inactive context, the {@link sap.ui.model.odata.v2.ODataListBinding#event:createActivate 'createActivate' }
|
|
60402
|
+
* event is fired, and the context becomes active, unless the event handler prevents this. While inactive,
|
|
60403
|
+
* the context does not count as a {@link sap.ui.model.odata.v2.ODataModel#hasPendingChanges pending change }
|
|
60404
|
+
* and does not contribute to the {@link #getCount count}.
|
|
60387
60405
|
*/
|
|
60388
60406
|
inactive?: boolean;
|
|
60389
60407
|
/**
|
|
@@ -60604,13 +60622,10 @@ declare module "sap/ui/model/odata/v2/ODataListBinding" {
|
|
|
60604
60622
|
|
|
60605
60623
|
export interface ODataListBinding$CreateActivateEventParameters {}
|
|
60606
60624
|
|
|
60607
|
-
|
|
60608
|
-
|
|
60609
|
-
|
|
60610
|
-
|
|
60611
|
-
export type $ODataListBindingCreateActivateEventParameters = ODataListBinding$CreateActivateEventParameters;
|
|
60612
|
-
|
|
60613
|
-
export type ODataListBinding$CreateActivateEvent = Event<ODataListBinding$CreateActivateEventParameters>;
|
|
60625
|
+
export type ODataListBinding$CreateActivateEvent = Event<
|
|
60626
|
+
ODataListBinding$CreateActivateEventParameters,
|
|
60627
|
+
ODataListBinding
|
|
60628
|
+
>;
|
|
60614
60629
|
}
|
|
60615
60630
|
|
|
60616
60631
|
declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
@@ -61580,7 +61595,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
61580
61595
|
changeSetId?: string;
|
|
61581
61596
|
/**
|
|
61582
61597
|
* A callback function which is called when the request failed. The handler can have the parameter: `oError`
|
|
61583
|
-
* which contains additional error information.
|
|
61598
|
+
* which contains additional error information. If the request has been aborted, the error has an `aborted`
|
|
61599
|
+
* flag set to `true`.
|
|
61584
61600
|
*/
|
|
61585
61601
|
error?: Function;
|
|
61586
61602
|
/**
|
|
@@ -61687,7 +61703,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
61687
61703
|
success?: Function;
|
|
61688
61704
|
/**
|
|
61689
61705
|
* A callback function which is called when the request failed. The handler can have the parameter `oError`
|
|
61690
|
-
* which contains additional error information.
|
|
61706
|
+
* which contains additional error information. If the `POST` request has been aborted, the error has an
|
|
61707
|
+
* `aborted` flag set to `true`.
|
|
61691
61708
|
*/
|
|
61692
61709
|
error?: Function;
|
|
61693
61710
|
/**
|
|
@@ -61711,7 +61728,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
61711
61728
|
*/
|
|
61712
61729
|
changeSetId?: string;
|
|
61713
61730
|
/**
|
|
61714
|
-
* Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange
|
|
61731
|
+
* Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange}.
|
|
61715
61732
|
* If given, this overrules the model-wide `refreshAfterChange` flag for this operation only.
|
|
61716
61733
|
*/
|
|
61717
61734
|
refreshAfterChange?: boolean;
|
|
@@ -62664,7 +62681,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
62664
62681
|
success?: Function;
|
|
62665
62682
|
/**
|
|
62666
62683
|
* A callback function which is called when the request failed. The handler can have the parameter: `oError`
|
|
62667
|
-
* which contains additional error information.
|
|
62684
|
+
* which contains additional error information. If the `GET` request has been aborted, the error has an
|
|
62685
|
+
* `aborted` flag set to `true`.
|
|
62668
62686
|
*/
|
|
62669
62687
|
error?: Function;
|
|
62670
62688
|
/**
|
|
@@ -62766,7 +62784,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
62766
62784
|
success?: Function;
|
|
62767
62785
|
/**
|
|
62768
62786
|
* A callback function which is called when the request failed. The handler can have the parameter: `oError`
|
|
62769
|
-
* which contains additional error information.
|
|
62787
|
+
* which contains additional error information. If the `DELETE` request has been aborted, the error has
|
|
62788
|
+
* an `aborted` flag set to `true`.
|
|
62770
62789
|
*/
|
|
62771
62790
|
error?: Function;
|
|
62772
62791
|
/**
|
|
@@ -62827,7 +62846,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
62827
62846
|
*/
|
|
62828
62847
|
aPath?: any[],
|
|
62829
62848
|
/**
|
|
62830
|
-
* Whether also deferred requests are taken into account
|
|
62849
|
+
* Whether also deferred requests are taken into account so that they are aborted
|
|
62831
62850
|
*/
|
|
62832
62851
|
bAll?: boolean,
|
|
62833
62852
|
/**
|
|
@@ -63067,7 +63086,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63067
63086
|
success?: Function;
|
|
63068
63087
|
/**
|
|
63069
63088
|
* A callback function which is called when the request failed. The handler can have the parameter: `oError`
|
|
63070
|
-
* which contains additional error information
|
|
63089
|
+
* which contains additional error information. If all contained requests have been aborted, the error has
|
|
63090
|
+
* an `aborted` flag set to `true`.
|
|
63071
63091
|
*/
|
|
63072
63092
|
error?: Function;
|
|
63073
63093
|
/**
|
|
@@ -63115,7 +63135,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63115
63135
|
success?: Function;
|
|
63116
63136
|
/**
|
|
63117
63137
|
* A callback function which is called when the request failed. The handler can have the parameter `oError`
|
|
63118
|
-
* which contains additional error information.
|
|
63138
|
+
* which contains additional error information. If the `PUT/MERGE` request has been aborted, the error has
|
|
63139
|
+
* an `aborted` flag set to `true`.
|
|
63119
63140
|
*/
|
|
63120
63141
|
error?: Function;
|
|
63121
63142
|
/**
|
|
@@ -63146,7 +63167,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63146
63167
|
*/
|
|
63147
63168
|
changeSetId?: string;
|
|
63148
63169
|
/**
|
|
63149
|
-
* Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange
|
|
63170
|
+
* Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange}.
|
|
63150
63171
|
* If given, this overrules the model-wide `refreshAfterChange` flag for this operation only.
|
|
63151
63172
|
*/
|
|
63152
63173
|
refreshAfterChange?: boolean;
|
|
@@ -63187,13 +63208,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63187
63208
|
result?: Error[];
|
|
63188
63209
|
}
|
|
63189
63210
|
|
|
63190
|
-
|
|
63191
|
-
|
|
63192
|
-
|
|
63193
|
-
|
|
63194
|
-
export type $ODataModelAnnotationsFailedEventParameters = ODataModel$AnnotationsFailedEventParameters;
|
|
63195
|
-
|
|
63196
|
-
export type ODataModel$AnnotationsFailedEvent = Event<ODataModel$AnnotationsFailedEventParameters>;
|
|
63211
|
+
export type ODataModel$AnnotationsFailedEvent = Event<
|
|
63212
|
+
ODataModel$AnnotationsFailedEventParameters,
|
|
63213
|
+
ODataModel
|
|
63214
|
+
>;
|
|
63197
63215
|
|
|
63198
63216
|
export interface ODataModel$AnnotationsLoadedEventParameters {
|
|
63199
63217
|
/**
|
|
@@ -63203,13 +63221,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63203
63221
|
result?: Source[];
|
|
63204
63222
|
}
|
|
63205
63223
|
|
|
63206
|
-
|
|
63207
|
-
|
|
63208
|
-
|
|
63209
|
-
|
|
63210
|
-
export type $ODataModelAnnotationsLoadedEventParameters = ODataModel$AnnotationsLoadedEventParameters;
|
|
63211
|
-
|
|
63212
|
-
export type ODataModel$AnnotationsLoadedEvent = Event<ODataModel$AnnotationsLoadedEventParameters>;
|
|
63224
|
+
export type ODataModel$AnnotationsLoadedEvent = Event<
|
|
63225
|
+
ODataModel$AnnotationsLoadedEventParameters,
|
|
63226
|
+
ODataModel
|
|
63227
|
+
>;
|
|
63213
63228
|
|
|
63214
63229
|
export interface ODataModel$BatchRequestCompletedEventParameters {
|
|
63215
63230
|
/**
|
|
@@ -63255,13 +63270,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63255
63270
|
response?: object;
|
|
63256
63271
|
}
|
|
63257
63272
|
|
|
63258
|
-
|
|
63259
|
-
|
|
63260
|
-
|
|
63261
|
-
|
|
63262
|
-
export type $ODataModelBatchRequestCompletedEventParameters = ODataModel$BatchRequestCompletedEventParameters;
|
|
63263
|
-
|
|
63264
|
-
export type ODataModel$BatchRequestCompletedEvent = Event<ODataModel$BatchRequestCompletedEventParameters>;
|
|
63273
|
+
export type ODataModel$BatchRequestCompletedEvent = Event<
|
|
63274
|
+
ODataModel$BatchRequestCompletedEventParameters,
|
|
63275
|
+
ODataModel
|
|
63276
|
+
>;
|
|
63265
63277
|
|
|
63266
63278
|
export interface ODataModel$BatchRequestFailedEventParameters {
|
|
63267
63279
|
/**
|
|
@@ -63307,13 +63319,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63307
63319
|
requests?: any[];
|
|
63308
63320
|
}
|
|
63309
63321
|
|
|
63310
|
-
|
|
63311
|
-
|
|
63312
|
-
|
|
63313
|
-
|
|
63314
|
-
export type $ODataModelBatchRequestFailedEventParameters = ODataModel$BatchRequestFailedEventParameters;
|
|
63315
|
-
|
|
63316
|
-
export type ODataModel$BatchRequestFailedEvent = Event<ODataModel$BatchRequestFailedEventParameters>;
|
|
63322
|
+
export type ODataModel$BatchRequestFailedEvent = Event<
|
|
63323
|
+
ODataModel$BatchRequestFailedEventParameters,
|
|
63324
|
+
ODataModel
|
|
63325
|
+
>;
|
|
63317
63326
|
|
|
63318
63327
|
export interface ODataModel$BatchRequestSentEventParameters {
|
|
63319
63328
|
/**
|
|
@@ -63338,13 +63347,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63338
63347
|
requests?: any[];
|
|
63339
63348
|
}
|
|
63340
63349
|
|
|
63341
|
-
|
|
63342
|
-
|
|
63343
|
-
|
|
63344
|
-
|
|
63345
|
-
export type $ODataModelBatchRequestSentEventParameters = ODataModel$BatchRequestSentEventParameters;
|
|
63346
|
-
|
|
63347
|
-
export type ODataModel$BatchRequestSentEvent = Event<ODataModel$BatchRequestSentEventParameters>;
|
|
63350
|
+
export type ODataModel$BatchRequestSentEvent = Event<
|
|
63351
|
+
ODataModel$BatchRequestSentEventParameters,
|
|
63352
|
+
ODataModel
|
|
63353
|
+
>;
|
|
63348
63354
|
|
|
63349
63355
|
export interface ODataModel$MetadataFailedEventParameters {
|
|
63350
63356
|
/**
|
|
@@ -63378,13 +63384,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63378
63384
|
response?: object;
|
|
63379
63385
|
}
|
|
63380
63386
|
|
|
63381
|
-
|
|
63382
|
-
|
|
63383
|
-
|
|
63384
|
-
|
|
63385
|
-
export type $ODataModelMetadataFailedEventParameters = ODataModel$MetadataFailedEventParameters;
|
|
63386
|
-
|
|
63387
|
-
export type ODataModel$MetadataFailedEvent = Event<ODataModel$MetadataFailedEventParameters>;
|
|
63387
|
+
export type ODataModel$MetadataFailedEvent = Event<
|
|
63388
|
+
ODataModel$MetadataFailedEventParameters,
|
|
63389
|
+
ODataModel
|
|
63390
|
+
>;
|
|
63388
63391
|
|
|
63389
63392
|
export interface ODataModel$MetadataLoadedEventParameters {
|
|
63390
63393
|
/**
|
|
@@ -63393,13 +63396,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63393
63396
|
metadata?: string;
|
|
63394
63397
|
}
|
|
63395
63398
|
|
|
63396
|
-
|
|
63397
|
-
|
|
63398
|
-
|
|
63399
|
-
|
|
63400
|
-
export type $ODataModelMetadataLoadedEventParameters = ODataModel$MetadataLoadedEventParameters;
|
|
63401
|
-
|
|
63402
|
-
export type ODataModel$MetadataLoadedEvent = Event<ODataModel$MetadataLoadedEventParameters>;
|
|
63399
|
+
export type ODataModel$MetadataLoadedEvent = Event<
|
|
63400
|
+
ODataModel$MetadataLoadedEventParameters,
|
|
63401
|
+
ODataModel
|
|
63402
|
+
>;
|
|
63403
63403
|
|
|
63404
63404
|
export interface ODataModel$RequestCompletedEventParameters
|
|
63405
63405
|
extends Model$RequestCompletedEventParameters {
|
|
@@ -63425,13 +63425,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63425
63425
|
response?: object;
|
|
63426
63426
|
}
|
|
63427
63427
|
|
|
63428
|
-
|
|
63429
|
-
|
|
63430
|
-
|
|
63431
|
-
|
|
63432
|
-
export type $ODataModelRequestCompletedEventParameters = ODataModel$RequestCompletedEventParameters;
|
|
63433
|
-
|
|
63434
|
-
export type ODataModel$RequestCompletedEvent = Event<ODataModel$RequestCompletedEventParameters>;
|
|
63428
|
+
export type ODataModel$RequestCompletedEvent = Event<
|
|
63429
|
+
ODataModel$RequestCompletedEventParameters,
|
|
63430
|
+
ODataModel
|
|
63431
|
+
>;
|
|
63435
63432
|
|
|
63436
63433
|
export interface ODataModel$RequestFailedEventParameters
|
|
63437
63434
|
extends Model$RequestFailedEventParameters {
|
|
@@ -63472,13 +63469,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63472
63469
|
response?: object;
|
|
63473
63470
|
}
|
|
63474
63471
|
|
|
63475
|
-
|
|
63476
|
-
|
|
63477
|
-
|
|
63478
|
-
|
|
63479
|
-
export type $ODataModelRequestFailedEventParameters = ODataModel$RequestFailedEventParameters;
|
|
63480
|
-
|
|
63481
|
-
export type ODataModel$RequestFailedEvent = Event<ODataModel$RequestFailedEventParameters>;
|
|
63472
|
+
export type ODataModel$RequestFailedEvent = Event<
|
|
63473
|
+
ODataModel$RequestFailedEventParameters,
|
|
63474
|
+
ODataModel
|
|
63475
|
+
>;
|
|
63482
63476
|
|
|
63483
63477
|
export interface ODataModel$RequestSentEventParameters
|
|
63484
63478
|
extends Model$RequestSentEventParameters {
|
|
@@ -63498,13 +63492,10 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
63498
63492
|
headers?: Record<string, string>;
|
|
63499
63493
|
}
|
|
63500
63494
|
|
|
63501
|
-
|
|
63502
|
-
|
|
63503
|
-
|
|
63504
|
-
|
|
63505
|
-
export type $ODataModelRequestSentEventParameters = ODataModel$RequestSentEventParameters;
|
|
63506
|
-
|
|
63507
|
-
export type ODataModel$RequestSentEvent = Event<ODataModel$RequestSentEventParameters>;
|
|
63495
|
+
export type ODataModel$RequestSentEvent = Event<
|
|
63496
|
+
ODataModel$RequestSentEventParameters,
|
|
63497
|
+
ODataModel
|
|
63498
|
+
>;
|
|
63508
63499
|
}
|
|
63509
63500
|
|
|
63510
63501
|
declare module "sap/ui/model/odata/v2/ODataTreeBinding" {
|
|
@@ -64000,7 +63991,7 @@ declare module "sap/ui/model/odata/v4/AnnotationHelper" {
|
|
|
64000
63991
|
*/
|
|
64001
63992
|
overload?: object;
|
|
64002
63993
|
}
|
|
64003
|
-
): string | Promise<
|
|
63994
|
+
): string | Promise<string>;
|
|
64004
63995
|
/**
|
|
64005
63996
|
* @since 1.43.0
|
|
64006
63997
|
*
|
|
@@ -64066,7 +64057,9 @@ declare module "sap/ui/model/odata/v4/AnnotationHelper" {
|
|
|
64066
64057
|
*/
|
|
64067
64058
|
schemaChildName: string;
|
|
64068
64059
|
}
|
|
64069
|
-
):
|
|
64060
|
+
):
|
|
64061
|
+
| (ValueListType | keyof typeof ValueListType)
|
|
64062
|
+
| Promise<ValueListType | keyof typeof ValueListType>;
|
|
64070
64063
|
/**
|
|
64071
64064
|
* @since 1.43.0
|
|
64072
64065
|
*
|
|
@@ -64111,7 +64104,7 @@ declare module "sap/ui/model/odata/v4/AnnotationHelper" {
|
|
|
64111
64104
|
*/
|
|
64112
64105
|
schemaChildName: string;
|
|
64113
64106
|
}
|
|
64114
|
-
): boolean | Promise<
|
|
64107
|
+
): boolean | Promise<boolean>;
|
|
64115
64108
|
/**
|
|
64116
64109
|
* @since 1.49.0
|
|
64117
64110
|
*
|
|
@@ -64148,7 +64141,7 @@ declare module "sap/ui/model/odata/v4/AnnotationHelper" {
|
|
|
64148
64141
|
*/
|
|
64149
64142
|
context: Context;
|
|
64150
64143
|
}
|
|
64151
|
-
): string | Promise<
|
|
64144
|
+
): string | Promise<string | undefined> | undefined;
|
|
64152
64145
|
/**
|
|
64153
64146
|
* @since 1.63.0
|
|
64154
64147
|
*
|
|
@@ -64406,9 +64399,9 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64406
64399
|
* Note that the promise of a nested context within a deep create is always rejected, even if the deep create
|
|
64407
64400
|
* succeeds. See {@link sap.ui.model.odata.v4.ODataListBinding#create} for more details.
|
|
64408
64401
|
*
|
|
64409
|
-
* @returns A promise
|
|
64410
|
-
* created in the back end. It is rejected with an `Error` instance where `oError.canceled ===
|
|
64411
|
-
* the transient entity is deleted before it is created in the back end, for example via {@link sap.ui.model.odata.v4.Context#delete},
|
|
64402
|
+
* @returns A promise which is resolved without a defined result when the entity represented by this context
|
|
64403
|
+
* has been created in the back end. It is rejected with an `Error` instance where `oError.canceled ===
|
|
64404
|
+
* true` if the transient entity is deleted before it is created in the back end, for example via {@link sap.ui.model.odata.v4.Context#delete},
|
|
64412
64405
|
* {@link sap.ui.model.odata.v4.ODataListBinding#resetChanges} or {@link sap.ui.model.odata.v4.ODataModel#resetChanges},
|
|
64413
64406
|
* and for all nested contexts within a deep create. It is rejected with an `Error` instance without `oError.canceled`
|
|
64414
64407
|
* if loading of $metadata fails. Returns `undefined` if the context has not been created using {@link sap.ui.model.odata.v4.ODataListBinding#create}.
|
|
@@ -64446,8 +64439,8 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64446
64439
|
* sap.ui.model.odata.v4.ODataListBinding#resetChanges
|
|
64447
64440
|
* sap.ui.model.odata.v4.ODataModel#resetChanges
|
|
64448
64441
|
*
|
|
64449
|
-
* @returns A promise which is resolved without a result in case of success, or rejected with an
|
|
64450
|
-
* of `Error` in case of failure, for example if:
|
|
64442
|
+
* @returns A promise which is resolved without a defined result in case of success, or rejected with an
|
|
64443
|
+
* instance of `Error` in case of failure, for example if:
|
|
64451
64444
|
* the given context does not point to an entity, the deletion on the server fails, the deletion
|
|
64452
64445
|
* is canceled via `resetChanges` (in this case the error instance has the property `canceled` with value
|
|
64453
64446
|
* `true`). The error instance has the property `isConcurrentModification` with value `true` in case
|
|
@@ -64471,7 +64464,7 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64471
64464
|
* ID is used.
|
|
64472
64465
|
*/
|
|
64473
64466
|
bDoNotRequestCount?: boolean
|
|
64474
|
-
): Promise<
|
|
64467
|
+
): Promise<void>;
|
|
64475
64468
|
/**
|
|
64476
64469
|
* @since 1.41.0
|
|
64477
64470
|
*
|
|
@@ -64737,7 +64730,7 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64737
64730
|
* case of success, or rejected with an instance of `Error` in case of failure, e.g. if the given context
|
|
64738
64731
|
* does not point to an entity
|
|
64739
64732
|
*/
|
|
64740
|
-
requestCanonicalPath(): Promise<
|
|
64733
|
+
requestCanonicalPath(): Promise<string>;
|
|
64741
64734
|
/**
|
|
64742
64735
|
* @since 1.39.0
|
|
64743
64736
|
*
|
|
@@ -64790,8 +64783,8 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64790
64783
|
* Refreshes the single entity represented by this context and returns a promise to wait for it. See {@link #refresh }
|
|
64791
64784
|
* for details. Use {@link #refresh} if you do not need the promise.
|
|
64792
64785
|
*
|
|
64793
|
-
* @returns A promise which
|
|
64794
|
-
* an
|
|
64786
|
+
* @returns A promise which is resolved without a defined result when the refresh is finished, or rejected
|
|
64787
|
+
* with an error if the refresh failed
|
|
64795
64788
|
*/
|
|
64796
64789
|
requestRefresh(
|
|
64797
64790
|
/**
|
|
@@ -64802,7 +64795,7 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64802
64795
|
* Allows to remove the context
|
|
64803
64796
|
*/
|
|
64804
64797
|
bAllowRemoval?: boolean
|
|
64805
|
-
): Promise<
|
|
64798
|
+
): Promise<void>;
|
|
64806
64799
|
/**
|
|
64807
64800
|
* @since 1.61.0
|
|
64808
64801
|
*
|
|
@@ -64843,10 +64836,10 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64843
64836
|
* sap.ui.model.odata.v4.ODataListBinding#getHeaderContext
|
|
64844
64837
|
* sap.ui.model.odata.v4.ODataModel#bindContext
|
|
64845
64838
|
*
|
|
64846
|
-
* @returns
|
|
64847
|
-
* Use it to set fields affected by side effects to read-only before {@link #requestSideEffects}
|
|
64848
|
-
* them editable again when the promise resolves; in the error handler, you can repeat the loading
|
|
64849
|
-
* effects.
|
|
64839
|
+
* @returns A promise which is resolved without a defined result, or rejected with an error if loading of
|
|
64840
|
+
* side effects fails. Use it to set fields affected by side effects to read-only before {@link #requestSideEffects }
|
|
64841
|
+
* and make them editable again when the promise resolves; in the error handler, you can repeat the loading
|
|
64842
|
+
* of side effects.
|
|
64850
64843
|
* The promise is rejected if the call wants to refresh a whole list binding (via header context or an
|
|
64851
64844
|
* absolute path), but the deletion of a row context (see {@link #delete}) is pending with a different group
|
|
64852
64845
|
* ID.
|
|
@@ -64880,7 +64873,7 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64880
64873
|
* are no pending changes for the affected properties.
|
|
64881
64874
|
*/
|
|
64882
64875
|
sGroupId?: string
|
|
64883
|
-
): Promise<
|
|
64876
|
+
): Promise<void>;
|
|
64884
64877
|
/**
|
|
64885
64878
|
* @since 1.113.0
|
|
64886
64879
|
*
|
|
@@ -64895,7 +64888,7 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64895
64888
|
* @returns A promise which is resolved without a defined result as soon as all changes in the context and
|
|
64896
64889
|
* its current dependent bindings are canceled
|
|
64897
64890
|
*/
|
|
64898
|
-
resetChanges(): Promise<
|
|
64891
|
+
resetChanges(): Promise<void>;
|
|
64899
64892
|
/**
|
|
64900
64893
|
* @since 1.81.0
|
|
64901
64894
|
*
|
|
@@ -64944,11 +64937,11 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64944
64937
|
* sap.ui.model.odata.v4.ODataListBinding#event:patchSent
|
|
64945
64938
|
* sap.ui.model.odata.v4.ODataListBinding#event:patchCompleted
|
|
64946
64939
|
*
|
|
64947
|
-
* @returns A promise which is resolved without a result in case of success, or rejected with an
|
|
64948
|
-
* of `Error` in case of failure, for example if the annotation belongs to the read-only namespace
|
|
64949
|
-
* With `bRetry` it is only rejected with an `Error` instance where `oError.canceled === true`
|
|
64950
|
-
* entity has been deleted while the request was pending or the property has been reset via the
|
|
64951
|
-
*
|
|
64940
|
+
* @returns A promise which is resolved without a defined result in case of success, or rejected with an
|
|
64941
|
+
* instance of `Error` in case of failure, for example if the annotation belongs to the read-only namespace
|
|
64942
|
+
* "@$ui5.*". With `bRetry` it is only rejected with an `Error` instance where `oError.canceled === true`
|
|
64943
|
+
* when the entity has been deleted while the request was pending or the property has been reset via the
|
|
64944
|
+
* methods
|
|
64952
64945
|
* {@link sap.ui.model.odata.v4.ODataModel#resetChanges} {@link sap.ui.model.odata.v4.ODataContextBinding#resetChanges }
|
|
64953
64946
|
* or {@link sap.ui.model.odata.v4.ODataListBinding#resetChanges}.
|
|
64954
64947
|
*/
|
|
@@ -64982,7 +64975,7 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
64982
64975
|
* 'success' is fired.
|
|
64983
64976
|
*/
|
|
64984
64977
|
bRetry?: boolean
|
|
64985
|
-
): Promise<
|
|
64978
|
+
): Promise<void>;
|
|
64986
64979
|
/**
|
|
64987
64980
|
* @experimental (since 1.111.0)
|
|
64988
64981
|
*
|
|
@@ -65195,7 +65188,7 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
|
|
|
65195
65188
|
/**
|
|
65196
65189
|
* The function to call when the event occurs
|
|
65197
65190
|
*/
|
|
65198
|
-
fnFunction:
|
|
65191
|
+
fnFunction: (evt: ODataContextBinding$PatchCompletedEvent) => void,
|
|
65199
65192
|
/**
|
|
65200
65193
|
* Object on which to call the given function
|
|
65201
65194
|
*/
|
|
@@ -65289,7 +65282,7 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
|
|
|
65289
65282
|
* binding parameter is set to `true`. Since 1.97.0.
|
|
65290
65283
|
*/
|
|
65291
65284
|
bReplaceWithRVC?: boolean
|
|
65292
|
-
): Promise<
|
|
65285
|
+
): Promise<Context | undefined>;
|
|
65293
65286
|
/**
|
|
65294
65287
|
* @since 1.39.0
|
|
65295
65288
|
*
|
|
@@ -65448,15 +65441,15 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
|
|
|
65448
65441
|
* Refreshes the binding and returns a promise to wait for it. See {@link #refresh} for details. Use {@link #refresh }
|
|
65449
65442
|
* if you do not need the promise.
|
|
65450
65443
|
*
|
|
65451
|
-
* @returns A promise which
|
|
65452
|
-
* an
|
|
65444
|
+
* @returns A promise which is resolved without a defined result when the refresh is finished, or rejected
|
|
65445
|
+
* with an error if the refresh failed
|
|
65453
65446
|
*/
|
|
65454
65447
|
requestRefresh(
|
|
65455
65448
|
/**
|
|
65456
65449
|
* The group ID to be used
|
|
65457
65450
|
*/
|
|
65458
65451
|
sGroupId?: string
|
|
65459
|
-
): Promise<
|
|
65452
|
+
): Promise<void>;
|
|
65460
65453
|
/**
|
|
65461
65454
|
* @since 1.40.1
|
|
65462
65455
|
*
|
|
@@ -65466,7 +65459,7 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
|
|
|
65466
65459
|
* @returns A promise which is resolved without a defined result as soon as all changes in the binding itself
|
|
65467
65460
|
* and all dependent bindings are canceled (since 1.72.0)
|
|
65468
65461
|
*/
|
|
65469
|
-
resetChanges(): Promise<
|
|
65462
|
+
resetChanges(): Promise<void>;
|
|
65470
65463
|
/**
|
|
65471
65464
|
* @since 1.37.0
|
|
65472
65465
|
*
|
|
@@ -65526,55 +65519,51 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
|
|
|
65526
65519
|
export interface ODataContextBinding$ChangeEventParameters
|
|
65527
65520
|
extends Binding$ChangeEventParameters {}
|
|
65528
65521
|
|
|
65529
|
-
|
|
65530
|
-
|
|
65531
|
-
|
|
65532
|
-
|
|
65533
|
-
export type $ODataContextBindingChangeEventParameters = ODataContextBinding$ChangeEventParameters;
|
|
65534
|
-
|
|
65535
|
-
export type ODataContextBinding$ChangeEvent = Event<ODataContextBinding$ChangeEventParameters>;
|
|
65522
|
+
export type ODataContextBinding$ChangeEvent = Event<
|
|
65523
|
+
ODataContextBinding$ChangeEventParameters,
|
|
65524
|
+
ODataContextBinding
|
|
65525
|
+
>;
|
|
65536
65526
|
|
|
65537
65527
|
export interface ODataContextBinding$DataReceivedEventParameters
|
|
65538
|
-
extends Binding$DataReceivedEventParameters {
|
|
65539
|
-
|
|
65540
|
-
|
|
65541
|
-
|
|
65542
|
-
|
|
65543
|
-
|
|
65544
|
-
|
|
65528
|
+
extends Binding$DataReceivedEventParameters {
|
|
65529
|
+
/**
|
|
65530
|
+
* The error object if a back-end request failed. If there are multiple failed back-end requests, the error
|
|
65531
|
+
* of the first one is provided.
|
|
65532
|
+
*/
|
|
65533
|
+
error?: Error;
|
|
65534
|
+
}
|
|
65545
65535
|
|
|
65546
|
-
export type ODataContextBinding$DataReceivedEvent = Event<
|
|
65536
|
+
export type ODataContextBinding$DataReceivedEvent = Event<
|
|
65537
|
+
ODataContextBinding$DataReceivedEventParameters,
|
|
65538
|
+
ODataContextBinding
|
|
65539
|
+
>;
|
|
65547
65540
|
|
|
65548
65541
|
export interface ODataContextBinding$DataRequestedEventParameters
|
|
65549
65542
|
extends Binding$DataRequestedEventParameters {}
|
|
65550
65543
|
|
|
65551
|
-
|
|
65552
|
-
|
|
65553
|
-
|
|
65554
|
-
|
|
65555
|
-
export type $ODataContextBindingDataRequestedEventParameters = ODataContextBinding$DataRequestedEventParameters;
|
|
65556
|
-
|
|
65557
|
-
export type ODataContextBinding$DataRequestedEvent = Event<ODataContextBinding$DataRequestedEventParameters>;
|
|
65558
|
-
|
|
65559
|
-
export interface ODataContextBinding$PatchCompletedEventParameters {}
|
|
65544
|
+
export type ODataContextBinding$DataRequestedEvent = Event<
|
|
65545
|
+
ODataContextBinding$DataRequestedEventParameters,
|
|
65546
|
+
ODataContextBinding
|
|
65547
|
+
>;
|
|
65560
65548
|
|
|
65561
|
-
|
|
65562
|
-
|
|
65563
|
-
|
|
65564
|
-
|
|
65565
|
-
|
|
65549
|
+
export interface ODataContextBinding$PatchCompletedEventParameters {
|
|
65550
|
+
/**
|
|
65551
|
+
* Whether all PATCHes are successfully processed
|
|
65552
|
+
*/
|
|
65553
|
+
success?: boolean;
|
|
65554
|
+
}
|
|
65566
65555
|
|
|
65567
|
-
export type ODataContextBinding$PatchCompletedEvent = Event<
|
|
65556
|
+
export type ODataContextBinding$PatchCompletedEvent = Event<
|
|
65557
|
+
ODataContextBinding$PatchCompletedEventParameters,
|
|
65558
|
+
ODataContextBinding
|
|
65559
|
+
>;
|
|
65568
65560
|
|
|
65569
65561
|
export interface ODataContextBinding$PatchSentEventParameters {}
|
|
65570
65562
|
|
|
65571
|
-
|
|
65572
|
-
|
|
65573
|
-
|
|
65574
|
-
|
|
65575
|
-
export type $ODataContextBindingPatchSentEventParameters = ODataContextBinding$PatchSentEventParameters;
|
|
65576
|
-
|
|
65577
|
-
export type ODataContextBinding$PatchSentEvent = Event<ODataContextBinding$PatchSentEventParameters>;
|
|
65563
|
+
export type ODataContextBinding$PatchSentEvent = Event<
|
|
65564
|
+
ODataContextBinding$PatchSentEventParameters,
|
|
65565
|
+
ODataContextBinding
|
|
65566
|
+
>;
|
|
65578
65567
|
}
|
|
65579
65568
|
|
|
65580
65569
|
declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
@@ -65604,6 +65593,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
65604
65593
|
|
|
65605
65594
|
import Event from "sap/ui/base/Event";
|
|
65606
65595
|
|
|
65596
|
+
import ChangeReason from "sap/ui/model/ChangeReason";
|
|
65597
|
+
|
|
65607
65598
|
/**
|
|
65608
65599
|
* @since 1.37.0
|
|
65609
65600
|
*
|
|
@@ -65814,12 +65805,18 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
65814
65805
|
* parent's navigation property, which is sent with the payload of the parent entity. Such a nested context
|
|
65815
65806
|
* cannot be inactive.
|
|
65816
65807
|
*
|
|
65817
|
-
* **
|
|
65818
|
-
*
|
|
65819
|
-
*
|
|
65820
|
-
*
|
|
65821
|
-
*
|
|
65822
|
-
*
|
|
65808
|
+
* **Note:** After a succesful creation of the main entity the context returned for a nested entity is no
|
|
65809
|
+
* longer valid. Do not use the {@link sap.ui.model.odata.v4.Context#created created} promise of such a
|
|
65810
|
+
* context! New contexts are created for the nested collection because it is not possible to reliably assign
|
|
65811
|
+
* the response entities to those of the request, especially if the count differs. For this reason, the
|
|
65812
|
+
* `created` promises of all nested contexts are always rejected with an instance of `Error`, even if the
|
|
65813
|
+
* deep create succeeds. This error always has the property `canceled` with the value `true`.
|
|
65814
|
+
*
|
|
65815
|
+
* Since 1.117.0 deep create also supports single-valued navigation properties; no API call is required
|
|
65816
|
+
* in this case. Simply bind properties of the related entity relative to a transient context. An update
|
|
65817
|
+
* to the property adds it to the POST request of the parent entity, and by this the create becomes deep.
|
|
65818
|
+
*
|
|
65819
|
+
* **Note**: Deep create for single-valued navigation properties is **experimental**.
|
|
65823
65820
|
*
|
|
65824
65821
|
* Deep create requires the `autoExpandSelect` parameter at the {@link sap.ui.model.odata.v4.ODataModel#constructor model}.
|
|
65825
65822
|
* The refresh after a deep create is optimized. Only the (navigation) properties missing from the POST
|
|
@@ -65831,6 +65828,14 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
65831
65828
|
* has been read or if the system query option `$count` is `true` and the binding has processed at least
|
|
65832
65829
|
* one request.
|
|
65833
65830
|
*
|
|
65831
|
+
* Creating a new child beneath an existing and visible parent node (which must either be a leaf or expanded,
|
|
65832
|
+
* but not collapsed) is supported (@experimental as of version 1.117.0) in case of a recursive hierarchy
|
|
65833
|
+
* (see {@link #setAggregation}). The parent node must be identified via a {@link sap.ui.model.odata.v4.Context }
|
|
65834
|
+
* instance given as `oInitialData["@$ui5.node.parent"]`. `oAggregation.expandTo` (see {@link #setAggregation})
|
|
65835
|
+
* must be one, `bSkipRefresh` must be set, but both `bAtEnd` and `bInactive` must not be set. No other
|
|
65836
|
+
* creation must be pending, and no other modification (including collapse of some ancestor node) must happen
|
|
65837
|
+
* while this creation is pending!
|
|
65838
|
+
*
|
|
65834
65839
|
* @returns The context object for the created entity; its method {@link sap.ui.model.odata.v4.Context#created }
|
|
65835
65840
|
* returns a promise that is resolved when the creation is finished
|
|
65836
65841
|
*/
|
|
@@ -65840,8 +65845,11 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
65840
65845
|
*/
|
|
65841
65846
|
oInitialData?: object,
|
|
65842
65847
|
/**
|
|
65843
|
-
* Whether an automatic refresh of the created entity will be skipped
|
|
65844
|
-
*
|
|
65848
|
+
* Whether an automatic refresh of the created entity will be skipped.
|
|
65849
|
+
* **Note:** Do not use this parameter for a deep create. It leads to multiple single row requests if the
|
|
65850
|
+
* POST response did not supply all properties of the nested list. If it is not set, the model checks whether
|
|
65851
|
+
* all required properties and child entities are available on the client and requests only data that is
|
|
65852
|
+
* missing.
|
|
65845
65853
|
*/
|
|
65846
65854
|
bSkipRefresh?: boolean,
|
|
65847
65855
|
/**
|
|
@@ -65896,7 +65904,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
65896
65904
|
/**
|
|
65897
65905
|
* The function to call when the event occurs
|
|
65898
65906
|
*/
|
|
65899
|
-
fnFunction:
|
|
65907
|
+
fnFunction: (evt: ODataListBinding$CreateCompletedEvent) => void,
|
|
65900
65908
|
/**
|
|
65901
65909
|
* Object on which to call the given function
|
|
65902
65910
|
*/
|
|
@@ -65913,7 +65921,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
65913
65921
|
/**
|
|
65914
65922
|
* The function to call when the event occurs
|
|
65915
65923
|
*/
|
|
65916
|
-
fnFunction:
|
|
65924
|
+
fnFunction: (evt: ODataListBinding$CreateSentEvent) => void,
|
|
65917
65925
|
/**
|
|
65918
65926
|
* Object on which to call the given function
|
|
65919
65927
|
*/
|
|
@@ -65930,7 +65938,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
65930
65938
|
/**
|
|
65931
65939
|
* The function to call when the event occurs
|
|
65932
65940
|
*/
|
|
65933
|
-
fnFunction:
|
|
65941
|
+
fnFunction: (evt: ODataListBinding$PatchCompletedEvent) => void,
|
|
65934
65942
|
/**
|
|
65935
65943
|
* Object on which to call the given function
|
|
65936
65944
|
*/
|
|
@@ -66131,8 +66139,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
66131
66139
|
*
|
|
66132
66140
|
* Additionally, you must be aware of server-driven paging and be ready to send a follow-up request if the
|
|
66133
66141
|
* response contains `@odata.nextlink`.
|
|
66134
|
-
*
|
|
66135
|
-
*
|
|
66142
|
+
*
|
|
66143
|
+
* The URL cannot be determined synchronously in all cases; use {@link #requestDownloadUrl} to allow for
|
|
66144
|
+
* asynchronous determination then.
|
|
66136
66145
|
*
|
|
66137
66146
|
* @returns The download URL
|
|
66138
66147
|
*/
|
|
@@ -66413,15 +66422,15 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
66413
66422
|
* Refreshes the binding and returns a promise to wait for it. See {@link #refresh} for details. Use {@link #refresh }
|
|
66414
66423
|
* if you do not need the promise.
|
|
66415
66424
|
*
|
|
66416
|
-
* @returns A promise which
|
|
66417
|
-
* an
|
|
66425
|
+
* @returns A promise which is resolved without a defined result when the refresh is finished, or rejected
|
|
66426
|
+
* with an error if the refresh failed
|
|
66418
66427
|
*/
|
|
66419
66428
|
requestRefresh(
|
|
66420
66429
|
/**
|
|
66421
66430
|
* The group ID to be used
|
|
66422
66431
|
*/
|
|
66423
66432
|
sGroupId?: string
|
|
66424
|
-
): Promise<
|
|
66433
|
+
): Promise<void>;
|
|
66425
66434
|
/**
|
|
66426
66435
|
* @since 1.40.1
|
|
66427
66436
|
*
|
|
@@ -66431,7 +66440,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
66431
66440
|
* @returns A promise which is resolved without a defined result as soon as all changes in the binding itself
|
|
66432
66441
|
* and all dependent bindings are canceled (since 1.72.0)
|
|
66433
66442
|
*/
|
|
66434
|
-
resetChanges(): Promise<
|
|
66443
|
+
resetChanges(): Promise<void>;
|
|
66435
66444
|
/**
|
|
66436
66445
|
* @since 1.37.0
|
|
66437
66446
|
*
|
|
@@ -66461,7 +66470,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
66461
66470
|
* compatible with this approach, and it cannot be combined with group levels.
|
|
66462
66471
|
* Since 1.105.0, either a recursive hierarchy or pure data aggregation is supported, but no mix; `hierarchyQualifier`
|
|
66463
66472
|
* is the leading property that decides between those two use cases - this is an **experimental API** and
|
|
66464
|
-
* is only supported if the model uses the `autoExpandSelect` parameter!
|
|
66473
|
+
* is only supported if the model uses the `autoExpandSelect` parameter! Since 1.117.0, it is available
|
|
66474
|
+
* for read-only hierarchies.
|
|
66465
66475
|
*/
|
|
66466
66476
|
oAggregation?: {
|
|
66467
66477
|
/**
|
|
@@ -66483,8 +66493,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
66483
66493
|
aggregate?: object;
|
|
66484
66494
|
/**
|
|
66485
66495
|
* The number (as a positive integer) of different levels initially available without calling {@link sap.ui.model.odata.v4.Context#expand }
|
|
66486
|
-
* (@experimental as of version 1.105.0
|
|
66487
|
-
* are on the first level. By default, only root nodes are
|
|
66496
|
+
* (@experimental as of version 1.105.0; available for read-only hierarchies since 1.117.0), supported only
|
|
66497
|
+
* if a `hierarchyQualifier` is given. Root nodes are on the first level. By default, only root nodes are
|
|
66498
|
+
* available; they are not yet expanded.
|
|
66488
66499
|
*/
|
|
66489
66500
|
expandTo?: number;
|
|
66490
66501
|
/**
|
|
@@ -66509,9 +66520,10 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
66509
66520
|
groupLevels?: string[];
|
|
66510
66521
|
/**
|
|
66511
66522
|
* The qualifier for the pair of "Org.OData.Aggregation.V1.RecursiveHierarchy" and "com.sap.vocabularies.Hierarchy.v1.RecursiveHierarchy"
|
|
66512
|
-
* annotations at this binding's entity type (@experimental as of version 1.105.0
|
|
66513
|
-
* hierarchy without data aggregation is defined, and
|
|
66514
|
-
* and `search`. A recursive hierarchy cannot be combined
|
|
66523
|
+
* annotations at this binding's entity type (@experimental as of version 1.105.0; available for read-only
|
|
66524
|
+
* hierarchies since 1.117.0). If present, a recursive hierarchy without data aggregation is defined, and
|
|
66525
|
+
* the only other supported properties are `expandTo` and `search`. A recursive hierarchy cannot be combined
|
|
66526
|
+
* with:
|
|
66515
66527
|
* "$search", the `vGroup` parameter of {@link sap.ui.model.Sorter} (since 1.107.0), shared
|
|
66516
66528
|
* requests (since 1.108.0).
|
|
66517
66529
|
*/
|
|
@@ -66664,97 +66676,119 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
66664
66676
|
}
|
|
66665
66677
|
|
|
66666
66678
|
export interface ODataListBinding$ChangeEventParameters
|
|
66667
|
-
extends Binding$ChangeEventParameters {
|
|
66668
|
-
|
|
66669
|
-
|
|
66670
|
-
|
|
66671
|
-
|
|
66672
|
-
|
|
66673
|
-
|
|
66679
|
+
extends Binding$ChangeEventParameters {
|
|
66680
|
+
/**
|
|
66681
|
+
* During automatic determination of $expand and $select, a "virtual" context is first added with detailed
|
|
66682
|
+
* reason "AddVirtualContext" and then removed with detailed reason "RemoveVirtualContext" (since 1.69.0);
|
|
66683
|
+
* `undefined` is used in all other cases
|
|
66684
|
+
*/
|
|
66685
|
+
detailedReason?: string;
|
|
66686
|
+
}
|
|
66674
66687
|
|
|
66675
|
-
export type ODataListBinding$ChangeEvent = Event<
|
|
66688
|
+
export type ODataListBinding$ChangeEvent = Event<
|
|
66689
|
+
ODataListBinding$ChangeEventParameters,
|
|
66690
|
+
ODataListBinding
|
|
66691
|
+
>;
|
|
66676
66692
|
|
|
66677
66693
|
export interface ODataListBinding$CreateActivateEventParameters {}
|
|
66678
66694
|
|
|
66679
|
-
|
|
66680
|
-
|
|
66681
|
-
|
|
66682
|
-
|
|
66683
|
-
export type $ODataListBindingCreateActivateEventParameters = ODataListBinding$CreateActivateEventParameters;
|
|
66695
|
+
export type ODataListBinding$CreateActivateEvent = Event<
|
|
66696
|
+
ODataListBinding$CreateActivateEventParameters,
|
|
66697
|
+
ODataListBinding
|
|
66698
|
+
>;
|
|
66684
66699
|
|
|
66685
|
-
export
|
|
66686
|
-
|
|
66687
|
-
|
|
66688
|
-
|
|
66689
|
-
|
|
66690
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$CreateCompletedEventParameters'
|
|
66691
|
-
* in 1.115.1 and any later releases.
|
|
66692
|
-
*/
|
|
66693
|
-
export type $ODataListBindingCreateCompletedEventParameters = ODataListBinding$CreateCompletedEventParameters;
|
|
66700
|
+
export interface ODataListBinding$CreateCompletedEventParameters {
|
|
66701
|
+
/**
|
|
66702
|
+
* The context for the created entity
|
|
66703
|
+
*/
|
|
66704
|
+
context?: Context;
|
|
66694
66705
|
|
|
66695
|
-
|
|
66706
|
+
/**
|
|
66707
|
+
* Whether the POST was successfully processed; in case of an error, the error is already reported to the
|
|
66708
|
+
* {@link sap.ui.core.message.MessageManager}
|
|
66709
|
+
*/
|
|
66710
|
+
success?: boolean;
|
|
66711
|
+
}
|
|
66696
66712
|
|
|
66697
|
-
export
|
|
66713
|
+
export type ODataListBinding$CreateCompletedEvent = Event<
|
|
66714
|
+
ODataListBinding$CreateCompletedEventParameters,
|
|
66715
|
+
ODataListBinding
|
|
66716
|
+
>;
|
|
66698
66717
|
|
|
66699
|
-
|
|
66700
|
-
|
|
66701
|
-
|
|
66702
|
-
|
|
66703
|
-
|
|
66718
|
+
export interface ODataListBinding$CreateSentEventParameters {
|
|
66719
|
+
/**
|
|
66720
|
+
* The context for the created entity
|
|
66721
|
+
*/
|
|
66722
|
+
context?: Context;
|
|
66723
|
+
}
|
|
66704
66724
|
|
|
66705
|
-
export type ODataListBinding$CreateSentEvent = Event<
|
|
66725
|
+
export type ODataListBinding$CreateSentEvent = Event<
|
|
66726
|
+
ODataListBinding$CreateSentEventParameters,
|
|
66727
|
+
ODataListBinding
|
|
66728
|
+
>;
|
|
66706
66729
|
|
|
66707
66730
|
export interface ODataListBinding$DataReceivedEventParameters
|
|
66708
|
-
extends Binding$DataReceivedEventParameters {
|
|
66709
|
-
|
|
66710
|
-
|
|
66711
|
-
|
|
66712
|
-
|
|
66713
|
-
|
|
66714
|
-
|
|
66731
|
+
extends Binding$DataReceivedEventParameters {
|
|
66732
|
+
/**
|
|
66733
|
+
* The error object if a back-end request failed. If there are multiple failed back-end requests, the error
|
|
66734
|
+
* of the first one is provided.
|
|
66735
|
+
*/
|
|
66736
|
+
error?: Error;
|
|
66737
|
+
}
|
|
66715
66738
|
|
|
66716
|
-
export type ODataListBinding$DataReceivedEvent = Event<
|
|
66739
|
+
export type ODataListBinding$DataReceivedEvent = Event<
|
|
66740
|
+
ODataListBinding$DataReceivedEventParameters,
|
|
66741
|
+
ODataListBinding
|
|
66742
|
+
>;
|
|
66717
66743
|
|
|
66718
66744
|
export interface ODataListBinding$DataRequestedEventParameters
|
|
66719
66745
|
extends Binding$DataRequestedEventParameters {}
|
|
66720
66746
|
|
|
66721
|
-
|
|
66722
|
-
|
|
66723
|
-
|
|
66724
|
-
|
|
66725
|
-
export type $ODataListBindingDataRequestedEventParameters = ODataListBinding$DataRequestedEventParameters;
|
|
66726
|
-
|
|
66727
|
-
export type ODataListBinding$DataRequestedEvent = Event<ODataListBinding$DataRequestedEventParameters>;
|
|
66747
|
+
export type ODataListBinding$DataRequestedEvent = Event<
|
|
66748
|
+
ODataListBinding$DataRequestedEventParameters,
|
|
66749
|
+
ODataListBinding
|
|
66750
|
+
>;
|
|
66728
66751
|
|
|
66729
|
-
export interface ODataListBinding$PatchCompletedEventParameters {
|
|
66730
|
-
|
|
66731
|
-
|
|
66732
|
-
|
|
66733
|
-
|
|
66734
|
-
|
|
66735
|
-
export type $ODataListBindingPatchCompletedEventParameters = ODataListBinding$PatchCompletedEventParameters;
|
|
66752
|
+
export interface ODataListBinding$PatchCompletedEventParameters {
|
|
66753
|
+
/**
|
|
66754
|
+
* Whether all PATCHes are successfully processed
|
|
66755
|
+
*/
|
|
66756
|
+
success?: boolean;
|
|
66757
|
+
}
|
|
66736
66758
|
|
|
66737
|
-
export type ODataListBinding$PatchCompletedEvent = Event<
|
|
66759
|
+
export type ODataListBinding$PatchCompletedEvent = Event<
|
|
66760
|
+
ODataListBinding$PatchCompletedEventParameters,
|
|
66761
|
+
ODataListBinding
|
|
66762
|
+
>;
|
|
66738
66763
|
|
|
66739
66764
|
export interface ODataListBinding$PatchSentEventParameters {}
|
|
66740
66765
|
|
|
66741
|
-
|
|
66742
|
-
|
|
66743
|
-
|
|
66744
|
-
|
|
66745
|
-
|
|
66746
|
-
|
|
66747
|
-
|
|
66748
|
-
|
|
66749
|
-
|
|
66750
|
-
|
|
66751
|
-
|
|
66752
|
-
|
|
66753
|
-
|
|
66754
|
-
|
|
66755
|
-
|
|
66766
|
+
export type ODataListBinding$PatchSentEvent = Event<
|
|
66767
|
+
ODataListBinding$PatchSentEventParameters,
|
|
66768
|
+
ODataListBinding
|
|
66769
|
+
>;
|
|
66770
|
+
|
|
66771
|
+
export interface ODataListBinding$RefreshEventParameters {
|
|
66772
|
+
/**
|
|
66773
|
+
* The reason for the 'refresh' event could be
|
|
66774
|
+
* {@link sap.ui.model.ChangeReason.Context Context} when the binding's parent context is changed,
|
|
66775
|
+
* {@link sap.ui.model.ChangeReason.Filter Filter} on {@link #filter} and {@link #setAggregation},
|
|
66776
|
+
* {@link sap.ui.model.ChangeReason.Refresh Refresh} on {@link #refresh}, or when the binding is initialized,
|
|
66777
|
+
* {@link sap.ui.model.ChangeReason.Sort Sort} on {@link #sort}. {@link #changeParameters} leads
|
|
66778
|
+
* to {@link sap.ui.model.ChangeReason.Filter Filter} if one of the parameters '$filter' and '$search' is
|
|
66779
|
+
* changed, otherwise it leads to {@link sap.ui.model.ChangeReason.Sort Sort} if the parameter '$orderby'
|
|
66780
|
+
* is changed; in other cases, it leads to {@link sap.ui.model.ChangeReason.Change Change}.
|
|
66781
|
+
* If APIs that would normally fire change events have been called while the binding is suspended, {@link #resume }
|
|
66782
|
+
* leads to the "strongest" change reason in the order {@link sap.ui.model.ChangeReason.Filter Filter},
|
|
66783
|
+
* {@link sap.ui.model.ChangeReason.Sort Sort}, {@link sap.ui.model.ChangeReason.Refresh Refresh}, {@link sap.ui.model.ChangeReason.Change Change}.
|
|
66784
|
+
*/
|
|
66785
|
+
reason?: ChangeReason;
|
|
66786
|
+
}
|
|
66756
66787
|
|
|
66757
|
-
export type ODataListBinding$RefreshEvent = Event<
|
|
66788
|
+
export type ODataListBinding$RefreshEvent = Event<
|
|
66789
|
+
ODataListBinding$RefreshEventParameters,
|
|
66790
|
+
ODataListBinding
|
|
66791
|
+
>;
|
|
66758
66792
|
}
|
|
66759
66793
|
|
|
66760
66794
|
declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
@@ -67164,7 +67198,7 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
67164
67198
|
*
|
|
67165
67199
|
* @returns A promise which is resolved with the OData metadata as a "JSON" object as soon as it is available.
|
|
67166
67200
|
*/
|
|
67167
|
-
requestData(): Promise<
|
|
67201
|
+
requestData(): Promise<object>;
|
|
67168
67202
|
/**
|
|
67169
67203
|
* @since 1.37.0
|
|
67170
67204
|
*
|
|
@@ -67391,7 +67425,7 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
67391
67425
|
* are passed "as is".
|
|
67392
67426
|
*/
|
|
67393
67427
|
mFormatOptions?: object
|
|
67394
|
-
): Promise<
|
|
67428
|
+
): Promise<ODataType>;
|
|
67395
67429
|
/**
|
|
67396
67430
|
* @since 1.63.0
|
|
67397
67431
|
*
|
|
@@ -67486,7 +67520,7 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
67486
67520
|
* annotation. Supported since 1.84.0
|
|
67487
67521
|
*/
|
|
67488
67522
|
oContext?: Context1
|
|
67489
|
-
): Promise<
|
|
67523
|
+
): Promise<Record<string, object>>;
|
|
67490
67524
|
/**
|
|
67491
67525
|
* @since 1.47.0
|
|
67492
67526
|
*
|
|
@@ -67502,7 +67536,7 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
67502
67536
|
* An absolute path to an OData property within the OData data model
|
|
67503
67537
|
*/
|
|
67504
67538
|
sPropertyPath: string
|
|
67505
|
-
): Promise<
|
|
67539
|
+
): Promise<ValueListType | keyof typeof ValueListType>;
|
|
67506
67540
|
/**
|
|
67507
67541
|
* @since 1.37.0
|
|
67508
67542
|
*
|
|
@@ -67681,7 +67715,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
67681
67715
|
/**
|
|
67682
67716
|
* (Controls synchronization between different bindings which refer to the same data for the case data changes
|
|
67683
67717
|
* in one binding. Must be set to 'None' which means bindings are not synchronized at all; all other values
|
|
67684
|
-
* are not supported and lead to an error.) **deprecated:** As of
|
|
67718
|
+
* are not supported and lead to an error.) **deprecated:** As of Version 1.110.0, this parameter is optional;
|
|
67685
67719
|
* see also {@link https://ui5.sap.com/#/topic/648e360fa22d46248ca783dc6eb44531 Data Reuse}
|
|
67686
67720
|
*/
|
|
67687
67721
|
synchronizationMode?: string;
|
|
@@ -67690,6 +67724,11 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
67690
67724
|
* is used. Valid update group IDs are `undefined`, '$auto', '$direct' or an application group ID.
|
|
67691
67725
|
*/
|
|
67692
67726
|
updateGroupId?: string;
|
|
67727
|
+
/**
|
|
67728
|
+
* Whether the XMLHttpRequest is called with `withCredentials`, so that user credentials are included in
|
|
67729
|
+
* cross-origin requests by the browser (@experimental as of Version 1.117.0)
|
|
67730
|
+
*/
|
|
67731
|
+
withCredentials?: boolean;
|
|
67693
67732
|
}
|
|
67694
67733
|
);
|
|
67695
67734
|
|
|
@@ -68201,8 +68240,9 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
68201
68240
|
* key is omitted, for collection-valued navigation properties, all keys are present, the key-value
|
|
68202
68241
|
* pairs are encoded via encodeURIComponent.
|
|
68203
68242
|
*
|
|
68204
|
-
* @returns A promise
|
|
68205
|
-
* In the latter case the HTTP status code of the response is given
|
|
68243
|
+
* @returns A promise which is resolved without a defined result when the delete succeeded, or rejected
|
|
68244
|
+
* with an instance of Error otherwise. In the latter case the HTTP status code of the response is given
|
|
68245
|
+
* in the error's property `status`.
|
|
68206
68246
|
*/
|
|
68207
68247
|
delete(
|
|
68208
68248
|
/**
|
|
@@ -68222,7 +68262,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
68222
68262
|
* *` header); otherwise we assume that it has already been deleted by someone else and report success
|
|
68223
68263
|
*/
|
|
68224
68264
|
bRejectIfNotFound?: boolean
|
|
68225
|
-
): Promise<
|
|
68265
|
+
): Promise<void>;
|
|
68226
68266
|
/**
|
|
68227
68267
|
* @since 1.38.0
|
|
68228
68268
|
*
|
|
@@ -68248,7 +68288,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
68248
68288
|
/**
|
|
68249
68289
|
* The function to call when the event occurs
|
|
68250
68290
|
*/
|
|
68251
|
-
fnFunction:
|
|
68291
|
+
fnFunction: (evt: ODataModel$DataReceivedEvent) => void,
|
|
68252
68292
|
/**
|
|
68253
68293
|
* Object on which to call the given function
|
|
68254
68294
|
*/
|
|
@@ -68265,7 +68305,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
68265
68305
|
/**
|
|
68266
68306
|
* The function to call when the event occurs
|
|
68267
68307
|
*/
|
|
68268
|
-
fnFunction:
|
|
68308
|
+
fnFunction: (evt: ODataModel$DataRequestedEvent) => void,
|
|
68269
68309
|
/**
|
|
68270
68310
|
* Object on which to call the given function
|
|
68271
68311
|
*/
|
|
@@ -68530,7 +68570,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
68530
68570
|
* A context in this model which must point to a non-contained OData entity
|
|
68531
68571
|
*/
|
|
68532
68572
|
oEntityContext: Context
|
|
68533
|
-
): Promise<
|
|
68573
|
+
): Promise<string>;
|
|
68534
68574
|
/**
|
|
68535
68575
|
* @since 1.107.0
|
|
68536
68576
|
*
|
|
@@ -68590,15 +68630,15 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
68590
68630
|
* {@link #resetChanges} can be used to reset all pending changes instead. After that, or when the promise
|
|
68591
68631
|
* returned by this method is fulfilled, {@link #hasPendingChanges} will not report pending changes anymore.
|
|
68592
68632
|
*
|
|
68593
|
-
* @returns A promise on the outcome of the HTTP request
|
|
68594
|
-
* an error if the batch request itself fails
|
|
68633
|
+
* @returns A promise which is resolved without a defined result on the outcome of the HTTP request, or
|
|
68634
|
+
* rejected with an error if the batch request itself fails
|
|
68595
68635
|
*/
|
|
68596
68636
|
submitBatch(
|
|
68597
68637
|
/**
|
|
68598
68638
|
* A valid group ID as specified in {@link sap.ui.model.odata.v4.ODataModel}.
|
|
68599
68639
|
*/
|
|
68600
68640
|
sGroupId: string
|
|
68601
|
-
): Promise<
|
|
68641
|
+
): Promise<void>;
|
|
68602
68642
|
/**
|
|
68603
68643
|
* @since 1.37.0
|
|
68604
68644
|
*
|
|
@@ -68609,90 +68649,99 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
68609
68649
|
toString(): string;
|
|
68610
68650
|
}
|
|
68611
68651
|
|
|
68612
|
-
export interface ODataModel$DataReceivedEventParameters {
|
|
68652
|
+
export interface ODataModel$DataReceivedEventParameters {
|
|
68653
|
+
/**
|
|
68654
|
+
* An empty data object if a back-end request succeeds
|
|
68655
|
+
*/
|
|
68656
|
+
data?: object;
|
|
68613
68657
|
|
|
68614
|
-
|
|
68615
|
-
|
|
68616
|
-
|
|
68617
|
-
|
|
68618
|
-
export type $ODataModelDataReceivedEventParameters = ODataModel$DataReceivedEventParameters;
|
|
68658
|
+
/**
|
|
68659
|
+
* The error object if a back-end request failed.
|
|
68660
|
+
*/
|
|
68661
|
+
error?: Error;
|
|
68619
68662
|
|
|
68620
|
-
|
|
68663
|
+
/**
|
|
68664
|
+
* The absolute path to the entity which caused the event. The path is only provided for additional property
|
|
68665
|
+
* requests; for other requests it is `undefined`.
|
|
68666
|
+
*/
|
|
68667
|
+
path?: string;
|
|
68668
|
+
}
|
|
68621
68669
|
|
|
68622
|
-
export
|
|
68670
|
+
export type ODataModel$DataReceivedEvent = Event<
|
|
68671
|
+
ODataModel$DataReceivedEventParameters,
|
|
68672
|
+
ODataModel
|
|
68673
|
+
>;
|
|
68623
68674
|
|
|
68624
|
-
|
|
68625
|
-
|
|
68626
|
-
|
|
68627
|
-
|
|
68628
|
-
|
|
68675
|
+
export interface ODataModel$DataRequestedEventParameters {
|
|
68676
|
+
/**
|
|
68677
|
+
* The absolute path to the entity which caused the event. The path is only provided for additional property
|
|
68678
|
+
* requests; for other requests it is `undefined`.
|
|
68679
|
+
*/
|
|
68680
|
+
path?: string;
|
|
68681
|
+
}
|
|
68629
68682
|
|
|
68630
|
-
export type ODataModel$DataRequestedEvent = Event<
|
|
68683
|
+
export type ODataModel$DataRequestedEvent = Event<
|
|
68684
|
+
ODataModel$DataRequestedEventParameters,
|
|
68685
|
+
ODataModel
|
|
68686
|
+
>;
|
|
68631
68687
|
|
|
68632
68688
|
export interface ODataModel$ParseErrorEventParameters
|
|
68633
68689
|
extends Model$ParseErrorEventParameters {}
|
|
68634
68690
|
|
|
68635
|
-
|
|
68636
|
-
|
|
68637
|
-
|
|
68638
|
-
|
|
68639
|
-
export type $ODataModelParseErrorEventParameters = ODataModel$ParseErrorEventParameters;
|
|
68640
|
-
|
|
68641
|
-
export type ODataModel$ParseErrorEvent = Event<ODataModel$ParseErrorEventParameters>;
|
|
68691
|
+
export type ODataModel$ParseErrorEvent = Event<
|
|
68692
|
+
ODataModel$ParseErrorEventParameters,
|
|
68693
|
+
ODataModel
|
|
68694
|
+
>;
|
|
68642
68695
|
|
|
68643
68696
|
export interface ODataModel$PropertyChangeEventParameters
|
|
68644
|
-
extends Model$PropertyChangeEventParameters {
|
|
68697
|
+
extends Model$PropertyChangeEventParameters {
|
|
68698
|
+
/**
|
|
68699
|
+
* A promise on the outcome of the PATCH request, much like {@link sap.ui.model.odata.v4.Context#setProperty }
|
|
68700
|
+
* provides it for `bRetry === true`; missing in case there is no PATCH
|
|
68701
|
+
*/
|
|
68702
|
+
promise?: Promise<void>;
|
|
68645
68703
|
|
|
68646
|
-
|
|
68647
|
-
|
|
68648
|
-
|
|
68649
|
-
|
|
68650
|
-
|
|
68704
|
+
/**
|
|
68705
|
+
* The property binding's {@link sap.ui.model.Binding#getResolvedPath resolved path}
|
|
68706
|
+
*/
|
|
68707
|
+
resolvedPath?: string;
|
|
68708
|
+
}
|
|
68651
68709
|
|
|
68652
|
-
export type ODataModel$PropertyChangeEvent = Event<
|
|
68710
|
+
export type ODataModel$PropertyChangeEvent = Event<
|
|
68711
|
+
ODataModel$PropertyChangeEventParameters,
|
|
68712
|
+
ODataModel
|
|
68713
|
+
>;
|
|
68653
68714
|
|
|
68654
68715
|
export interface ODataModel$RequestCompletedEventParameters
|
|
68655
68716
|
extends Model$RequestCompletedEventParameters {}
|
|
68656
68717
|
|
|
68657
|
-
|
|
68658
|
-
|
|
68659
|
-
|
|
68660
|
-
|
|
68661
|
-
export type $ODataModelRequestCompletedEventParameters = ODataModel$RequestCompletedEventParameters;
|
|
68662
|
-
|
|
68663
|
-
export type ODataModel$RequestCompletedEvent = Event<ODataModel$RequestCompletedEventParameters>;
|
|
68718
|
+
export type ODataModel$RequestCompletedEvent = Event<
|
|
68719
|
+
ODataModel$RequestCompletedEventParameters,
|
|
68720
|
+
ODataModel
|
|
68721
|
+
>;
|
|
68664
68722
|
|
|
68665
68723
|
export interface ODataModel$RequestFailedEventParameters
|
|
68666
68724
|
extends Model$RequestFailedEventParameters {}
|
|
68667
68725
|
|
|
68668
|
-
|
|
68669
|
-
|
|
68670
|
-
|
|
68671
|
-
|
|
68672
|
-
export type $ODataModelRequestFailedEventParameters = ODataModel$RequestFailedEventParameters;
|
|
68673
|
-
|
|
68674
|
-
export type ODataModel$RequestFailedEvent = Event<ODataModel$RequestFailedEventParameters>;
|
|
68726
|
+
export type ODataModel$RequestFailedEvent = Event<
|
|
68727
|
+
ODataModel$RequestFailedEventParameters,
|
|
68728
|
+
ODataModel
|
|
68729
|
+
>;
|
|
68675
68730
|
|
|
68676
68731
|
export interface ODataModel$RequestSentEventParameters
|
|
68677
68732
|
extends Model$RequestSentEventParameters {}
|
|
68678
68733
|
|
|
68679
|
-
|
|
68680
|
-
|
|
68681
|
-
|
|
68682
|
-
|
|
68683
|
-
export type $ODataModelRequestSentEventParameters = ODataModel$RequestSentEventParameters;
|
|
68684
|
-
|
|
68685
|
-
export type ODataModel$RequestSentEvent = Event<ODataModel$RequestSentEventParameters>;
|
|
68734
|
+
export type ODataModel$RequestSentEvent = Event<
|
|
68735
|
+
ODataModel$RequestSentEventParameters,
|
|
68736
|
+
ODataModel
|
|
68737
|
+
>;
|
|
68686
68738
|
|
|
68687
68739
|
export interface ODataModel$SessionTimeoutEventParameters {}
|
|
68688
68740
|
|
|
68689
|
-
|
|
68690
|
-
|
|
68691
|
-
|
|
68692
|
-
|
|
68693
|
-
export type $ODataModelSessionTimeoutEventParameters = ODataModel$SessionTimeoutEventParameters;
|
|
68694
|
-
|
|
68695
|
-
export type ODataModel$SessionTimeoutEvent = Event<ODataModel$SessionTimeoutEventParameters>;
|
|
68741
|
+
export type ODataModel$SessionTimeoutEvent = Event<
|
|
68742
|
+
ODataModel$SessionTimeoutEventParameters,
|
|
68743
|
+
ODataModel
|
|
68744
|
+
>;
|
|
68696
68745
|
}
|
|
68697
68746
|
|
|
68698
68747
|
declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
|
|
@@ -68914,22 +68963,22 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
|
|
|
68914
68963
|
* Refreshes the binding and returns a promise to wait for it. See {@link #refresh} for details. Use {@link #refresh }
|
|
68915
68964
|
* if you do not need the promise.
|
|
68916
68965
|
*
|
|
68917
|
-
* @returns A promise which
|
|
68918
|
-
* an
|
|
68966
|
+
* @returns A promise which is resolved without a defined result when the refresh is finished, or rejected
|
|
68967
|
+
* with an error if the refresh failed
|
|
68919
68968
|
*/
|
|
68920
68969
|
requestRefresh(
|
|
68921
68970
|
/**
|
|
68922
68971
|
* The group ID to be used
|
|
68923
68972
|
*/
|
|
68924
68973
|
sGroupId?: string
|
|
68925
|
-
): Promise<
|
|
68974
|
+
): Promise<void>;
|
|
68926
68975
|
/**
|
|
68927
68976
|
* @since 1.69
|
|
68928
68977
|
*
|
|
68929
68978
|
* Requests the value of the property binding.
|
|
68930
68979
|
*
|
|
68931
|
-
* @returns A promise
|
|
68932
|
-
*
|
|
68980
|
+
* @returns A promise resolved with the resulting value or `undefined` if it could not be determined, or
|
|
68981
|
+
* rejected in case of an error
|
|
68933
68982
|
*/
|
|
68934
68983
|
requestValue(): Promise<any | undefined>;
|
|
68935
68984
|
/**
|
|
@@ -68945,7 +68994,7 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
|
|
|
68945
68994
|
* list model is this binding's model, this flag has no effect. Supported since 1.68.0
|
|
68946
68995
|
*/
|
|
68947
68996
|
bAutoExpandSelect?: boolean
|
|
68948
|
-
): Promise<
|
|
68997
|
+
): Promise<Record<string, object>>;
|
|
68949
68998
|
/**
|
|
68950
68999
|
* @since 1.47.0
|
|
68951
69000
|
*
|
|
@@ -68954,7 +69003,7 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
|
|
|
68954
69003
|
* @returns A promise that is resolved with the type of the value list. It is rejected if the property cannot
|
|
68955
69004
|
* be found in the metadata.
|
|
68956
69005
|
*/
|
|
68957
|
-
requestValueListType(): Promise<
|
|
69006
|
+
requestValueListType(): Promise<ValueListType | keyof typeof ValueListType>;
|
|
68958
69007
|
/**
|
|
68959
69008
|
* @since 1.40.1
|
|
68960
69009
|
*
|
|
@@ -68964,7 +69013,7 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
|
|
|
68964
69013
|
* @returns A promise which is resolved without a defined result as soon as all changes in the binding itself
|
|
68965
69014
|
* and all dependent bindings are canceled (since 1.72.0)
|
|
68966
69015
|
*/
|
|
68967
|
-
resetChanges(): Promise<
|
|
69016
|
+
resetChanges(): Promise<void>;
|
|
68968
69017
|
/**
|
|
68969
69018
|
* @since 1.37.0
|
|
68970
69019
|
*
|
|
@@ -69047,35 +69096,32 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
|
|
|
69047
69096
|
export interface ODataPropertyBinding$ChangeEventParameters
|
|
69048
69097
|
extends Binding$ChangeEventParameters {}
|
|
69049
69098
|
|
|
69050
|
-
|
|
69051
|
-
|
|
69052
|
-
|
|
69053
|
-
|
|
69054
|
-
export type $ODataPropertyBindingChangeEventParameters = ODataPropertyBinding$ChangeEventParameters;
|
|
69055
|
-
|
|
69056
|
-
export type ODataPropertyBinding$ChangeEvent = Event<ODataPropertyBinding$ChangeEventParameters>;
|
|
69099
|
+
export type ODataPropertyBinding$ChangeEvent = Event<
|
|
69100
|
+
ODataPropertyBinding$ChangeEventParameters,
|
|
69101
|
+
ODataPropertyBinding
|
|
69102
|
+
>;
|
|
69057
69103
|
|
|
69058
69104
|
export interface ODataPropertyBinding$DataReceivedEventParameters
|
|
69059
|
-
extends Binding$DataReceivedEventParameters {
|
|
69060
|
-
|
|
69061
|
-
|
|
69062
|
-
|
|
69063
|
-
|
|
69064
|
-
|
|
69065
|
-
|
|
69105
|
+
extends Binding$DataReceivedEventParameters {
|
|
69106
|
+
/**
|
|
69107
|
+
* The error object if a back-end request failed. If there are multiple failed back-end requests, the error
|
|
69108
|
+
* of the first one is provided.
|
|
69109
|
+
*/
|
|
69110
|
+
error?: Error;
|
|
69111
|
+
}
|
|
69066
69112
|
|
|
69067
|
-
export type ODataPropertyBinding$DataReceivedEvent = Event<
|
|
69113
|
+
export type ODataPropertyBinding$DataReceivedEvent = Event<
|
|
69114
|
+
ODataPropertyBinding$DataReceivedEventParameters,
|
|
69115
|
+
ODataPropertyBinding
|
|
69116
|
+
>;
|
|
69068
69117
|
|
|
69069
69118
|
export interface ODataPropertyBinding$DataRequestedEventParameters
|
|
69070
69119
|
extends Binding$DataRequestedEventParameters {}
|
|
69071
69120
|
|
|
69072
|
-
|
|
69073
|
-
|
|
69074
|
-
|
|
69075
|
-
|
|
69076
|
-
export type $ODataPropertyBindingDataRequestedEventParameters = ODataPropertyBinding$DataRequestedEventParameters;
|
|
69077
|
-
|
|
69078
|
-
export type ODataPropertyBinding$DataRequestedEvent = Event<ODataPropertyBinding$DataRequestedEventParameters>;
|
|
69121
|
+
export type ODataPropertyBinding$DataRequestedEvent = Event<
|
|
69122
|
+
ODataPropertyBinding$DataRequestedEventParameters,
|
|
69123
|
+
ODataPropertyBinding
|
|
69124
|
+
>;
|
|
69079
69125
|
}
|
|
69080
69126
|
|
|
69081
69127
|
declare module "sap/ui/model/odata/v4/ODataUtils" {
|
|
@@ -76649,7 +76695,7 @@ declare module "sap/ui/test/Opa" {
|
|
|
76649
76695
|
/**
|
|
76650
76696
|
* "and" property for chaining actions and assertions
|
|
76651
76697
|
*/
|
|
76652
|
-
and: this
|
|
76698
|
+
and: Omit<this, "and">;
|
|
76653
76699
|
|
|
76654
76700
|
/**
|
|
76655
76701
|
* A map of QUnit-style assertions to be used in an opaTest. Contains all methods available on QUnit.assert
|
|
@@ -76918,7 +76964,7 @@ declare module "sap/ui/test/Opa5" {
|
|
|
76918
76964
|
/**
|
|
76919
76965
|
* "and" property for chaining
|
|
76920
76966
|
*/
|
|
76921
|
-
and: this
|
|
76967
|
+
and: Omit<this, "and">;
|
|
76922
76968
|
|
|
76923
76969
|
/**
|
|
76924
76970
|
* A map of QUnit-style assertions to be used in an opaTest.
|
|
@@ -81153,6 +81199,20 @@ declare namespace sap {
|
|
|
81153
81199
|
|
|
81154
81200
|
"sap/base/assert": undefined;
|
|
81155
81201
|
|
|
81202
|
+
"sap/base/Event": undefined;
|
|
81203
|
+
|
|
81204
|
+
"sap/base/i18n/date/CalendarType": undefined;
|
|
81205
|
+
|
|
81206
|
+
"sap/base/i18n/date/CalendarWeekNumbering": undefined;
|
|
81207
|
+
|
|
81208
|
+
"sap/base/i18n/date/TimezoneUtils": undefined;
|
|
81209
|
+
|
|
81210
|
+
"sap/base/i18n/Formatting": undefined;
|
|
81211
|
+
|
|
81212
|
+
"sap/base/i18n/LanguageTag": undefined;
|
|
81213
|
+
|
|
81214
|
+
"sap/base/i18n/Localization": undefined;
|
|
81215
|
+
|
|
81156
81216
|
"sap/base/i18n/ResourceBundle": undefined;
|
|
81157
81217
|
|
|
81158
81218
|
"sap/base/Log": undefined;
|
|
@@ -81267,6 +81327,8 @@ declare namespace sap {
|
|
|
81267
81327
|
|
|
81268
81328
|
"sap/ui/core/_UrlResolver": undefined;
|
|
81269
81329
|
|
|
81330
|
+
"sap/ui/core/AnimationMode": undefined;
|
|
81331
|
+
|
|
81270
81332
|
"sap/ui/core/AppCacheBuster": undefined;
|
|
81271
81333
|
|
|
81272
81334
|
"sap/ui/core/BusyIndicator": undefined;
|
|
@@ -81293,6 +81355,8 @@ declare namespace sap {
|
|
|
81293
81355
|
|
|
81294
81356
|
"sap/ui/core/Control": undefined;
|
|
81295
81357
|
|
|
81358
|
+
"sap/ui/core/ControlBehavior": undefined;
|
|
81359
|
+
|
|
81296
81360
|
"sap/ui/core/Core": undefined;
|
|
81297
81361
|
|
|
81298
81362
|
"sap/ui/core/CustomData": undefined;
|
|
@@ -81343,8 +81407,6 @@ declare namespace sap {
|
|
|
81343
81407
|
|
|
81344
81408
|
"sap/ui/core/format/NumberFormat": undefined;
|
|
81345
81409
|
|
|
81346
|
-
"sap/ui/core/format/TimezoneUtil": undefined;
|
|
81347
|
-
|
|
81348
81410
|
"sap/ui/core/Fragment": undefined;
|
|
81349
81411
|
|
|
81350
81412
|
"sap/ui/core/History": undefined;
|
|
@@ -81373,6 +81435,8 @@ declare namespace sap {
|
|
|
81373
81435
|
|
|
81374
81436
|
"sap/ui/core/LayoutData": undefined;
|
|
81375
81437
|
|
|
81438
|
+
"sap/ui/core/Lib": undefined;
|
|
81439
|
+
|
|
81376
81440
|
"sap/ui/core/library": undefined;
|
|
81377
81441
|
|
|
81378
81442
|
"sap/ui/core/ListItem": undefined;
|
|
@@ -81463,6 +81527,8 @@ declare namespace sap {
|
|
|
81463
81527
|
|
|
81464
81528
|
"sap/ui/core/service/ServiceFactory": undefined;
|
|
81465
81529
|
|
|
81530
|
+
"sap/ui/core/StaticArea": undefined;
|
|
81531
|
+
|
|
81466
81532
|
"sap/ui/core/support/Hotkeys": undefined;
|
|
81467
81533
|
|
|
81468
81534
|
"sap/ui/core/support/Plugin": undefined;
|
|
@@ -81473,10 +81539,14 @@ declare namespace sap {
|
|
|
81473
81539
|
|
|
81474
81540
|
"sap/ui/core/syncStyleClass": undefined;
|
|
81475
81541
|
|
|
81542
|
+
"sap/ui/core/Theming": undefined;
|
|
81543
|
+
|
|
81476
81544
|
"sap/ui/core/theming/Parameters": undefined;
|
|
81477
81545
|
|
|
81478
81546
|
"sap/ui/core/theming/ThemeHelper": undefined;
|
|
81479
81547
|
|
|
81548
|
+
"sap/ui/core/theming/ThemeManager": undefined;
|
|
81549
|
+
|
|
81480
81550
|
"sap/ui/core/Title": undefined;
|
|
81481
81551
|
|
|
81482
81552
|
"sap/ui/core/tmpl/DOMAttribute": undefined;
|