@sapui5/ts-types-esm 1.134.0 → 1.135.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.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +2 -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 +5 -5
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +807 -293
- 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 +73 -15
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +330 -83
- 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 +248 -1229
- package/types/sap.suite.ui.commons.d.ts +72 -1
- package/types/sap.suite.ui.generic.template.d.ts +8 -2
- 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 +90 -18
- package/types/sap.ui.core.d.ts +160 -40
- 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 +14 -6
- 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 -4
- package/types/sap.ui.layout.d.ts +14 -13
- package/types/sap.ui.mdc.d.ts +26 -6
- 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 +10 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +32 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +11 -72
- 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 +46 -16
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +10 -1
- 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.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.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.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -3313,7 +3313,7 @@ declare module "sap/ui/mdc/library" {
|
|
|
3313
3313
|
/**
|
|
3314
3314
|
* Describes the filter conditions
|
|
3315
3315
|
*/
|
|
3316
|
-
filter?: State.XCondition
|
|
3316
|
+
filter?: Record<string, State.XCondition[]>;
|
|
3317
3317
|
/**
|
|
3318
3318
|
* Describes the filter fields
|
|
3319
3319
|
*/
|
|
@@ -3468,7 +3468,12 @@ declare module "sap/ui/mdc/library" {
|
|
|
3468
3468
|
/**
|
|
3469
3469
|
* Closes the container
|
|
3470
3470
|
*/
|
|
3471
|
-
close(
|
|
3471
|
+
close(
|
|
3472
|
+
/**
|
|
3473
|
+
* If set, closing must not restore the focus on the field
|
|
3474
|
+
*/
|
|
3475
|
+
bDoNotRestoreFocus: boolean
|
|
3476
|
+
): void;
|
|
3472
3477
|
/**
|
|
3473
3478
|
* Opens the container
|
|
3474
3479
|
*
|
|
@@ -3541,7 +3546,12 @@ declare module "sap/ui/mdc/library" {
|
|
|
3541
3546
|
/**
|
|
3542
3547
|
* Closes the container
|
|
3543
3548
|
*/
|
|
3544
|
-
close(
|
|
3549
|
+
close(
|
|
3550
|
+
/**
|
|
3551
|
+
* If set, closing must not restore the focus on the field
|
|
3552
|
+
*/
|
|
3553
|
+
bDoNotRestoreFocus: boolean
|
|
3554
|
+
): void;
|
|
3545
3555
|
/**
|
|
3546
3556
|
* Determines the item (key and description) for a given value.
|
|
3547
3557
|
*
|
|
@@ -21683,13 +21693,23 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21683
21693
|
/**
|
|
21684
21694
|
* Closes the container
|
|
21685
21695
|
*/
|
|
21686
|
-
close(
|
|
21696
|
+
close(
|
|
21697
|
+
/**
|
|
21698
|
+
* If set, closing must not restore the focus on the field
|
|
21699
|
+
*/
|
|
21700
|
+
bDoNotRestoreFocus: boolean
|
|
21701
|
+
): void;
|
|
21687
21702
|
/**
|
|
21688
21703
|
* Closes the container control or element.
|
|
21689
21704
|
*
|
|
21690
21705
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
21691
21706
|
*/
|
|
21692
|
-
closeContainer(
|
|
21707
|
+
closeContainer(
|
|
21708
|
+
/**
|
|
21709
|
+
* If set, closing must not restore the focus on the field
|
|
21710
|
+
*/
|
|
21711
|
+
bDoNotRestoreFocus: boolean
|
|
21712
|
+
): void;
|
|
21693
21713
|
/**
|
|
21694
21714
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
21695
21715
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/richtexteditor/library" {
|
|
4
4
|
/**
|
|
@@ -34,6 +34,8 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
34
34
|
|
|
35
35
|
import Event from "sap/ui/base/Event";
|
|
36
36
|
|
|
37
|
+
import { IToolbar } from "sap/ui/richtexteditor/library";
|
|
38
|
+
|
|
37
39
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
38
40
|
|
|
39
41
|
import {
|
|
@@ -493,6 +495,14 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
493
495
|
* @returns Reference to `this` in order to allow method chaining
|
|
494
496
|
*/
|
|
495
497
|
destroyCustomButtons(): this;
|
|
498
|
+
/**
|
|
499
|
+
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
500
|
+
*
|
|
501
|
+
* @experimental As of version 1.135.
|
|
502
|
+
*
|
|
503
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
504
|
+
*/
|
|
505
|
+
destroyFooter(): this;
|
|
496
506
|
/**
|
|
497
507
|
* Detaches event handler `fnFunction` from the {@link #event:beforeEditorInit beforeEditorInit} event of
|
|
498
508
|
* this `sap.ui.richtexteditor.RichTextEditor`.
|
|
@@ -720,6 +730,14 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
720
730
|
* @returns Value of property `editorType`
|
|
721
731
|
*/
|
|
722
732
|
getEditorType(): string;
|
|
733
|
+
/**
|
|
734
|
+
* Gets content of aggregation {@link #getFooter footer}.
|
|
735
|
+
*
|
|
736
|
+
* Defines the footer of the control. The footer will be available only with custom toolbar.
|
|
737
|
+
*
|
|
738
|
+
* @experimental As of version 1.135.
|
|
739
|
+
*/
|
|
740
|
+
getFooter(): IToolbar;
|
|
723
741
|
/**
|
|
724
742
|
* Gets current value of property {@link #getHeight height}.
|
|
725
743
|
*
|
|
@@ -1148,6 +1166,19 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1148
1166
|
*/
|
|
1149
1167
|
sEditorType?: string
|
|
1150
1168
|
): RichTextEditor;
|
|
1169
|
+
/**
|
|
1170
|
+
* Sets the aggregated {@link #getFooter footer}.
|
|
1171
|
+
*
|
|
1172
|
+
* @experimental As of version 1.135.
|
|
1173
|
+
*
|
|
1174
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1175
|
+
*/
|
|
1176
|
+
setFooter(
|
|
1177
|
+
/**
|
|
1178
|
+
* The footer to set
|
|
1179
|
+
*/
|
|
1180
|
+
oFooter: IToolbar
|
|
1181
|
+
): this;
|
|
1151
1182
|
/**
|
|
1152
1183
|
* Sets a new value for property {@link #getHeight height}.
|
|
1153
1184
|
*
|
|
@@ -1693,6 +1724,13 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1693
1724
|
*/
|
|
1694
1725
|
customToolbar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1695
1726
|
|
|
1727
|
+
/**
|
|
1728
|
+
* Defines the footer of the control. The footer will be available only with custom toolbar.
|
|
1729
|
+
*
|
|
1730
|
+
* @experimental As of version 1.135.
|
|
1731
|
+
*/
|
|
1732
|
+
footer?: IToolbar;
|
|
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.135.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
|
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/support/library" {
|
|
4
4
|
/**
|
|
@@ -413,12 +413,6 @@ declare namespace sap {
|
|
|
413
413
|
* @since 1.50
|
|
414
414
|
*/
|
|
415
415
|
namespace support {
|
|
416
|
-
/**
|
|
417
|
-
* The CoreFacade interface allows rule developers to access the metadata, models, UI areas and components
|
|
418
|
-
* of the Core.
|
|
419
|
-
*
|
|
420
|
-
* Usage: The CoreFacade is passed as second argument to all rule check functions.
|
|
421
|
-
*/
|
|
422
416
|
class CoreFacade {
|
|
423
417
|
/**
|
|
424
418
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
@@ -427,26 +421,46 @@ declare namespace sap {
|
|
|
427
421
|
|
|
428
422
|
/**
|
|
429
423
|
* Gets the Components from the Core object.
|
|
424
|
+
*
|
|
425
|
+
*
|
|
426
|
+
* @returns Object with all components, keyed by their ID
|
|
430
427
|
*/
|
|
431
|
-
getComponents():
|
|
428
|
+
getComponents(): Record<
|
|
429
|
+
import("sap/ui/core/library").ID,
|
|
430
|
+
import("sap/ui/core/Component").default
|
|
431
|
+
>;
|
|
432
432
|
/**
|
|
433
433
|
* Gets the Metadata from the Core object.
|
|
434
|
+
*
|
|
435
|
+
* @deprecated As of version 1.119. without replacement. In future major versions, the Core no longer has
|
|
436
|
+
* a class nature and no longer inherits from sap.ui.base.Object and therefore no longer has metadata.
|
|
437
|
+
*
|
|
438
|
+
* @returns Metadata object describing the Core object
|
|
434
439
|
*/
|
|
435
|
-
getMetadata():
|
|
440
|
+
getMetadata(): import("sap/ui/base/Metadata").default;
|
|
436
441
|
/**
|
|
437
442
|
* Gets the Models from the Core object.
|
|
443
|
+
*
|
|
444
|
+
* @deprecated As of version 1.118.0. without replacement. In future major versions, the Core no longer
|
|
445
|
+
* has global models.
|
|
446
|
+
*
|
|
447
|
+
* @returns Object with all models, keyed by their name
|
|
438
448
|
*/
|
|
439
|
-
getModels():
|
|
449
|
+
getModels():
|
|
450
|
+
| Record<string, import("sap/ui/model/Model").default>
|
|
451
|
+
| undefined;
|
|
440
452
|
/**
|
|
441
453
|
* Gets the UI areas from the Core object.
|
|
454
|
+
*
|
|
455
|
+
*
|
|
456
|
+
* @returns Object with all UIAreas, keyed by their ID
|
|
442
457
|
*/
|
|
443
|
-
getUIAreas():
|
|
458
|
+
getUIAreas(): Record<
|
|
459
|
+
import("sap/ui/core/library").ID,
|
|
460
|
+
import("sap/ui/core/UIArea").default
|
|
461
|
+
>;
|
|
444
462
|
}
|
|
445
|
-
|
|
446
|
-
* The IssueManagerFacade allows rule developers to add new issues.
|
|
447
|
-
*
|
|
448
|
-
* Usage: The IssueManagerFacade is passed as first argument to all rule check functions.
|
|
449
|
-
*/
|
|
463
|
+
|
|
450
464
|
class IssueManagerFacade {
|
|
451
465
|
/**
|
|
452
466
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -619,9 +619,9 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
619
619
|
import Event from "sap/ui/base/Event";
|
|
620
620
|
|
|
621
621
|
/**
|
|
622
|
-
* Table
|
|
623
|
-
* and correctly annotated OData services. Please check
|
|
624
|
-
* for further details.
|
|
622
|
+
* Table that handles analytical OData back-end scenarios. The `AnalyticalTable` only works with {@link sap.ui.model.analytics.AnalyticalBinding AnalyticalBinding }
|
|
623
|
+
* and correctly annotated OData services. Please check out the functionality of analytical binding and
|
|
624
|
+
* the SAP Annotations for OData Version 2.0 documentation for further details.
|
|
625
625
|
*/
|
|
626
626
|
export default class AnalyticalTable extends Table {
|
|
627
627
|
/**
|
|
@@ -3071,7 +3071,7 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3071
3071
|
*/
|
|
3072
3072
|
export default class MultiSelectionPlugin extends SelectionPlugin {
|
|
3073
3073
|
/**
|
|
3074
|
-
* Constructs an instance of sap.ui.table.plugins.MultiSelectionPlugin
|
|
3074
|
+
* Constructs an instance of sap.ui.table.plugins.MultiSelectionPlugin.
|
|
3075
3075
|
*
|
|
3076
3076
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3077
3077
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -3570,20 +3570,16 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3570
3570
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3571
3571
|
|
|
3572
3572
|
/**
|
|
3573
|
-
*
|
|
3573
|
+
* Base class for the selection plugins. A selection plugin is responsible for the selection behavior of
|
|
3574
|
+
* the table. It handles the selection state and provides information about the selection state to the table.
|
|
3575
|
+
* The subclass is also responsible for firing the `selectionChange` event when the selection is changed.
|
|
3576
|
+
*
|
|
3577
|
+
* Do not add more than one selection plugin to a table.
|
|
3574
3578
|
*
|
|
3575
3579
|
* @since 1.64
|
|
3576
|
-
* @experimental As of version 1.64.
|
|
3577
3580
|
*/
|
|
3578
3581
|
export default abstract class SelectionPlugin extends UI5Element {
|
|
3579
3582
|
/**
|
|
3580
|
-
* Constructs an instance of sap.ui.table.plugins.SelectionPlugin
|
|
3581
|
-
*
|
|
3582
|
-
* The following restrictions apply:
|
|
3583
|
-
* - Do not create subclasses of the `SelectionPlugin`. The API is subject to change. **Note:** Subclasses
|
|
3584
|
-
* provided by the UI5 framework that are not explicitly marked as experimental or restricted in any other
|
|
3585
|
-
* way can be used on a regular basis.
|
|
3586
|
-
*
|
|
3587
3583
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3588
3584
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3589
3585
|
* of the syntax of the settings object.
|
|
@@ -3749,8 +3745,6 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3749
3745
|
}
|
|
3750
3746
|
/**
|
|
3751
3747
|
* Describes the settings that can be provided to the SelectionPlugin constructor.
|
|
3752
|
-
*
|
|
3753
|
-
* @experimental As of version 1.64.
|
|
3754
3748
|
*/
|
|
3755
3749
|
export interface $SelectionPluginSettings extends $ElementSettings {
|
|
3756
3750
|
/**
|
|
@@ -11437,8 +11431,6 @@ declare namespace sap {
|
|
|
11437
11431
|
|
|
11438
11432
|
"sap/ui/table/plugins/SelectionPlugin": undefined;
|
|
11439
11433
|
|
|
11440
|
-
"sap/ui/table/plugins/V4Aggregation": undefined;
|
|
11441
|
-
|
|
11442
11434
|
"sap/ui/table/Row": undefined;
|
|
11443
11435
|
|
|
11444
11436
|
"sap/ui/table/RowAction": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -1375,6 +1375,21 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1375
1375
|
*/
|
|
1376
1376
|
oInitialFocusedDate?: object
|
|
1377
1377
|
): this;
|
|
1378
|
+
/**
|
|
1379
|
+
* Setter for the property `intervalSelection`. If set to `true`, an interval of dates can be selected.
|
|
1380
|
+
*
|
|
1381
|
+
* **Note:** This property should be set to `false` if `singleSelection` is set to `false`, as selecting
|
|
1382
|
+
* multiple intervals is not supported.
|
|
1383
|
+
*
|
|
1384
|
+
*
|
|
1385
|
+
* @returns Reference to `this` for method chaining
|
|
1386
|
+
*/
|
|
1387
|
+
setIntervalSelection(
|
|
1388
|
+
/**
|
|
1389
|
+
* Indicates if `intervalSelection` should be enabled
|
|
1390
|
+
*/
|
|
1391
|
+
bEnabled: boolean
|
|
1392
|
+
): this;
|
|
1378
1393
|
/**
|
|
1379
1394
|
* Sets the associated {@link #getLegend legend}.
|
|
1380
1395
|
*
|
|
@@ -1534,6 +1549,22 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1534
1549
|
*/
|
|
1535
1550
|
bShowWeekNumbers?: boolean
|
|
1536
1551
|
): this;
|
|
1552
|
+
/**
|
|
1553
|
+
* Setter for the property `singleSelection`. If set to `true` only a single date or single interval, when
|
|
1554
|
+
* `intervalSelection` is set to `true`, can be selected.
|
|
1555
|
+
*
|
|
1556
|
+
* **Note:** This property should be set to `true` if `intervalSelection` is set to `true`, as selecting
|
|
1557
|
+
* multiple intervals is not supported.
|
|
1558
|
+
*
|
|
1559
|
+
*
|
|
1560
|
+
* @returns Reference to `this` for method chaining
|
|
1561
|
+
*/
|
|
1562
|
+
setSingleSelection(
|
|
1563
|
+
/**
|
|
1564
|
+
* Indicates if `singleSelection` should be enabled
|
|
1565
|
+
*/
|
|
1566
|
+
bEnabled: boolean
|
|
1567
|
+
): this;
|
|
1537
1568
|
/**
|
|
1538
1569
|
* Sets a new value for property {@link #getWidth width}.
|
|
1539
1570
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED