@sapui5/types 1.120.9 → 1.121.1
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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +50 -18
- package/types/sap.ca.ui.d.ts +1112 -544
- package/types/sap.chart.d.ts +17 -1
- package/types/sap.collaboration.d.ts +185 -64
- package/types/sap.esh.search.ui.d.ts +2 -1886
- package/types/sap.f.d.ts +124 -45
- package/types/sap.fe.core.d.ts +75 -79
- package/types/sap.fe.macros.d.ts +427 -554
- package/types/sap.fe.navigation.d.ts +4 -6
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +9 -0
- package/types/sap.fe.templates.d.ts +1 -7
- package/types/sap.fe.test.d.ts +105 -27
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +222 -63
- package/types/sap.insights.d.ts +115 -1
- package/types/sap.m.d.ts +2105 -303
- package/types/sap.makit.d.ts +11 -1
- package/types/sap.me.d.ts +7 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +134 -75
- package/types/sap.sac.df.d.ts +270 -47
- package/types/sap.suite.ui.commons.d.ts +1318 -19
- package/types/sap.suite.ui.generic.template.d.ts +38 -48
- package/types/sap.suite.ui.microchart.d.ts +63 -1
- package/types/sap.tnt.d.ts +628 -113
- package/types/sap.ui.codeeditor.d.ts +10 -6
- package/types/sap.ui.commons.d.ts +92 -8
- package/types/sap.ui.comp.d.ts +260 -111
- package/types/sap.ui.core.d.ts +500 -186
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +16 -3
- package/types/sap.ui.fl.d.ts +91 -68
- package/types/sap.ui.generic.app.d.ts +250 -193
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +51 -4
- package/types/sap.ui.layout.d.ts +214 -27
- package/types/sap.ui.mdc.d.ts +1544 -811
- package/types/sap.ui.richtexteditor.d.ts +4 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +28 -4
- package/types/sap.ui.table.d.ts +65 -11
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +157 -54
- package/types/sap.ui.ux3.d.ts +30 -12
- package/types/sap.ui.vbm.d.ts +6081 -3279
- package/types/sap.ui.vk.d.ts +93 -105
- package/types/sap.ui.vtm.d.ts +681 -211
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +49 -1
- package/types/sap.ui.webc.main.d.ts +144 -9
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +4394 -3926
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +52 -5
- package/types/sap.viz.d.ts +89 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +79 -18
- package/types/sap.zen.crosstab.d.ts +81 -13
- package/types/sap.zen.dsh.d.ts +194 -143
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/navigation/library" {
|
|
4
4
|
/**
|
|
@@ -178,8 +178,6 @@ declare module "sap/fe/navigation/NavigationHandler" {
|
|
|
178
178
|
* @since 1.83.0
|
|
179
179
|
*/
|
|
180
180
|
export default class NavigationHandler extends BaseObject {
|
|
181
|
-
constructor();
|
|
182
|
-
|
|
183
181
|
/**
|
|
184
182
|
* The method creates a context url based on provided data. This context url can either be used as
|
|
185
183
|
* {@link sap.fe.navigation.NavigationHandler#setParameterContextUrl ParameterContextUrl} or
|
|
@@ -629,7 +627,9 @@ declare module "sap/fe/navigation/PresentationVariant" {
|
|
|
629
627
|
*
|
|
630
628
|
* @returns The current properties.
|
|
631
629
|
*/
|
|
632
|
-
getProperties():
|
|
630
|
+
getProperties(): /* was: sap.fe.navigation.PresentationVariant.PvProperties */
|
|
631
|
+
| any
|
|
632
|
+
| undefined;
|
|
633
633
|
/**
|
|
634
634
|
* Gets the table visualization property.
|
|
635
635
|
*
|
|
@@ -732,8 +732,6 @@ declare module "sap/fe/navigation/SelectionVariant" {
|
|
|
732
732
|
* @since 1.83.0
|
|
733
733
|
*/
|
|
734
734
|
export default class SelectionVariant extends BaseObject {
|
|
735
|
-
constructor();
|
|
736
|
-
|
|
737
735
|
/**
|
|
738
736
|
* Sets the value of a parameter called `sName` to the new value `sValue`.
|
|
739
737
|
* If the parameter has already been set before, its value is overwritten.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/templates/library" {}
|
|
4
4
|
|
|
@@ -17,8 +17,6 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
17
17
|
* @since 1.79.0
|
|
18
18
|
*/
|
|
19
19
|
export default class ExtensionAPI extends ExtensionAPI1 {
|
|
20
|
-
constructor();
|
|
21
|
-
|
|
22
20
|
/**
|
|
23
21
|
* This method converts filter conditions to filters.
|
|
24
22
|
*
|
|
@@ -127,8 +125,6 @@ declare module "sap/fe/templates/ListReport/ListReportController.controller" {
|
|
|
127
125
|
* Controller class for the list report page, used inside an SAP Fiori elements application.
|
|
128
126
|
*/
|
|
129
127
|
export default class ListReportController extends PageController {
|
|
130
|
-
constructor();
|
|
131
|
-
|
|
132
128
|
/**
|
|
133
129
|
* Get the extension API for the current page.
|
|
134
130
|
*
|
|
@@ -202,8 +198,6 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
202
198
|
* @since 1.79.0
|
|
203
199
|
*/
|
|
204
200
|
export default class ExtensionAPI extends ExtensionAPI1 {
|
|
205
|
-
constructor();
|
|
206
|
-
|
|
207
201
|
/**
|
|
208
202
|
* Gets the bound context of the current object page.
|
|
209
203
|
*
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/test/library" {}
|
|
4
4
|
|
|
@@ -136,7 +136,10 @@ declare module "sap/fe/test/api/TableAPI" {
|
|
|
136
136
|
};
|
|
137
137
|
|
|
138
138
|
export default class TableAPI {
|
|
139
|
-
|
|
139
|
+
/**
|
|
140
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
141
|
+
*/
|
|
142
|
+
protected constructor();
|
|
140
143
|
|
|
141
144
|
/**
|
|
142
145
|
* Confirms and closes the adaptation dialog of the table.
|
|
@@ -187,7 +190,10 @@ declare module "sap/fe/test/api/DialogActions" {
|
|
|
187
190
|
import { DialogFieldIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
188
191
|
|
|
189
192
|
export default class DialogActions {
|
|
190
|
-
|
|
193
|
+
/**
|
|
194
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
195
|
+
*/
|
|
196
|
+
protected constructor();
|
|
191
197
|
|
|
192
198
|
/**
|
|
193
199
|
* Cancels the dialog by clicking the corresponding button (for example, 'Cancel').
|
|
@@ -240,7 +246,10 @@ declare module "sap/fe/test/api/DialogAssertions" {
|
|
|
240
246
|
} from "sap/fe/test/api/BaseAPI";
|
|
241
247
|
|
|
242
248
|
export default class DialogAssertions {
|
|
243
|
-
|
|
249
|
+
/**
|
|
250
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
251
|
+
*/
|
|
252
|
+
protected constructor();
|
|
244
253
|
|
|
245
254
|
/**
|
|
246
255
|
* Checks the content and state of a field in an action parameter dialog.
|
|
@@ -337,7 +346,10 @@ declare module "sap/fe/test/api/DialogCreateActions" {
|
|
|
337
346
|
import DialogActions from "sap/fe/test/api/DialogActions";
|
|
338
347
|
|
|
339
348
|
export default class DialogCreateActions extends DialogActions {
|
|
340
|
-
|
|
349
|
+
/**
|
|
350
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
351
|
+
*/
|
|
352
|
+
protected constructor();
|
|
341
353
|
|
|
342
354
|
/**
|
|
343
355
|
* Executes the `Create` action on the create dialog.
|
|
@@ -353,7 +365,10 @@ declare module "sap/fe/test/api/DialogCreateAssertions" {
|
|
|
353
365
|
import DialogAssertions from "sap/fe/test/api/DialogAssertions";
|
|
354
366
|
|
|
355
367
|
export default class DialogCreateAssertions extends DialogAssertions {
|
|
356
|
-
|
|
368
|
+
/**
|
|
369
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
370
|
+
*/
|
|
371
|
+
protected constructor();
|
|
357
372
|
|
|
358
373
|
/**
|
|
359
374
|
* Checks the `Create` action on the dialog.
|
|
@@ -374,7 +389,10 @@ declare module "sap/fe/test/api/DialogMessageActions" {
|
|
|
374
389
|
import DialogActions from "sap/fe/test/api/DialogActions";
|
|
375
390
|
|
|
376
391
|
export default class DialogMessageActions extends DialogActions {
|
|
377
|
-
|
|
392
|
+
/**
|
|
393
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
394
|
+
*/
|
|
395
|
+
protected constructor();
|
|
378
396
|
|
|
379
397
|
/**
|
|
380
398
|
* Executes the `Back` action on the message dialog.
|
|
@@ -404,7 +422,10 @@ declare module "sap/fe/test/api/DialogMessageAssertions" {
|
|
|
404
422
|
import DialogAssertions from "sap/fe/test/api/DialogAssertions";
|
|
405
423
|
|
|
406
424
|
export default class DialogMessageAssertions extends DialogAssertions {
|
|
407
|
-
|
|
425
|
+
/**
|
|
426
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
427
|
+
*/
|
|
428
|
+
protected constructor();
|
|
408
429
|
|
|
409
430
|
/**
|
|
410
431
|
* Checks the `Back` action on the message dialog.
|
|
@@ -484,7 +505,10 @@ declare module "sap/fe/test/api/DialogValueHelpActions" {
|
|
|
484
505
|
import { FilterFieldIdentifier } from "sap/fe/test/api/FilterBarAPI";
|
|
485
506
|
|
|
486
507
|
export default class DialogValueHelpActions extends DialogActions {
|
|
487
|
-
|
|
508
|
+
/**
|
|
509
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
510
|
+
*/
|
|
511
|
+
protected constructor();
|
|
488
512
|
|
|
489
513
|
/**
|
|
490
514
|
* Adds a new condition.
|
|
@@ -635,7 +659,10 @@ declare module "sap/fe/test/api/DialogValueHelpAssertions" {
|
|
|
635
659
|
import { FilterFieldIdentifier } from "sap/fe/test/api/FilterBarAPI";
|
|
636
660
|
|
|
637
661
|
export default class DialogValueHelpAssertions extends DialogAssertions {
|
|
638
|
-
|
|
662
|
+
/**
|
|
663
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
664
|
+
*/
|
|
665
|
+
protected constructor();
|
|
639
666
|
|
|
640
667
|
/**
|
|
641
668
|
* Checks the `Define conditions` tab in a value help dialog. Please be aware that the tab control of the
|
|
@@ -814,7 +841,10 @@ declare module "sap/fe/test/api/FilterBarActions" {
|
|
|
814
841
|
import EditState from "sap/fe/test/api/EditState";
|
|
815
842
|
|
|
816
843
|
export default class FilterBarActions extends FilterBarAPI {
|
|
817
|
-
|
|
844
|
+
/**
|
|
845
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
846
|
+
*/
|
|
847
|
+
protected constructor();
|
|
818
848
|
|
|
819
849
|
/**
|
|
820
850
|
* Adds a field as a filter field.
|
|
@@ -963,7 +993,10 @@ declare module "sap/fe/test/api/FilterBarActions" {
|
|
|
963
993
|
|
|
964
994
|
declare module "sap/fe/test/api/FilterBarAPI" {
|
|
965
995
|
export default class FilterBarAPI {
|
|
966
|
-
|
|
996
|
+
/**
|
|
997
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
998
|
+
*/
|
|
999
|
+
protected constructor();
|
|
967
1000
|
|
|
968
1001
|
/**
|
|
969
1002
|
* Confirms the filter bar adaptation. It can be used in an action chain as well as in an assertion chain.
|
|
@@ -1000,7 +1033,10 @@ declare module "sap/fe/test/api/FilterBarAssertions" {
|
|
|
1000
1033
|
import EditState from "sap/fe/test/api/EditState";
|
|
1001
1034
|
|
|
1002
1035
|
export default class FilterBarAssertions extends FilterBarAPI {
|
|
1003
|
-
|
|
1036
|
+
/**
|
|
1037
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1038
|
+
*/
|
|
1039
|
+
protected constructor();
|
|
1004
1040
|
|
|
1005
1041
|
/**
|
|
1006
1042
|
* Checks a field in the adaptation dialog.
|
|
@@ -1132,7 +1168,10 @@ declare module "sap/fe/test/api/FooterActionsBase" {
|
|
|
1132
1168
|
import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1133
1169
|
|
|
1134
1170
|
export default class FooterActionsBase {
|
|
1135
|
-
|
|
1171
|
+
/**
|
|
1172
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1173
|
+
*/
|
|
1174
|
+
protected constructor();
|
|
1136
1175
|
|
|
1137
1176
|
/**
|
|
1138
1177
|
* Executes a footer action.
|
|
@@ -1153,7 +1192,10 @@ declare module "sap/fe/test/api/FooterActionsOP" {
|
|
|
1153
1192
|
import FooterActionsBase from "sap/fe/test/api/FooterActionsBase";
|
|
1154
1193
|
|
|
1155
1194
|
export default class FooterActionsOP extends FooterActionsBase {
|
|
1156
|
-
|
|
1195
|
+
/**
|
|
1196
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1197
|
+
*/
|
|
1198
|
+
protected constructor();
|
|
1157
1199
|
|
|
1158
1200
|
/**
|
|
1159
1201
|
* Confirms the Cancel action when user clicks `Cancel` in draft mode.
|
|
@@ -1190,7 +1232,10 @@ declare module "sap/fe/test/api/FooterAssertionsBase" {
|
|
|
1190
1232
|
import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1191
1233
|
|
|
1192
1234
|
export default class FooterAssertionsBase {
|
|
1193
|
-
|
|
1235
|
+
/**
|
|
1236
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1237
|
+
*/
|
|
1238
|
+
protected constructor();
|
|
1194
1239
|
|
|
1195
1240
|
/**
|
|
1196
1241
|
* Checks the state of an action in the footer bar.
|
|
@@ -1227,7 +1272,10 @@ declare module "sap/fe/test/api/FooterAssertionsOP" {
|
|
|
1227
1272
|
import FooterAssertionsBase from "sap/fe/test/api/FooterAssertionsBase";
|
|
1228
1273
|
|
|
1229
1274
|
export default class FooterAssertionsOP extends FooterAssertionsBase {
|
|
1230
|
-
|
|
1275
|
+
/**
|
|
1276
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1277
|
+
*/
|
|
1278
|
+
protected constructor();
|
|
1231
1279
|
|
|
1232
1280
|
/**
|
|
1233
1281
|
* Checks the state of the Apply action in the footer bar.
|
|
@@ -1288,7 +1336,10 @@ declare module "sap/fe/test/api/FormActions" {
|
|
|
1288
1336
|
import { FieldIdentifier, ActionIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1289
1337
|
|
|
1290
1338
|
export default class FormActions extends FormAPI {
|
|
1291
|
-
|
|
1339
|
+
/**
|
|
1340
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1341
|
+
*/
|
|
1342
|
+
protected constructor();
|
|
1292
1343
|
|
|
1293
1344
|
/**
|
|
1294
1345
|
* Changes the value of a field within a form.
|
|
@@ -1373,7 +1424,10 @@ declare module "sap/fe/test/api/FormActions" {
|
|
|
1373
1424
|
|
|
1374
1425
|
declare module "sap/fe/test/api/FormAPI" {
|
|
1375
1426
|
export default class FormAPI {
|
|
1376
|
-
|
|
1427
|
+
/**
|
|
1428
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1429
|
+
*/
|
|
1430
|
+
protected constructor();
|
|
1377
1431
|
}
|
|
1378
1432
|
/**
|
|
1379
1433
|
* A form identifier
|
|
@@ -1400,7 +1454,10 @@ declare module "sap/fe/test/api/FormAssertions" {
|
|
|
1400
1454
|
import { ActionIdentifier, FieldIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1401
1455
|
|
|
1402
1456
|
export default class FormAssertions extends FormAPI {
|
|
1403
|
-
|
|
1457
|
+
/**
|
|
1458
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1459
|
+
*/
|
|
1460
|
+
protected constructor();
|
|
1404
1461
|
|
|
1405
1462
|
/**
|
|
1406
1463
|
* Checks the state of an action in a subsection.
|
|
@@ -1508,7 +1565,10 @@ declare module "sap/fe/test/api/HeaderActions" {
|
|
|
1508
1565
|
import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1509
1566
|
|
|
1510
1567
|
export default class HeaderActions {
|
|
1511
|
-
|
|
1568
|
+
/**
|
|
1569
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1570
|
+
*/
|
|
1571
|
+
protected constructor();
|
|
1512
1572
|
|
|
1513
1573
|
/**
|
|
1514
1574
|
* Executes an action in the header toolbar of an object page.
|
|
@@ -1595,7 +1655,10 @@ declare module "sap/fe/test/api/HeaderActionsLR" {
|
|
|
1595
1655
|
import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1596
1656
|
|
|
1597
1657
|
export default class HeaderActionsLR {
|
|
1598
|
-
|
|
1658
|
+
/**
|
|
1659
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1660
|
+
*/
|
|
1661
|
+
protected constructor();
|
|
1599
1662
|
|
|
1600
1663
|
/**
|
|
1601
1664
|
* Executes an action in the header toolbar of a list report.
|
|
@@ -1618,7 +1681,10 @@ declare module "sap/fe/test/api/HeaderAssertions" {
|
|
|
1618
1681
|
import { HeaderFacetIdentifier } from "sap/fe/test/api/HeaderAPI";
|
|
1619
1682
|
|
|
1620
1683
|
export default class HeaderAssertions {
|
|
1621
|
-
|
|
1684
|
+
/**
|
|
1685
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1686
|
+
*/
|
|
1687
|
+
protected constructor();
|
|
1622
1688
|
|
|
1623
1689
|
/**
|
|
1624
1690
|
* Checks an action in the header toolbar.
|
|
@@ -1801,7 +1867,10 @@ declare module "sap/fe/test/api/HeaderAssertionsLR" {
|
|
|
1801
1867
|
import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1802
1868
|
|
|
1803
1869
|
export default class HeaderAssertionsLR {
|
|
1804
|
-
|
|
1870
|
+
/**
|
|
1871
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1872
|
+
*/
|
|
1873
|
+
protected constructor();
|
|
1805
1874
|
|
|
1806
1875
|
/**
|
|
1807
1876
|
* Checks an action of the header toolbar.
|
|
@@ -1877,7 +1946,10 @@ declare module "sap/fe/test/api/TableActions" {
|
|
|
1877
1946
|
import { ActionIdentifier } from "sap/fe/test/api/BaseAPI";
|
|
1878
1947
|
|
|
1879
1948
|
export default class TableActions extends TableAPI {
|
|
1880
|
-
|
|
1949
|
+
/**
|
|
1950
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1951
|
+
*/
|
|
1952
|
+
protected constructor();
|
|
1881
1953
|
|
|
1882
1954
|
/**
|
|
1883
1955
|
* Adds a field as a column to the table.
|
|
@@ -2426,7 +2498,10 @@ declare module "sap/fe/test/api/TableAssertions" {
|
|
|
2426
2498
|
import { SortOrder } from "sap/ui/core/library";
|
|
2427
2499
|
|
|
2428
2500
|
export default class TableAssertions extends TableAPI {
|
|
2429
|
-
|
|
2501
|
+
/**
|
|
2502
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2503
|
+
*/
|
|
2504
|
+
protected constructor();
|
|
2430
2505
|
|
|
2431
2506
|
/**
|
|
2432
2507
|
* Checks the state of a table action.
|
|
@@ -3574,7 +3649,10 @@ declare module "sap/fe/test/TemplatePage" {
|
|
|
3574
3649
|
* Provides a test page definition for a template page with the corresponding parameters.
|
|
3575
3650
|
*/
|
|
3576
3651
|
export default class TemplatePage {
|
|
3577
|
-
|
|
3652
|
+
/**
|
|
3653
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3654
|
+
*/
|
|
3655
|
+
protected constructor();
|
|
3578
3656
|
/**
|
|
3579
3657
|
* TemplatePage actions
|
|
3580
3658
|
*/
|
package/types/sap.fe.tools.d.ts
CHANGED