@sapui5/ts-types-esm 1.134.1 → 1.136.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/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +82 -0
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +102 -8
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +31 -7
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1289 -386
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +6 -4
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +152 -22
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +837 -111
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +249 -1230
- package/types/sap.suite.ui.commons.d.ts +83 -1
- package/types/sap.suite.ui.generic.template.d.ts +15 -3
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +215 -19
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +3643 -505
- package/types/sap.ui.core.d.ts +272 -155
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +21 -7
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +2 -2
- package/types/sap.ui.layout.d.ts +14 -13
- package/types/sap.ui.mdc.d.ts +160 -13
- package/types/sap.ui.richtexteditor.d.ts +39 -1
- package/types/sap.ui.rta.d.ts +31 -5
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +30 -16
- package/types/sap.ui.table.d.ts +16 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +45 -32
- package/types/sap.ui.ux3.d.ts +3 -3
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +320 -110
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +63 -52
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +11 -21
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -13,7 +13,9 @@ declare module "sap/ui/fl/apply/api/ControlVariantApplyAPI" {
|
|
|
13
13
|
interface ControlVariantApplyAPI {
|
|
14
14
|
/**
|
|
15
15
|
* Activates the passed variant applicable to the passed control/component. If the Variant is not available
|
|
16
|
-
* and the backend supports lazy loading, a backend request is made to fetch the variant.
|
|
16
|
+
* and the backend supports lazy loading, a backend request is made to fetch the variant. If the flag standardVariant
|
|
17
|
+
* is set to true, the standard variant is activated and the variantReference is ignored. In this scenario
|
|
18
|
+
* the passed element must be the variant management control.
|
|
17
19
|
*
|
|
18
20
|
*
|
|
19
21
|
* @returns Resolves after the variant is activated or rejects if an error occurs
|
|
@@ -31,6 +33,10 @@ declare module "sap/ui/fl/apply/api/ControlVariantApplyAPI" {
|
|
|
31
33
|
* Reference to the variant that needs to be activated
|
|
32
34
|
*/
|
|
33
35
|
variantReference: string;
|
|
36
|
+
/**
|
|
37
|
+
* If set to true, the standard variant is activated and the variantReference is ignored
|
|
38
|
+
*/
|
|
39
|
+
standardVariant?: boolean;
|
|
34
40
|
}
|
|
35
41
|
): Promise<any>;
|
|
36
42
|
/**
|
|
@@ -201,7 +207,10 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
201
207
|
|
|
202
208
|
import { IShrinkable, ID, TitleLevel, CSSSize } from "sap/ui/core/library";
|
|
203
209
|
|
|
204
|
-
import {
|
|
210
|
+
import {
|
|
211
|
+
IOverflowToolbarContent,
|
|
212
|
+
IToolbarInteractiveControl,
|
|
213
|
+
} from "sap/m/library";
|
|
205
214
|
|
|
206
215
|
import Event from "sap/ui/base/Event";
|
|
207
216
|
|
|
@@ -218,10 +227,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
218
227
|
*/
|
|
219
228
|
export default class VariantManagement
|
|
220
229
|
extends Control
|
|
221
|
-
implements
|
|
222
|
-
IShrinkable,
|
|
223
|
-
IOverflowToolbarContent,
|
|
224
|
-
/* was: sap.m.IToolbarInteractiveControl */ Object
|
|
230
|
+
implements IShrinkable, IOverflowToolbarContent, IToolbarInteractiveControl
|
|
225
231
|
{
|
|
226
232
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
227
233
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -1585,6 +1591,10 @@ declare namespace sap {
|
|
|
1585
1591
|
|
|
1586
1592
|
"sap/ui/fl/apply/_internal/flexObjects/Variant": undefined;
|
|
1587
1593
|
|
|
1594
|
+
"sap/ui/fl/apply/_internal/flexObjects/VariantChange": undefined;
|
|
1595
|
+
|
|
1596
|
+
"sap/ui/fl/apply/_internal/flexObjects/VariantManagementChange": undefined;
|
|
1597
|
+
|
|
1588
1598
|
"sap/ui/fl/apply/_internal/flexState/changes/DependencyHandler": undefined;
|
|
1589
1599
|
|
|
1590
1600
|
"sap/ui/fl/apply/_internal/flexState/changes/ExtensionPointState": undefined;
|
|
@@ -1639,6 +1649,8 @@ declare namespace sap {
|
|
|
1639
1649
|
|
|
1640
1650
|
"sap/ui/fl/ChangePersistenceFactory": undefined;
|
|
1641
1651
|
|
|
1652
|
+
"sap/ui/fl/descriptorRelated/api/DescriptorChange": undefined;
|
|
1653
|
+
|
|
1642
1654
|
"sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory": undefined;
|
|
1643
1655
|
|
|
1644
1656
|
"sap/ui/fl/descriptorRelated/api/DescriptorInlineChangeFactory": undefined;
|
|
@@ -1751,6 +1763,8 @@ declare namespace sap {
|
|
|
1751
1763
|
|
|
1752
1764
|
"sap/ui/fl/write/api/AppVariantWriteAPI": undefined;
|
|
1753
1765
|
|
|
1766
|
+
"sap/ui/fl/write/api/BusinessNetworkAPI": undefined;
|
|
1767
|
+
|
|
1754
1768
|
"sap/ui/fl/write/api/ChangesWriteAPI": undefined;
|
|
1755
1769
|
|
|
1756
1770
|
"sap/ui/fl/write/api/connectors/ObjectStorageConnector": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -6,7 +6,7 @@ declare module "sap/ui/integration/library" {
|
|
|
6
6
|
import { ButtonType } from "sap/m/library";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* Defines the layout type of the List
|
|
9
|
+
* Defines the layout type of the List Card attributes.
|
|
10
10
|
*
|
|
11
11
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
12
12
|
* 'AttributesLayoutType'.
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/layout/library" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -374,6 +374,7 @@ declare module "sap/ui/layout/library" {
|
|
|
374
374
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/gap}
|
|
375
375
|
*
|
|
376
376
|
* @since 1.60.0
|
|
377
|
+
* @deprecated As of version 1.135. use {@link sap.ui.core.CSSGapShortHand} instead
|
|
377
378
|
*/
|
|
378
379
|
type CSSGridGapShortHand = CSSGapShortHand;
|
|
379
380
|
|
|
@@ -1778,7 +1779,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
1778
1779
|
|
|
1779
1780
|
import GridLayoutBase from "sap/ui/layout/cssgrid/GridLayoutBase";
|
|
1780
1781
|
|
|
1781
|
-
import { CSSSize } from "sap/ui/core/library";
|
|
1782
|
+
import { CSSSize, CSSGapShortHand } from "sap/ui/core/library";
|
|
1782
1783
|
|
|
1783
1784
|
import GridBasicLayout from "sap/ui/layout/cssgrid/GridBasicLayout";
|
|
1784
1785
|
|
|
@@ -2024,7 +2025,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2024
2025
|
*
|
|
2025
2026
|
* @returns Value of property `gridGap`
|
|
2026
2027
|
*/
|
|
2027
|
-
getGridGap():
|
|
2028
|
+
getGridGap(): CSSGapShortHand;
|
|
2028
2029
|
/**
|
|
2029
2030
|
* Returns the layout configuration of the `CSSGrid`.
|
|
2030
2031
|
*
|
|
@@ -2239,7 +2240,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2239
2240
|
/**
|
|
2240
2241
|
* New value for property `gridGap`
|
|
2241
2242
|
*/
|
|
2242
|
-
sGridGap?:
|
|
2243
|
+
sGridGap?: CSSGapShortHand
|
|
2243
2244
|
): this;
|
|
2244
2245
|
/**
|
|
2245
2246
|
* Sets a new value for property {@link #getGridRowGap gridRowGap}.
|
|
@@ -2354,7 +2355,7 @@ declare module "sap/ui/layout/cssgrid/CSSGrid" {
|
|
|
2354
2355
|
* It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the gridGap value will have
|
|
2355
2356
|
* less priority and will be overwritten.
|
|
2356
2357
|
*/
|
|
2357
|
-
gridGap?:
|
|
2358
|
+
gridGap?: CSSGapShortHand | PropertyBindingInfo | `{${string}}`;
|
|
2358
2359
|
|
|
2359
2360
|
/**
|
|
2360
2361
|
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
@@ -2397,7 +2398,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2397
2398
|
|
|
2398
2399
|
import { cssgrid } from "sap/ui/layout/library";
|
|
2399
2400
|
|
|
2400
|
-
import { CSSSize } from "sap/ui/core/library";
|
|
2401
|
+
import { CSSSize, CSSGapShortHand } from "sap/ui/core/library";
|
|
2401
2402
|
|
|
2402
2403
|
import ManagedObjectMetadata from "sap/ui/base/ManagedObjectMetadata";
|
|
2403
2404
|
|
|
@@ -2525,7 +2526,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2525
2526
|
*
|
|
2526
2527
|
* @returns Value of property `gridGap`
|
|
2527
2528
|
*/
|
|
2528
|
-
getGridGap():
|
|
2529
|
+
getGridGap(): CSSGapShortHand;
|
|
2529
2530
|
/**
|
|
2530
2531
|
* Gets current value of property {@link #getGridRowGap gridRowGap}.
|
|
2531
2532
|
*
|
|
@@ -2649,7 +2650,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2649
2650
|
/**
|
|
2650
2651
|
* New value for property `gridGap`
|
|
2651
2652
|
*/
|
|
2652
|
-
sGridGap?:
|
|
2653
|
+
sGridGap?: CSSGapShortHand
|
|
2653
2654
|
): this;
|
|
2654
2655
|
/**
|
|
2655
2656
|
* Sets a new value for property {@link #getGridRowGap gridRowGap}.
|
|
@@ -2739,7 +2740,7 @@ declare module "sap/ui/layout/cssgrid/GridBasicLayout" {
|
|
|
2739
2740
|
/**
|
|
2740
2741
|
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
2741
2742
|
*/
|
|
2742
|
-
gridGap?:
|
|
2743
|
+
gridGap?: CSSGapShortHand | PropertyBindingInfo | `{${string}}`;
|
|
2743
2744
|
|
|
2744
2745
|
/**
|
|
2745
2746
|
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
|
@@ -3826,7 +3827,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3826
3827
|
|
|
3827
3828
|
import { cssgrid } from "sap/ui/layout/library";
|
|
3828
3829
|
|
|
3829
|
-
import { CSSSize } from "sap/ui/core/library";
|
|
3830
|
+
import { CSSSize, CSSGapShortHand } from "sap/ui/core/library";
|
|
3830
3831
|
|
|
3831
3832
|
import ManagedObjectMetadata from "sap/ui/base/ManagedObjectMetadata";
|
|
3832
3833
|
|
|
@@ -3952,7 +3953,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
3952
3953
|
*
|
|
3953
3954
|
* @returns Value of property `gridGap`
|
|
3954
3955
|
*/
|
|
3955
|
-
getGridGap():
|
|
3956
|
+
getGridGap(): CSSGapShortHand;
|
|
3956
3957
|
/**
|
|
3957
3958
|
* Gets current value of property {@link #getGridRowGap gridRowGap}.
|
|
3958
3959
|
*
|
|
@@ -4076,7 +4077,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
4076
4077
|
/**
|
|
4077
4078
|
* New value for property `gridGap`
|
|
4078
4079
|
*/
|
|
4079
|
-
sGridGap?:
|
|
4080
|
+
sGridGap?: CSSGapShortHand
|
|
4080
4081
|
): this;
|
|
4081
4082
|
/**
|
|
4082
4083
|
* Sets a new value for property {@link #getGridRowGap gridRowGap}.
|
|
@@ -4166,7 +4167,7 @@ declare module "sap/ui/layout/cssgrid/GridSettings" {
|
|
|
4166
4167
|
/**
|
|
4167
4168
|
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
|
|
4168
4169
|
*/
|
|
4169
|
-
gridGap?:
|
|
4170
|
+
gridGap?: CSSGapShortHand | PropertyBindingInfo | `{${string}}`;
|
|
4170
4171
|
|
|
4171
4172
|
/**
|
|
4172
4173
|
* Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
|
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -2702,6 +2702,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2702
2702
|
|
|
2703
2703
|
import ValueHelpPropagationReason from "sap/ui/mdc/enums/ValueHelpPropagationReason";
|
|
2704
2704
|
|
|
2705
|
+
import Control from "sap/ui/core/Control";
|
|
2706
|
+
|
|
2705
2707
|
import Container from "sap/ui/mdc/valuehelp/base/Container";
|
|
2706
2708
|
|
|
2707
2709
|
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -3072,10 +3074,36 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
3072
3074
|
*/
|
|
3073
3075
|
oConfig: object
|
|
3074
3076
|
): void;
|
|
3077
|
+
/**
|
|
3078
|
+
* Provides a hook to run time-critical tasks once a control connects to a value help.
|
|
3079
|
+
*
|
|
3080
|
+
* This method allows for working around any delays that might occur during user interaction treatment of
|
|
3081
|
+
* the connecting `control`. For example, `setTimeout` or `debouncing` are used in {@link sap.ui.mdc.field.FieldBase FieldBase }
|
|
3082
|
+
* to prevent triggering value help requests too early/often.
|
|
3083
|
+
*
|
|
3084
|
+
* @since 1.136
|
|
3085
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3086
|
+
*/
|
|
3087
|
+
onControlConnect(
|
|
3088
|
+
/**
|
|
3089
|
+
* The `ValueHelp` control instance
|
|
3090
|
+
*/
|
|
3091
|
+
oValueHelp: ValueHelp,
|
|
3092
|
+
/**
|
|
3093
|
+
* Control to which the `ValueHelp` element is connected
|
|
3094
|
+
*/
|
|
3095
|
+
oControl: Control,
|
|
3096
|
+
/**
|
|
3097
|
+
* Connect configuration object
|
|
3098
|
+
*/
|
|
3099
|
+
oConfig?: /* was: sap.ui.mdc.valuehelp.base.ConnectConfig */ any
|
|
3100
|
+
): void;
|
|
3075
3101
|
/**
|
|
3076
3102
|
* Requests additional content for the value help.
|
|
3077
3103
|
*
|
|
3078
|
-
* This
|
|
3104
|
+
* This method is called during the opening phase of a `ValueHelp`, if a new content is displayed for a
|
|
3105
|
+
* `CollectiveSearch` dialog or if one of the following methods is called: {@link sap.ui.mdc.ValueHelp#getItemForValue getItemForValue},
|
|
3106
|
+
* {@link sap.ui.mdc.ValueHelp#requestShowTypeahead requestShowTypeahead}, {@link sap.ui.mdc.ValueHelp#requestShowValueHelp requestShowValueHelp}
|
|
3079
3107
|
*
|
|
3080
3108
|
* So depending on the value help {@link sap.ui.mdc.valuehelp.base.Content Content} used, all content controls
|
|
3081
3109
|
* and data need to be assigned. Once they are assigned and the data is set, the returned `Promise` needs
|
|
@@ -3313,7 +3341,7 @@ declare module "sap/ui/mdc/library" {
|
|
|
3313
3341
|
/**
|
|
3314
3342
|
* Describes the filter conditions
|
|
3315
3343
|
*/
|
|
3316
|
-
filter?: State.XCondition
|
|
3344
|
+
filter?: Record<string, State.XCondition[]>;
|
|
3317
3345
|
/**
|
|
3318
3346
|
* Describes the filter fields
|
|
3319
3347
|
*/
|
|
@@ -3468,7 +3496,12 @@ declare module "sap/ui/mdc/library" {
|
|
|
3468
3496
|
/**
|
|
3469
3497
|
* Closes the container
|
|
3470
3498
|
*/
|
|
3471
|
-
close(
|
|
3499
|
+
close(
|
|
3500
|
+
/**
|
|
3501
|
+
* If set, closing must not restore the focus on the field
|
|
3502
|
+
*/
|
|
3503
|
+
bDoNotRestoreFocus: boolean
|
|
3504
|
+
): void;
|
|
3472
3505
|
/**
|
|
3473
3506
|
* Opens the container
|
|
3474
3507
|
*
|
|
@@ -3541,7 +3574,12 @@ declare module "sap/ui/mdc/library" {
|
|
|
3541
3574
|
/**
|
|
3542
3575
|
* Closes the container
|
|
3543
3576
|
*/
|
|
3544
|
-
close(
|
|
3577
|
+
close(
|
|
3578
|
+
/**
|
|
3579
|
+
* If set, closing must not restore the focus on the field
|
|
3580
|
+
*/
|
|
3581
|
+
bDoNotRestoreFocus: boolean
|
|
3582
|
+
): void;
|
|
3545
3583
|
/**
|
|
3546
3584
|
* Determines the item (key and description) for a given value.
|
|
3547
3585
|
*
|
|
@@ -3748,6 +3786,8 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
3748
3786
|
|
|
3749
3787
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
3750
3788
|
|
|
3789
|
+
import ActionToolbarActionAlignment from "sap/ui/mdc/enums/ActionToolbarActionAlignment";
|
|
3790
|
+
|
|
3751
3791
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3752
3792
|
|
|
3753
3793
|
/**
|
|
@@ -3839,7 +3879,8 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
3839
3879
|
/**
|
|
3840
3880
|
* Gets current value of property {@link #getLayoutInformation layoutInformation}.
|
|
3841
3881
|
*
|
|
3842
|
-
* Contains the information where the action is displayed on the `ActionToolbar`.
|
|
3882
|
+
* Contains the information where the action is displayed on the `ActionToolbar`. The `layoutInformation`
|
|
3883
|
+
* has to be of type {@link sap.ui.mdc.actiontoolbar.ActionToolbarActionLayoutInformation}.
|
|
3843
3884
|
*
|
|
3844
3885
|
* Default value is `...see text or source`.
|
|
3845
3886
|
*
|
|
@@ -3873,7 +3914,8 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
3873
3914
|
/**
|
|
3874
3915
|
* Sets a new value for property {@link #getLayoutInformation layoutInformation}.
|
|
3875
3916
|
*
|
|
3876
|
-
* Contains the information where the action is displayed on the `ActionToolbar`.
|
|
3917
|
+
* Contains the information where the action is displayed on the `ActionToolbar`. The `layoutInformation`
|
|
3918
|
+
* has to be of type {@link sap.ui.mdc.actiontoolbar.ActionToolbarActionLayoutInformation}.
|
|
3877
3919
|
*
|
|
3878
3920
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3879
3921
|
*
|
|
@@ -3889,12 +3931,27 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
3889
3931
|
oLayoutInformation?: object
|
|
3890
3932
|
): this;
|
|
3891
3933
|
}
|
|
3934
|
+
|
|
3935
|
+
export type ActionToolbarActionLayoutInformation = {
|
|
3936
|
+
/**
|
|
3937
|
+
* The name of the aggregation where the action is displayed. Currently only `end` is supported.
|
|
3938
|
+
*/
|
|
3939
|
+
aggregationName: string;
|
|
3940
|
+
/**
|
|
3941
|
+
* The alignment of the action defining if it's displayed before or after the aggregation.
|
|
3942
|
+
*/
|
|
3943
|
+
alignment:
|
|
3944
|
+
| ActionToolbarActionAlignment
|
|
3945
|
+
| keyof typeof ActionToolbarActionAlignment;
|
|
3946
|
+
};
|
|
3947
|
+
|
|
3892
3948
|
/**
|
|
3893
3949
|
* Describes the settings that can be provided to the ActionToolbarAction constructor.
|
|
3894
3950
|
*/
|
|
3895
3951
|
export interface $ActionToolbarActionSettings extends $ControlSettings {
|
|
3896
3952
|
/**
|
|
3897
|
-
* Contains the information where the action is displayed on the `ActionToolbar`.
|
|
3953
|
+
* Contains the information where the action is displayed on the `ActionToolbar`. The `layoutInformation`
|
|
3954
|
+
* has to be of type {@link sap.ui.mdc.actiontoolbar.ActionToolbarActionLayoutInformation}.
|
|
3898
3955
|
*/
|
|
3899
3956
|
layoutInformation?: object | PropertyBindingInfo | `{${string}}`;
|
|
3900
3957
|
|
|
@@ -8235,6 +8292,46 @@ declare module "sap/ui/mdc/enums/ReasonMode" {
|
|
|
8235
8292
|
export default ReasonMode;
|
|
8236
8293
|
}
|
|
8237
8294
|
|
|
8295
|
+
declare module "sap/ui/mdc/enums/RequestShowContainerReason" {
|
|
8296
|
+
/**
|
|
8297
|
+
* Enumeration of the possible triggers for {@link sap.ui.mdc.ValueHelp ValueHelp}
|
|
8298
|
+
*
|
|
8299
|
+
* @since 1.136
|
|
8300
|
+
*/
|
|
8301
|
+
enum RequestShowContainerReason {
|
|
8302
|
+
/**
|
|
8303
|
+
* Content may have been filtered during it's {@link sap.ui.mdc.valuehelp.base.FilterableListContent#onBeforeShow onBeforeShow }
|
|
8304
|
+
* phase or a `filterValue` change occured while the `ValueHelp` was already open.
|
|
8305
|
+
*/
|
|
8306
|
+
Filter = "Filter",
|
|
8307
|
+
/**
|
|
8308
|
+
* A connected control receives focus.
|
|
8309
|
+
*/
|
|
8310
|
+
Focus = "Focus",
|
|
8311
|
+
/**
|
|
8312
|
+
* {@link sap.ui.mdc.ValueHelp#navigate ValueHelp arrow-navigation} was triggered.
|
|
8313
|
+
*/
|
|
8314
|
+
Navigate = "Navigate",
|
|
8315
|
+
/**
|
|
8316
|
+
* A connected control was focused using the Tab key.
|
|
8317
|
+
*/
|
|
8318
|
+
Tab = "Tab",
|
|
8319
|
+
/**
|
|
8320
|
+
* A connected control was activated through a click or tap action.
|
|
8321
|
+
*/
|
|
8322
|
+
Tap = "Tap",
|
|
8323
|
+
/**
|
|
8324
|
+
* Text was entered or modified in a connected control.
|
|
8325
|
+
*/
|
|
8326
|
+
Typing = "Typing",
|
|
8327
|
+
/**
|
|
8328
|
+
* A connected control fired a {@link sap.m.Input.valueHelpRequest valueHelpRequest}.
|
|
8329
|
+
*/
|
|
8330
|
+
ValueHelpRequest = "ValueHelpRequest",
|
|
8331
|
+
}
|
|
8332
|
+
export default RequestShowContainerReason;
|
|
8333
|
+
}
|
|
8334
|
+
|
|
8238
8335
|
declare module "sap/ui/mdc/enums/TableGrowingMode" {
|
|
8239
8336
|
/**
|
|
8240
8337
|
* Growing mode of the table.
|
|
@@ -19090,6 +19187,18 @@ declare module "sap/ui/mdc/table/GridTableType" {
|
|
|
19090
19187
|
* @returns Metadata object describing this class
|
|
19091
19188
|
*/
|
|
19092
19189
|
static getMetadata(): ElementMetadata;
|
|
19190
|
+
/**
|
|
19191
|
+
* Gets current value of property {@link #getEnableColumnFreeze enableColumnFreeze}.
|
|
19192
|
+
*
|
|
19193
|
+
* Determines whether the number of fixed columns is configurable via the column menu.
|
|
19194
|
+
*
|
|
19195
|
+
* Default value is `false`.
|
|
19196
|
+
*
|
|
19197
|
+
* @since 1.136
|
|
19198
|
+
*
|
|
19199
|
+
* @returns Value of property `enableColumnFreeze`
|
|
19200
|
+
*/
|
|
19201
|
+
getEnableColumnFreeze(): boolean;
|
|
19093
19202
|
/**
|
|
19094
19203
|
* Gets current value of property {@link #getFixedColumnCount fixedColumnCount}.
|
|
19095
19204
|
*
|
|
@@ -19178,6 +19287,25 @@ declare module "sap/ui/mdc/table/GridTableType" {
|
|
|
19178
19287
|
* @returns Value of property `showHeaderSelector`
|
|
19179
19288
|
*/
|
|
19180
19289
|
getShowHeaderSelector(): boolean;
|
|
19290
|
+
/**
|
|
19291
|
+
* Sets a new value for property {@link #getEnableColumnFreeze enableColumnFreeze}.
|
|
19292
|
+
*
|
|
19293
|
+
* Determines whether the number of fixed columns is configurable via the column menu.
|
|
19294
|
+
*
|
|
19295
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
19296
|
+
*
|
|
19297
|
+
* Default value is `false`.
|
|
19298
|
+
*
|
|
19299
|
+
* @since 1.136
|
|
19300
|
+
*
|
|
19301
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
19302
|
+
*/
|
|
19303
|
+
setEnableColumnFreeze(
|
|
19304
|
+
/**
|
|
19305
|
+
* New value for property `enableColumnFreeze`
|
|
19306
|
+
*/
|
|
19307
|
+
bEnableColumnFreeze?: boolean
|
|
19308
|
+
): this;
|
|
19181
19309
|
/**
|
|
19182
19310
|
* Sets a new value for property {@link #getFixedColumnCount fixedColumnCount}.
|
|
19183
19311
|
*
|
|
@@ -19349,6 +19477,13 @@ declare module "sap/ui/mdc/table/GridTableType" {
|
|
|
19349
19477
|
*/
|
|
19350
19478
|
showHeaderSelector?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
19351
19479
|
|
|
19480
|
+
/**
|
|
19481
|
+
* Determines whether the number of fixed columns is configurable via the column menu.
|
|
19482
|
+
*
|
|
19483
|
+
* @since 1.136
|
|
19484
|
+
*/
|
|
19485
|
+
enableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
19486
|
+
|
|
19352
19487
|
/**
|
|
19353
19488
|
* Defines the number of fixed columns.
|
|
19354
19489
|
*/
|
|
@@ -21683,13 +21818,23 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21683
21818
|
/**
|
|
21684
21819
|
* Closes the container
|
|
21685
21820
|
*/
|
|
21686
|
-
close(
|
|
21821
|
+
close(
|
|
21822
|
+
/**
|
|
21823
|
+
* If set, closing must not restore the focus on the field
|
|
21824
|
+
*/
|
|
21825
|
+
bDoNotRestoreFocus: boolean
|
|
21826
|
+
): void;
|
|
21687
21827
|
/**
|
|
21688
21828
|
* Closes the container control or element.
|
|
21689
21829
|
*
|
|
21690
21830
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
21691
21831
|
*/
|
|
21692
|
-
closeContainer(
|
|
21832
|
+
closeContainer(
|
|
21833
|
+
/**
|
|
21834
|
+
* If set, closing must not restore the focus on the field
|
|
21835
|
+
*/
|
|
21836
|
+
bDoNotRestoreFocus: boolean
|
|
21837
|
+
): void;
|
|
21693
21838
|
/**
|
|
21694
21839
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
21695
21840
|
*
|
|
@@ -23960,7 +24105,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
23960
24105
|
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
23961
24106
|
* case this property must be set to `false`.
|
|
23962
24107
|
*
|
|
23963
|
-
*
|
|
24108
|
+
* By default, if not set, the list opens if the user clicks into the connected field.
|
|
23964
24109
|
*
|
|
23965
24110
|
* Default value is `true`.
|
|
23966
24111
|
*
|
|
@@ -24052,7 +24197,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
24052
24197
|
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
24053
24198
|
* case this property must be set to `false`.
|
|
24054
24199
|
*
|
|
24055
|
-
*
|
|
24200
|
+
* By default, if not set, the list opens if the user clicks into the connected field.
|
|
24056
24201
|
*
|
|
24057
24202
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
24058
24203
|
*
|
|
@@ -24102,7 +24247,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
24102
24247
|
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
24103
24248
|
* case this property must be set to `false`.
|
|
24104
24249
|
*
|
|
24105
|
-
*
|
|
24250
|
+
* By default, if not set, the list opens if the user clicks into the connected field.
|
|
24106
24251
|
*/
|
|
24107
24252
|
filterList?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
24108
24253
|
|
|
@@ -25421,6 +25566,8 @@ declare namespace sap {
|
|
|
25421
25566
|
|
|
25422
25567
|
"sap/ui/mdc/enums/ReasonMode": undefined;
|
|
25423
25568
|
|
|
25569
|
+
"sap/ui/mdc/enums/RequestShowContainerReason": undefined;
|
|
25570
|
+
|
|
25424
25571
|
"sap/ui/mdc/enums/TableGrowingMode": undefined;
|
|
25425
25572
|
|
|
25426
25573
|
"sap/ui/mdc/enums/TableMultiSelectMode": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/richtexteditor/library" {
|
|
4
4
|
/**
|
|
@@ -493,6 +493,14 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
493
493
|
* @returns Reference to `this` in order to allow method chaining
|
|
494
494
|
*/
|
|
495
495
|
destroyCustomButtons(): this;
|
|
496
|
+
/**
|
|
497
|
+
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
498
|
+
*
|
|
499
|
+
* @experimental As of version 1.135.
|
|
500
|
+
*
|
|
501
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
502
|
+
*/
|
|
503
|
+
destroyFooter(): this;
|
|
496
504
|
/**
|
|
497
505
|
* Detaches event handler `fnFunction` from the {@link #event:beforeEditorInit beforeEditorInit} event of
|
|
498
506
|
* this `sap.ui.richtexteditor.RichTextEditor`.
|
|
@@ -720,6 +728,15 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
720
728
|
* @returns Value of property `editorType`
|
|
721
729
|
*/
|
|
722
730
|
getEditorType(): string;
|
|
731
|
+
/**
|
|
732
|
+
* Gets content of aggregation {@link #getFooter footer}.
|
|
733
|
+
*
|
|
734
|
+
* Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
|
|
735
|
+
* footer aggregation accepts only controls inheriting `sap.m.IBar`.
|
|
736
|
+
*
|
|
737
|
+
* @experimental As of version 1.135.
|
|
738
|
+
*/
|
|
739
|
+
getFooter(): Control;
|
|
723
740
|
/**
|
|
724
741
|
* Gets current value of property {@link #getHeight height}.
|
|
725
742
|
*
|
|
@@ -1148,6 +1165,19 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1148
1165
|
*/
|
|
1149
1166
|
sEditorType?: string
|
|
1150
1167
|
): RichTextEditor;
|
|
1168
|
+
/**
|
|
1169
|
+
* Sets the aggregated {@link #getFooter footer}.
|
|
1170
|
+
*
|
|
1171
|
+
* @experimental As of version 1.135.
|
|
1172
|
+
*
|
|
1173
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1174
|
+
*/
|
|
1175
|
+
setFooter(
|
|
1176
|
+
/**
|
|
1177
|
+
* The footer to set
|
|
1178
|
+
*/
|
|
1179
|
+
oFooter: Control
|
|
1180
|
+
): this;
|
|
1151
1181
|
/**
|
|
1152
1182
|
* Sets a new value for property {@link #getHeight height}.
|
|
1153
1183
|
*
|
|
@@ -1693,6 +1723,14 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1693
1723
|
*/
|
|
1694
1724
|
customToolbar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1695
1725
|
|
|
1726
|
+
/**
|
|
1727
|
+
* Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
|
|
1728
|
+
* footer aggregation accepts only controls inheriting `sap.m.IBar`.
|
|
1729
|
+
*
|
|
1730
|
+
* @experimental As of version 1.135.
|
|
1731
|
+
*/
|
|
1732
|
+
footer?: Control;
|
|
1733
|
+
|
|
1696
1734
|
/**
|
|
1697
1735
|
* Custom buttons are meant to extend the `RichTextEditor`'s custom toolbar. Though type is set to sap.ui.Control,
|
|
1698
1736
|
* only sap.m.Button is allowed. **Note:** customButtons are available only when the customToolbar is enabled
|
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -105,6 +105,10 @@ declare module "sap/ui/rta/plugin/annotations/AnnotationChangeDialog" {
|
|
|
105
105
|
* Change type
|
|
106
106
|
*/
|
|
107
107
|
annotationChangeType: string;
|
|
108
|
+
/**
|
|
109
|
+
* Url of the OData service
|
|
110
|
+
*/
|
|
111
|
+
serviceUrl: string;
|
|
108
112
|
/**
|
|
109
113
|
* Change content
|
|
110
114
|
*/
|
|
@@ -117,11 +121,25 @@ declare module "sap/ui/rta/plugin/annotations/AnnotationChangeDialog" {
|
|
|
117
121
|
* New value
|
|
118
122
|
*/
|
|
119
123
|
value: string;
|
|
124
|
+
/**
|
|
125
|
+
* New value as translatable text. If given, the value is ignored
|
|
126
|
+
*/
|
|
127
|
+
text: string;
|
|
128
|
+
/**
|
|
129
|
+
* Object template to construct a return object. If given the applyChange function will return an object
|
|
130
|
+
* as value, which is parsed from the template string.
|
|
131
|
+
*/
|
|
132
|
+
objectTemplateInfo?: {
|
|
133
|
+
/**
|
|
134
|
+
* Stringified template to be used for constructing the return object
|
|
135
|
+
*/
|
|
136
|
+
templateAsString?: string;
|
|
137
|
+
/**
|
|
138
|
+
* Placeholder in the template string. Will be replaced by the new value
|
|
139
|
+
*/
|
|
140
|
+
placeholder?: string;
|
|
141
|
+
};
|
|
120
142
|
};
|
|
121
|
-
/**
|
|
122
|
-
* Url of the OData service
|
|
123
|
-
*/
|
|
124
|
-
serviceUrl: string;
|
|
125
143
|
};
|
|
126
144
|
|
|
127
145
|
/**
|
|
@@ -148,6 +166,14 @@ declare module "sap/ui/rta/plugin/annotations/AnnotationChangeDialog" {
|
|
|
148
166
|
* Current value of the property
|
|
149
167
|
*/
|
|
150
168
|
currentValue: string;
|
|
169
|
+
/**
|
|
170
|
+
* Label of the property. If not given, the property name is used
|
|
171
|
+
*/
|
|
172
|
+
label?: string;
|
|
173
|
+
/**
|
|
174
|
+
* Tooltip of the property
|
|
175
|
+
*/
|
|
176
|
+
tooltip?: string;
|
|
151
177
|
}>;
|
|
152
178
|
/**
|
|
153
179
|
* Array of possible values for value list type properties
|