@sapui5/ts-types 1.112.1 → 1.113.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 +59 -2
- package/types/sap.chart.d.ts +15 -1
- package/types/sap.collaboration.d.ts +33 -1
- package/types/sap.esh.search.ui.d.ts +405 -1
- package/types/sap.f.d.ts +75 -38
- package/types/sap.fe.core.d.ts +28 -2
- package/types/sap.fe.macros.d.ts +52 -69
- package/types/sap.fe.navigation.d.ts +2 -0
- package/types/sap.fe.templates.d.ts +6 -0
- package/types/sap.fe.test.d.ts +7 -1
- package/types/sap.feedback.ui.d.ts +2 -6
- package/types/sap.gantt.d.ts +238 -16
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +27 -1
- package/types/sap.m.d.ts +1854 -85
- package/types/sap.makit.d.ts +13 -1
- package/types/sap.me.d.ts +17 -1
- package/types/sap.ndc.d.ts +10 -2
- package/types/sap.ovp.d.ts +7 -1
- package/types/sap.rules.ui.d.ts +9 -1
- package/types/sap.sac.df.d.ts +62 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +272 -2
- package/types/sap.suite.ui.generic.template.d.ts +180 -1
- package/types/sap.suite.ui.microchart.d.ts +37 -1
- package/types/sap.tnt.d.ts +7 -1
- package/types/sap.ui.codeeditor.d.ts +5 -1
- package/types/sap.ui.commons.d.ts +197 -1
- package/types/sap.ui.comp.d.ts +314 -7
- package/types/sap.ui.core.d.ts +1508 -518
- 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 +13 -1
- package/types/sap.ui.generic.app.d.ts +20 -7
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +52 -19
- package/types/sap.ui.layout.d.ts +43 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +11 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +5 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +63 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +308 -4
- package/types/sap.ui.ux3.d.ts +147 -1
- package/types/sap.ui.vbm.d.ts +122 -1
- package/types/sap.ui.vk.d.ts +375 -2
- package/types/sap.ui.vtm.d.ts +73 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +63 -1
- package/types/sap.ui.webc.main.d.ts +189 -5
- package/types/sap.uiext.inbox.d.ts +27 -1
- package/types/sap.ushell.d.ts +375 -79
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +26 -1
- package/types/sap.viz.d.ts +229 -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 +10 -1
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -82,67 +82,6 @@ declare namespace sap {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
namespace internal {
|
|
86
|
-
interface $FilterBarSettings extends sap.ui.core.$ControlSettings {}
|
|
87
|
-
|
|
88
|
-
interface $MicroChartSettings extends sap.ui.core.$ControlSettings {}
|
|
89
|
-
|
|
90
|
-
interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
|
|
91
|
-
/**
|
|
92
|
-
* The identifier of the Paginator control.
|
|
93
|
-
*/
|
|
94
|
-
id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* @SINCE 1.94.0
|
|
99
|
-
*
|
|
100
|
-
* Building block for creating a FilterBar based on the metadata provided by OData V4.
|
|
101
|
-
* Usage example:
|
|
102
|
-
*
|
|
103
|
-
* ```javascript
|
|
104
|
-
*
|
|
105
|
-
* <macro:FilterBar
|
|
106
|
-
* id="SomeID"
|
|
107
|
-
* showAdaptFiltersButton="true"
|
|
108
|
-
* p13nMode=["Item","Value"]
|
|
109
|
-
* listBindingNames = "sap.fe.tableBinding"
|
|
110
|
-
* liveMode="true"
|
|
111
|
-
* search=".handlers.onSearch"
|
|
112
|
-
* filterChanged=".handlers.onFiltersChanged"
|
|
113
|
-
* />
|
|
114
|
-
* ```
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* Building block for creating a FilterBar based on the metadata provided by OData V4.
|
|
118
|
-
*/
|
|
119
|
-
class FilterBar extends sap.ui.core.Control {
|
|
120
|
-
constructor();
|
|
121
|
-
}
|
|
122
|
-
/**
|
|
123
|
-
* @SINCE 1.93.0
|
|
124
|
-
*
|
|
125
|
-
* Building block used to create a MicroChart based on the metadata provided by OData V4.
|
|
126
|
-
*/
|
|
127
|
-
class MicroChart extends sap.ui.core.Control {
|
|
128
|
-
constructor();
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* @SINCE 1.94.0
|
|
132
|
-
*
|
|
133
|
-
* Building block used to create a paginator control.
|
|
134
|
-
* Usage example:
|
|
135
|
-
*
|
|
136
|
-
* ```javascript
|
|
137
|
-
*
|
|
138
|
-
* <macro:Paginator />
|
|
139
|
-
* ```
|
|
140
|
-
*/
|
|
141
|
-
class Paginator extends sap.ui.core.Control {
|
|
142
|
-
constructor();
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
|
|
146
85
|
namespace table {
|
|
147
86
|
/**
|
|
148
87
|
* Definition of a custom action to be used inside the table toolbar
|
|
@@ -221,7 +160,11 @@ declare namespace sap {
|
|
|
221
160
|
*/
|
|
222
161
|
header: string;
|
|
223
162
|
/**
|
|
224
|
-
*
|
|
163
|
+
* Aligns the header as well as the content horizontally
|
|
164
|
+
*/
|
|
165
|
+
horizontalAlign: /* was: sap.fe.core.HorizontalAlign */ any;
|
|
166
|
+
/**
|
|
167
|
+
* Defines the column importance.
|
|
225
168
|
* You can define which columns should be automatically moved to the pop-in area based on their importance
|
|
226
169
|
*/
|
|
227
170
|
importance: string;
|
|
@@ -234,6 +177,11 @@ declare namespace sap {
|
|
|
234
177
|
* Allowed values are `Before` and `After`
|
|
235
178
|
*/
|
|
236
179
|
placement: string;
|
|
180
|
+
/**
|
|
181
|
+
* Defines the column's width.
|
|
182
|
+
* Allowed values are `auto`, `value` and `inherit` according to {@link sap.ui.core.CSSSize}
|
|
183
|
+
*/
|
|
184
|
+
width: string;
|
|
237
185
|
};
|
|
238
186
|
}
|
|
239
187
|
|
|
@@ -413,12 +361,15 @@ declare namespace sap {
|
|
|
413
361
|
| `{${string}}`;
|
|
414
362
|
}
|
|
415
363
|
|
|
416
|
-
interface $FormSettings extends sap.
|
|
364
|
+
interface $FormSettings extends sap.ui.core.$ControlSettings {
|
|
417
365
|
/**
|
|
418
366
|
* Defines the path of the context used in the current page or block.
|
|
419
367
|
* This setting is defined by the framework.
|
|
420
368
|
*/
|
|
421
|
-
contextPath?:
|
|
369
|
+
contextPath?:
|
|
370
|
+
| sap.ui.model.Context
|
|
371
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
372
|
+
| `{${string}}`;
|
|
422
373
|
|
|
423
374
|
/**
|
|
424
375
|
* The identifier of the form control.
|
|
@@ -428,7 +379,10 @@ declare namespace sap {
|
|
|
428
379
|
/**
|
|
429
380
|
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
430
381
|
*/
|
|
431
|
-
metaPath?:
|
|
382
|
+
metaPath?:
|
|
383
|
+
| sap.ui.model.Context
|
|
384
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
385
|
+
| `{${string}}`;
|
|
432
386
|
|
|
433
387
|
/**
|
|
434
388
|
* The title of the form control.
|
|
@@ -479,6 +433,15 @@ declare namespace sap {
|
|
|
479
433
|
fields?: sap.ui.core.Control;
|
|
480
434
|
}
|
|
481
435
|
|
|
436
|
+
interface $MicroChartSettings extends sap.ui.core.$ControlSettings {}
|
|
437
|
+
|
|
438
|
+
interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
|
|
439
|
+
/**
|
|
440
|
+
* The identifier of the Paginator control.
|
|
441
|
+
*/
|
|
442
|
+
id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
443
|
+
}
|
|
444
|
+
|
|
482
445
|
interface $TableSettings extends sap.fe.macros.$MacroAPISettings {
|
|
483
446
|
/**
|
|
484
447
|
* An expression that allows you to control the 'busy' state of the table.
|
|
@@ -789,7 +752,7 @@ declare namespace sap {
|
|
|
789
752
|
* <macro:Form id="MyForm" metaPath="@com.sap.vocabularies.UI.v1.FieldGroup#GeneralInformation" />
|
|
790
753
|
* ```
|
|
791
754
|
*/
|
|
792
|
-
class Form extends sap.
|
|
755
|
+
class Form extends sap.ui.core.Control {
|
|
793
756
|
constructor();
|
|
794
757
|
}
|
|
795
758
|
/**
|
|
@@ -800,6 +763,28 @@ declare namespace sap {
|
|
|
800
763
|
class FormElement extends sap.ui.core.Control {
|
|
801
764
|
constructor();
|
|
802
765
|
}
|
|
766
|
+
/**
|
|
767
|
+
* @SINCE 1.93.0
|
|
768
|
+
*
|
|
769
|
+
* Building block used to create a MicroChart based on the metadata provided by OData V4.
|
|
770
|
+
*/
|
|
771
|
+
class MicroChart extends sap.ui.core.Control {
|
|
772
|
+
constructor();
|
|
773
|
+
}
|
|
774
|
+
/**
|
|
775
|
+
* @SINCE 1.94.0
|
|
776
|
+
*
|
|
777
|
+
* Building block used to create a paginator control.
|
|
778
|
+
* Usage example:
|
|
779
|
+
*
|
|
780
|
+
* ```javascript
|
|
781
|
+
*
|
|
782
|
+
* <macro:Paginator />
|
|
783
|
+
* ```
|
|
784
|
+
*/
|
|
785
|
+
class Paginator extends sap.ui.core.Control {
|
|
786
|
+
constructor();
|
|
787
|
+
}
|
|
803
788
|
/**
|
|
804
789
|
* Building block used to create a table based on the metadata provided by OData V4.
|
|
805
790
|
*
|
|
@@ -967,11 +952,9 @@ declare namespace sap {
|
|
|
967
952
|
|
|
968
953
|
"sap/fe/macros/field/TextAreaEx": undefined;
|
|
969
954
|
|
|
970
|
-
"sap/fe/macros/filterBar/FilterBar.block": undefined;
|
|
971
|
-
|
|
972
955
|
"sap/fe/macros/filterBar/FilterBarAPI": undefined;
|
|
973
956
|
|
|
974
|
-
"sap/fe/macros/form/
|
|
957
|
+
"sap/fe/macros/form/Form.block": undefined;
|
|
975
958
|
|
|
976
959
|
"sap/fe/macros/form/FormElement.block": undefined;
|
|
977
960
|
|
|
@@ -65,6 +65,8 @@ declare namespace sap {
|
|
|
65
65
|
constructor();
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
69
|
+
*
|
|
68
70
|
* The method creates a context url based on provided data. This context url can either be used as
|
|
69
71
|
* {@link sap.fe.navigation.NavigationHandler#setParameterContextUrl ParameterContextUrl} or
|
|
70
72
|
* {@link sap.fe.navigation.NavigationHandler#setFilterContextUrl FilterContextUrl}.
|
|
@@ -11,6 +11,9 @@ declare namespace sap {
|
|
|
11
11
|
* @SINCE 1.79.0
|
|
12
12
|
*
|
|
13
13
|
* Extension API for list reports in SAP Fiori elements for OData V4.
|
|
14
|
+
* To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
|
|
15
|
+
* SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
|
|
16
|
+
* created by the SAP Fiori elements framework.
|
|
14
17
|
*/
|
|
15
18
|
class ExtensionAPI
|
|
16
19
|
/* was: sap.fe.templates.ExtensionAPI */ extends Object {
|
|
@@ -313,6 +316,9 @@ declare namespace sap {
|
|
|
313
316
|
* @SINCE 1.79.0
|
|
314
317
|
*
|
|
315
318
|
* Extension API for object pages on SAP Fiori elements for OData V4.
|
|
319
|
+
* To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
|
|
320
|
+
* SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
|
|
321
|
+
* created by the SAP Fiori elements framework.
|
|
316
322
|
*/
|
|
317
323
|
class ExtensionAPI
|
|
318
324
|
/* was: sap.fe.templates.ExtensionAPI */ extends Object {
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.113.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -2974,6 +2974,8 @@ declare namespace sap {
|
|
|
2974
2974
|
oDefaultRunner: sap.fe.test.JourneyRunner
|
|
2975
2975
|
): void;
|
|
2976
2976
|
/**
|
|
2977
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2978
|
+
*
|
|
2977
2979
|
* Returns the base action instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
|
|
2978
2980
|
* `actions` setting.
|
|
2979
2981
|
*
|
|
@@ -2986,6 +2988,8 @@ declare namespace sap {
|
|
|
2986
2988
|
*/
|
|
2987
2989
|
getBaseActions(): sap.ui.test.Opa;
|
|
2988
2990
|
/**
|
|
2991
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
2992
|
+
*
|
|
2989
2993
|
* Returns the base arrangements instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
|
|
2990
2994
|
* `arrangements` setting.
|
|
2991
2995
|
*
|
|
@@ -3003,6 +3007,8 @@ declare namespace sap {
|
|
|
3003
3007
|
mSettings: object
|
|
3004
3008
|
): sap.ui.test.Opa;
|
|
3005
3009
|
/**
|
|
3010
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
3011
|
+
*
|
|
3006
3012
|
* Returns the base assertions instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
|
|
3007
3013
|
* `assertions` setting.
|
|
3008
3014
|
*
|