@sapui5/ts-types 1.116.0 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +144 -57
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +160 -63
- package/types/sap.fe.core.d.ts +21 -35
- package/types/sap.fe.macros.d.ts +148 -16
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +344 -1208
- package/types/sap.insights.d.ts +251 -11
- package/types/sap.landvisz.d.ts +64 -25
- package/types/sap.m.d.ts +2259 -806
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +40 -16
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +24 -111
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +87 -1
- package/types/sap.suite.ui.commons.d.ts +531 -182
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +85 -34
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +297 -116
- package/types/sap.ui.comp.d.ts +631 -256
- package/types/sap.ui.core.d.ts +976 -286
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +193 -3
- package/types/sap.ui.fl.d.ts +25 -10
- 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 +90 -23
- package/types/sap.ui.layout.d.ts +93 -30
- package/types/sap.ui.mdc.d.ts +6507 -6291
- package/types/sap.ui.richtexteditor.d.ts +17 -5
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +149 -43
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +265 -103
- package/types/sap.ui.ux3.d.ts +300 -120
- package/types/sap.ui.vbm.d.ts +288 -120
- package/types/sap.ui.vk.d.ts +685 -271
- package/types/sap.ui.vtm.d.ts +177 -72
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +170 -68
- package/types/sap.ui.webc.main.d.ts +495 -198
- package/types/sap.uiext.inbox.d.ts +64 -25
- package/types/sap.ushell.d.ts +658 -47
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +51 -21
- package/types/sap.viz.d.ts +675 -267
- 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 +35 -14
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -163,6 +163,23 @@ declare namespace sap {
|
|
|
163
163
|
|
|
164
164
|
interface ExportBase$BeforeExportEventParameters {}
|
|
165
165
|
|
|
166
|
+
interface ExportHandler$BeforeExportEventParameters {
|
|
167
|
+
/**
|
|
168
|
+
* Contains export-related configuration
|
|
169
|
+
*/
|
|
170
|
+
exportSettings?: object;
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* User-specific settings from the Export As dialog
|
|
174
|
+
*/
|
|
175
|
+
userExportSettings?: object;
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Array of filter settings for the exported data
|
|
179
|
+
*/
|
|
180
|
+
filterSettings?: sap.ui.export.util.Filter[];
|
|
181
|
+
}
|
|
182
|
+
|
|
166
183
|
interface Spreadsheet$BeforeSaveEventParameters {}
|
|
167
184
|
|
|
168
185
|
/**
|
|
@@ -340,6 +357,162 @@ declare namespace sap {
|
|
|
340
357
|
| sap.ui.model.TreeBinding
|
|
341
358
|
): object | null;
|
|
342
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* @since 1.102
|
|
362
|
+
*
|
|
363
|
+
* The `sap.ui.export.ExportHandler` class allows you to export table data from an SAPUI5 application.
|
|
364
|
+
*/
|
|
365
|
+
class ExportHandler extends sap.ui.base.EventProvider {
|
|
366
|
+
/**
|
|
367
|
+
* Any export-related functionality is encapsulated in the `ExportHandler` that also stores user settings
|
|
368
|
+
* throughout the session.
|
|
369
|
+
*/
|
|
370
|
+
constructor(
|
|
371
|
+
/**
|
|
372
|
+
* `ExportHandler` capabilities that define supported file types and features
|
|
373
|
+
*/
|
|
374
|
+
mCapabilities: object
|
|
375
|
+
);
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* Creates a new subclass of class sap.ui.export.ExportHandler with name `sClassName` and enriches it with
|
|
379
|
+
* the information contained in `oClassInfo`.
|
|
380
|
+
*
|
|
381
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.EventProvider.extend}.
|
|
382
|
+
*
|
|
383
|
+
* @returns Created class / constructor function
|
|
384
|
+
*/
|
|
385
|
+
static extend<T extends Record<string, unknown>>(
|
|
386
|
+
/**
|
|
387
|
+
* Name of the class being created
|
|
388
|
+
*/
|
|
389
|
+
sClassName: string,
|
|
390
|
+
/**
|
|
391
|
+
* Object literal with information about the class
|
|
392
|
+
*/
|
|
393
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.export.ExportHandler>,
|
|
394
|
+
/**
|
|
395
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
396
|
+
* used by this class
|
|
397
|
+
*/
|
|
398
|
+
FNMetaImpl?: Function
|
|
399
|
+
): Function;
|
|
400
|
+
/**
|
|
401
|
+
* Returns a metadata object for class sap.ui.export.ExportHandler.
|
|
402
|
+
*
|
|
403
|
+
* @returns Metadata object describing this class
|
|
404
|
+
*/
|
|
405
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
406
|
+
/**
|
|
407
|
+
* @since 1.102
|
|
408
|
+
*
|
|
409
|
+
* Attaches event handler `fnFunction` to the {@link sap.ui.export.ExportHandler#event:beforeExport} event
|
|
410
|
+
* of this `sap.ui.export.ExportHandler`.
|
|
411
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
412
|
+
* otherwise it will be bound to this `sap.ui.export.ExportHandler` itself.
|
|
413
|
+
* This event is fired just before the export process is started.
|
|
414
|
+
*
|
|
415
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
416
|
+
*/
|
|
417
|
+
attachBeforeExport(
|
|
418
|
+
/**
|
|
419
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
420
|
+
* object when firing the event
|
|
421
|
+
*/
|
|
422
|
+
oData: object,
|
|
423
|
+
/**
|
|
424
|
+
* The function to be called when the event occurs
|
|
425
|
+
*/
|
|
426
|
+
fnHandler: Function,
|
|
427
|
+
/**
|
|
428
|
+
* Context object to call the event handler with; defaults to this `sap.ui.export.ExportHandler` instance
|
|
429
|
+
* itself
|
|
430
|
+
*/
|
|
431
|
+
oListener?: object
|
|
432
|
+
): this;
|
|
433
|
+
/**
|
|
434
|
+
* @since 1.102
|
|
435
|
+
*
|
|
436
|
+
* Attaches event handler `fnFunction` to the {@link sap.ui.export.ExportHandler#event:beforeExport} event
|
|
437
|
+
* of this `sap.ui.export.ExportHandler`.
|
|
438
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
439
|
+
* otherwise it will be bound to this `sap.ui.export.ExportHandler` itself.
|
|
440
|
+
* This event is fired just before the export process is started.
|
|
441
|
+
*
|
|
442
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
443
|
+
*/
|
|
444
|
+
attachBeforeExport(
|
|
445
|
+
/**
|
|
446
|
+
* The function to be called when the event occurs
|
|
447
|
+
*/
|
|
448
|
+
fnHandler: Function,
|
|
449
|
+
/**
|
|
450
|
+
* Context object to call the event handler with; defaults to this `sap.ui.export.ExportHandler` instance
|
|
451
|
+
* itself
|
|
452
|
+
*/
|
|
453
|
+
oListener?: object
|
|
454
|
+
): this;
|
|
455
|
+
/**
|
|
456
|
+
* Cleans up the internal structures and removes all event handlers.
|
|
457
|
+
*
|
|
458
|
+
* The object must not be used anymore after destroy was called.
|
|
459
|
+
* See:
|
|
460
|
+
* sap.ui.base.Object#destroy
|
|
461
|
+
*/
|
|
462
|
+
destroy(): void;
|
|
463
|
+
/**
|
|
464
|
+
* @since 1.102
|
|
465
|
+
*
|
|
466
|
+
* Detaches event handler `fnFunction` from the {@link sap.ui.export.ExportHandler#event:beforeExport} event
|
|
467
|
+
* of this `sap.ui.export.ExportHandler`.
|
|
468
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
469
|
+
*
|
|
470
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
471
|
+
*/
|
|
472
|
+
detachBeforeExport(
|
|
473
|
+
/**
|
|
474
|
+
* The function to be called when the event occurs
|
|
475
|
+
*/
|
|
476
|
+
fnHandler: Function,
|
|
477
|
+
/**
|
|
478
|
+
* Context object on which the given function had to be called
|
|
479
|
+
*/
|
|
480
|
+
oListener?: object
|
|
481
|
+
): this;
|
|
482
|
+
/**
|
|
483
|
+
* @since 1.102
|
|
484
|
+
*
|
|
485
|
+
* Exports the data as defined via parameter. The function returns a `Promise` that will be resolved after
|
|
486
|
+
* the export process has been finished. In case of an error, its message will be shown in a `Dialog`, and
|
|
487
|
+
* the `Promise` will be rejected.
|
|
488
|
+
*
|
|
489
|
+
* @returns A `Promise` that gets resolved after the export process has been finished
|
|
490
|
+
*/
|
|
491
|
+
export(
|
|
492
|
+
/**
|
|
493
|
+
* Export settings that are used for the export
|
|
494
|
+
*/
|
|
495
|
+
mExportSettings: object
|
|
496
|
+
): Promise<any>;
|
|
497
|
+
/**
|
|
498
|
+
* @since 1.102
|
|
499
|
+
*
|
|
500
|
+
* Exports the data as defined by the user. This function will show an export settings dialog where the
|
|
501
|
+
* user can define certain settings that influence the output of the export functionality.
|
|
502
|
+
*
|
|
503
|
+
* @returns A `Promise` that resolves once the data has been exported
|
|
504
|
+
*/
|
|
505
|
+
exportAs(
|
|
506
|
+
/**
|
|
507
|
+
* General export settings containing `workbook` and `dataSource` information
|
|
508
|
+
*/
|
|
509
|
+
oSettings: object,
|
|
510
|
+
/**
|
|
511
|
+
* Resolves the label for a particular column that is not directly contained in the export settings
|
|
512
|
+
*/
|
|
513
|
+
fnResolveColumnLabel?: Function
|
|
514
|
+
): Promise<any>;
|
|
515
|
+
}
|
|
343
516
|
/**
|
|
344
517
|
* @since 1.50
|
|
345
518
|
*
|
|
@@ -808,15 +981,32 @@ declare namespace sap {
|
|
|
808
981
|
* File types for document export.
|
|
809
982
|
*/
|
|
810
983
|
enum FileType {
|
|
984
|
+
/**
|
|
985
|
+
* @since 1.117
|
|
986
|
+
*
|
|
987
|
+
* Portable Document Format (PDF) file type.
|
|
988
|
+
*/
|
|
989
|
+
PDF = "PDF",
|
|
811
990
|
/**
|
|
812
991
|
* Office Open XML - SpreadsheetML file type.
|
|
813
992
|
*/
|
|
814
993
|
XLSX = "XLSX",
|
|
815
994
|
}
|
|
816
995
|
|
|
817
|
-
type ExportBase$BeforeExportEvent = sap.ui.base.Event<
|
|
996
|
+
type ExportBase$BeforeExportEvent = sap.ui.base.Event<
|
|
997
|
+
ExportBase$BeforeExportEventParameters,
|
|
998
|
+
ExportBase
|
|
999
|
+
>;
|
|
1000
|
+
|
|
1001
|
+
type ExportHandler$BeforeExportEvent = sap.ui.base.Event<
|
|
1002
|
+
ExportHandler$BeforeExportEventParameters,
|
|
1003
|
+
ExportHandler
|
|
1004
|
+
>;
|
|
818
1005
|
|
|
819
|
-
type Spreadsheet$BeforeSaveEvent = sap.ui.base.Event<
|
|
1006
|
+
type Spreadsheet$BeforeSaveEvent = sap.ui.base.Event<
|
|
1007
|
+
Spreadsheet$BeforeSaveEventParameters,
|
|
1008
|
+
Spreadsheet
|
|
1009
|
+
>;
|
|
820
1010
|
}
|
|
821
1011
|
}
|
|
822
1012
|
|
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1082,15 +1082,30 @@ declare namespace sap {
|
|
|
1082
1082
|
): this;
|
|
1083
1083
|
}
|
|
1084
1084
|
|
|
1085
|
-
type VariantManagement$CancelEvent = sap.ui.base.Event<
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1085
|
+
type VariantManagement$CancelEvent = sap.ui.base.Event<
|
|
1086
|
+
VariantManagement$CancelEventParameters,
|
|
1087
|
+
VariantManagement
|
|
1088
|
+
>;
|
|
1089
|
+
|
|
1090
|
+
type VariantManagement$InitializedEvent = sap.ui.base.Event<
|
|
1091
|
+
VariantManagement$InitializedEventParameters,
|
|
1092
|
+
VariantManagement
|
|
1093
|
+
>;
|
|
1094
|
+
|
|
1095
|
+
type VariantManagement$ManageEvent = sap.ui.base.Event<
|
|
1096
|
+
VariantManagement$ManageEventParameters,
|
|
1097
|
+
VariantManagement
|
|
1098
|
+
>;
|
|
1099
|
+
|
|
1100
|
+
type VariantManagement$SaveEvent = sap.ui.base.Event<
|
|
1101
|
+
VariantManagement$SaveEventParameters,
|
|
1102
|
+
VariantManagement
|
|
1103
|
+
>;
|
|
1104
|
+
|
|
1105
|
+
type VariantManagement$SelectEvent = sap.ui.base.Event<
|
|
1106
|
+
VariantManagement$SelectEventParameters,
|
|
1107
|
+
VariantManagement
|
|
1108
|
+
>;
|
|
1094
1109
|
}
|
|
1095
1110
|
/**
|
|
1096
1111
|
* The `sap.ui.fl.write` namespace contains all code to create, update, and reset flex objects. Additional
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -519,6 +519,12 @@ declare namespace sap {
|
|
|
519
519
|
*/
|
|
520
520
|
eCardArea?: sap.ui.integration.CardArea
|
|
521
521
|
): void;
|
|
522
|
+
/**
|
|
523
|
+
* @experimental (since 1.117)
|
|
524
|
+
*
|
|
525
|
+
* Hides the message previously shown by showMessage.
|
|
526
|
+
*/
|
|
527
|
+
hideMessage(): void;
|
|
522
528
|
/**
|
|
523
529
|
* @since 1.85
|
|
524
530
|
* @experimental (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
|
|
@@ -1754,6 +1760,12 @@ declare namespace sap {
|
|
|
1754
1760
|
*/
|
|
1755
1761
|
eCardArea?: sap.ui.integration.CardArea
|
|
1756
1762
|
): void;
|
|
1763
|
+
/**
|
|
1764
|
+
* @experimental (since 1.117)
|
|
1765
|
+
*
|
|
1766
|
+
* Hides the message previously shown by showMessage.
|
|
1767
|
+
*/
|
|
1768
|
+
hideMessage(): void;
|
|
1757
1769
|
/**
|
|
1758
1770
|
* @since 1.85
|
|
1759
1771
|
* @experimental (since 1.85) - Disclaimer: this aggregation is in a beta state - incompatible API changes
|
|
@@ -2173,15 +2185,30 @@ declare namespace sap {
|
|
|
2173
2185
|
validateControls(): boolean;
|
|
2174
2186
|
}
|
|
2175
2187
|
|
|
2176
|
-
type Card$ActionEvent = sap.ui.base.Event<
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2188
|
+
type Card$ActionEvent = sap.ui.base.Event<
|
|
2189
|
+
Card$ActionEventParameters,
|
|
2190
|
+
Card
|
|
2191
|
+
>;
|
|
2192
|
+
|
|
2193
|
+
type Card$ConfigurationChangeEvent = sap.ui.base.Event<
|
|
2194
|
+
Card$ConfigurationChangeEventParameters,
|
|
2195
|
+
Card
|
|
2196
|
+
>;
|
|
2197
|
+
|
|
2198
|
+
type Card$ManifestAppliedEvent = sap.ui.base.Event<
|
|
2199
|
+
Card$ManifestAppliedEventParameters,
|
|
2200
|
+
Card
|
|
2201
|
+
>;
|
|
2202
|
+
|
|
2203
|
+
type Card$ManifestReadyEvent = sap.ui.base.Event<
|
|
2204
|
+
Card$ManifestReadyEventParameters,
|
|
2205
|
+
Card
|
|
2206
|
+
>;
|
|
2207
|
+
|
|
2208
|
+
type Card$StateChangedEvent = sap.ui.base.Event<
|
|
2209
|
+
Card$StateChangedEventParameters,
|
|
2210
|
+
Card
|
|
2211
|
+
>;
|
|
2185
2212
|
}
|
|
2186
2213
|
|
|
2187
2214
|
interface $ActionDefinitionSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -3087,6 +3114,25 @@ declare namespace sap {
|
|
|
3087
3114
|
* Called after the card is initialized.
|
|
3088
3115
|
*/
|
|
3089
3116
|
onCardReady(): void;
|
|
3117
|
+
/**
|
|
3118
|
+
* @deprecated (since 1.85) - This property is replaced by the `actions` aggregation of the card;
|
|
3119
|
+
* @experimental (since 1.75) - Disclaimer: this property is in a beta state - incompatible API changes
|
|
3120
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3121
|
+
*
|
|
3122
|
+
* Sets a new value for property {@link #getActions actions}.
|
|
3123
|
+
*
|
|
3124
|
+
* The actions configuration.
|
|
3125
|
+
*
|
|
3126
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3127
|
+
*
|
|
3128
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3129
|
+
*/
|
|
3130
|
+
setActions(
|
|
3131
|
+
/**
|
|
3132
|
+
* New value for property `actions`
|
|
3133
|
+
*/
|
|
3134
|
+
sActions: sap.ui.integration.CardMenuAction[]
|
|
3135
|
+
): this;
|
|
3090
3136
|
/**
|
|
3091
3137
|
* Sets current value of property {@link #setFormatters formatters}.
|
|
3092
3138
|
*
|
|
@@ -4023,19 +4069,40 @@ declare namespace sap {
|
|
|
4023
4069
|
parameters: object;
|
|
4024
4070
|
};
|
|
4025
4071
|
|
|
4026
|
-
type ActionDefinition$PressEvent = sap.ui.base.Event<
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
type Host$
|
|
4037
|
-
|
|
4038
|
-
|
|
4072
|
+
type ActionDefinition$PressEvent = sap.ui.base.Event<
|
|
4073
|
+
ActionDefinition$PressEventParameters,
|
|
4074
|
+
ActionDefinition
|
|
4075
|
+
>;
|
|
4076
|
+
|
|
4077
|
+
type Extension$ActionEvent = sap.ui.base.Event<
|
|
4078
|
+
Extension$ActionEventParameters,
|
|
4079
|
+
Extension
|
|
4080
|
+
>;
|
|
4081
|
+
|
|
4082
|
+
type Host$ActionEvent = sap.ui.base.Event<
|
|
4083
|
+
Host$ActionEventParameters,
|
|
4084
|
+
Host
|
|
4085
|
+
>;
|
|
4086
|
+
|
|
4087
|
+
type Host$CardConfigurationChangeEvent = sap.ui.base.Event<
|
|
4088
|
+
Host$CardConfigurationChangeEventParameters,
|
|
4089
|
+
Host
|
|
4090
|
+
>;
|
|
4091
|
+
|
|
4092
|
+
type Host$CardInitializedEvent = sap.ui.base.Event<
|
|
4093
|
+
Host$CardInitializedEventParameters,
|
|
4094
|
+
Host
|
|
4095
|
+
>;
|
|
4096
|
+
|
|
4097
|
+
type Host$CardStateChangedEvent = sap.ui.base.Event<
|
|
4098
|
+
Host$CardStateChangedEventParameters,
|
|
4099
|
+
Host
|
|
4100
|
+
>;
|
|
4101
|
+
|
|
4102
|
+
type Host$MessageEvent = sap.ui.base.Event<
|
|
4103
|
+
Host$MessageEventParameters,
|
|
4104
|
+
Host
|
|
4105
|
+
>;
|
|
4039
4106
|
}
|
|
4040
4107
|
}
|
|
4041
4108
|
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2686,9 +2686,15 @@ declare namespace sap {
|
|
|
2686
2686
|
*/
|
|
2687
2687
|
type CSSGridTrack = string;
|
|
2688
2688
|
|
|
2689
|
-
type GridResponsiveLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
2689
|
+
type GridResponsiveLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
2690
|
+
GridResponsiveLayout$LayoutChangeEventParameters,
|
|
2691
|
+
GridResponsiveLayout
|
|
2692
|
+
>;
|
|
2690
2693
|
|
|
2691
|
-
type ResponsiveColumnLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
2694
|
+
type ResponsiveColumnLayout$LayoutChangeEvent = sap.ui.base.Event<
|
|
2695
|
+
ResponsiveColumnLayout$LayoutChangeEventParameters,
|
|
2696
|
+
ResponsiveColumnLayout
|
|
2697
|
+
>;
|
|
2692
2698
|
}
|
|
2693
2699
|
|
|
2694
2700
|
namespace form {
|
|
@@ -3292,6 +3298,8 @@ declare namespace sap {
|
|
|
3292
3298
|
| `{${string}}`;
|
|
3293
3299
|
|
|
3294
3300
|
/**
|
|
3301
|
+
* @deprecated (since 1.93) - use another `Layout`
|
|
3302
|
+
*
|
|
3295
3303
|
* The overall minimum width in pixels that is used for the `SimpleForm`.
|
|
3296
3304
|
*
|
|
3297
3305
|
* If the available width is below the given `minWidth` the `SimpleForm` will create a new row for the next
|
|
@@ -3336,6 +3344,8 @@ declare namespace sap {
|
|
|
3336
3344
|
| `{${string}}`;
|
|
3337
3345
|
|
|
3338
3346
|
/**
|
|
3347
|
+
* @deprecated (since 1.93) - use another `Layout`
|
|
3348
|
+
*
|
|
3339
3349
|
* Specifies the min-width in pixels of the label in all form rows.
|
|
3340
3350
|
*
|
|
3341
3351
|
* **Note:** This property is only used if a `ResponsiveLayout` is used as a layout.
|
|
@@ -3354,8 +3364,9 @@ declare namespace sap {
|
|
|
3354
3364
|
* **Note** If possible, set the `layout` before adding content to prevent calculations for the default
|
|
3355
3365
|
* layout.
|
|
3356
3366
|
*
|
|
3357
|
-
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
3358
|
-
*
|
|
3367
|
+
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
3368
|
+
*
|
|
3369
|
+
* **Note** As of version 1.117, the `ResponsiveGridLayout` is used as default.
|
|
3359
3370
|
*/
|
|
3360
3371
|
layout?:
|
|
3361
3372
|
| sap.ui.layout.form.SimpleFormLayout
|
|
@@ -4999,22 +5010,6 @@ declare namespace sap {
|
|
|
4999
5010
|
* @returns Metadata object describing this class
|
|
5000
5011
|
*/
|
|
5001
5012
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
5002
|
-
/**
|
|
5003
|
-
* @since 1.74.0
|
|
5004
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5005
|
-
*
|
|
5006
|
-
* Sets the editable state of the `FormElement`.
|
|
5007
|
-
*
|
|
5008
|
-
* This must only be called from the `Form` and it's `FormContainers`.
|
|
5009
|
-
*
|
|
5010
|
-
* Labels inside of a `Form` must be invalidated if `editable` changed on `Form`.
|
|
5011
|
-
*/
|
|
5012
|
-
_setEditable(
|
|
5013
|
-
/**
|
|
5014
|
-
* Editable state of the `Form`
|
|
5015
|
-
*/
|
|
5016
|
-
bEditable: boolean
|
|
5017
|
-
): void;
|
|
5018
5013
|
/**
|
|
5019
5014
|
* Adds some field to the aggregation {@link #getFields fields}.
|
|
5020
5015
|
*
|
|
@@ -5249,6 +5244,55 @@ declare namespace sap {
|
|
|
5249
5244
|
* @returns Value of property `backgroundDesign`
|
|
5250
5245
|
*/
|
|
5251
5246
|
getBackgroundDesign(): sap.ui.layout.BackgroundDesign;
|
|
5247
|
+
/**
|
|
5248
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5249
|
+
*
|
|
5250
|
+
* In {@link sap.ui.layout.SemanticFormElement SemanticFormElement}, delimiters are rendered. They should
|
|
5251
|
+
* use only a small space. So `Layout`-dependent `LayoutData` are needed.
|
|
5252
|
+
*
|
|
5253
|
+
* This function needs to be implemented by the specific `Layout`.
|
|
5254
|
+
*
|
|
5255
|
+
* @returns LayoutData or promise retuning LayoutData
|
|
5256
|
+
*/
|
|
5257
|
+
getLayoutDataForDelimiter(): sap.ui.core.LayoutData | Promise<any>;
|
|
5258
|
+
/**
|
|
5259
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5260
|
+
*
|
|
5261
|
+
* In {@link sap.ui.layout.SemanticFormElement SemanticFormElement}, delimiters are rendered. The fields
|
|
5262
|
+
* should be rendered per default in a way, the field and the corresponding delimiter filling one row in
|
|
5263
|
+
* phone mode. In desktop mode they should all be in one row.
|
|
5264
|
+
*
|
|
5265
|
+
* This function needs to be implemented by the specific `Layout`.
|
|
5266
|
+
*
|
|
5267
|
+
* @returns LayoutData or promise retuning LayoutData
|
|
5268
|
+
*/
|
|
5269
|
+
getLayoutDataForSemanticField(
|
|
5270
|
+
/**
|
|
5271
|
+
* Number of field in the `SemanticFormElement`
|
|
5272
|
+
*/
|
|
5273
|
+
iFields: int,
|
|
5274
|
+
/**
|
|
5275
|
+
* Index of field in the `SemanticFormElement`
|
|
5276
|
+
*/
|
|
5277
|
+
iIndex: int,
|
|
5278
|
+
/**
|
|
5279
|
+
* existing `LayoutData` that might be just changed
|
|
5280
|
+
*/
|
|
5281
|
+
oLayoutData?: sap.ui.core.LayoutData
|
|
5282
|
+
): sap.ui.core.LayoutData | Promise<any>;
|
|
5283
|
+
/**
|
|
5284
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5285
|
+
*
|
|
5286
|
+
* For {@link sap.ui.layout.SemanticFormElement SemanticFormElement}, all text-based controls should be
|
|
5287
|
+
* concatenated in display mode. If the `Layout` supports rendering of single controls, they are rendered
|
|
5288
|
+
* divided by delimiters. If the `Layout` doesn't support this, one concatenated text is rendered. Here
|
|
5289
|
+
* only text is supported, no links or other special rendering.
|
|
5290
|
+
*
|
|
5291
|
+
* This function needs to be implemented by the specific `Layout`.
|
|
5292
|
+
*
|
|
5293
|
+
* @returns `true` if layout allows to render single controls for {@link sap.ui.layout.SemanticFormElement SemanticFormElement}
|
|
5294
|
+
*/
|
|
5295
|
+
renderControlsForSemanticElement(): boolean;
|
|
5252
5296
|
/**
|
|
5253
5297
|
* @since 1.36.0
|
|
5254
5298
|
*
|
|
@@ -6917,6 +6961,8 @@ declare namespace sap {
|
|
|
6917
6961
|
*/
|
|
6918
6962
|
getEmptySpanXL(): int;
|
|
6919
6963
|
/**
|
|
6964
|
+
* @deprecated (since 1.93) - use another `Layout`
|
|
6965
|
+
*
|
|
6920
6966
|
* Gets current value of property {@link #getLabelMinWidth labelMinWidth}.
|
|
6921
6967
|
*
|
|
6922
6968
|
* Specifies the min-width in pixels of the label in all form rows.
|
|
@@ -7004,10 +7050,11 @@ declare namespace sap {
|
|
|
7004
7050
|
* **Note** If possible, set the `layout` before adding content to prevent calculations for the default
|
|
7005
7051
|
* layout.
|
|
7006
7052
|
*
|
|
7007
|
-
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
7008
|
-
* the default could not be changed.
|
|
7053
|
+
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
7009
7054
|
*
|
|
7010
|
-
*
|
|
7055
|
+
* **Note** As of version 1.117, the `ResponsiveGridLayout` is used as default.
|
|
7056
|
+
*
|
|
7057
|
+
* Default value is `ResponsiveGridLayout`.
|
|
7011
7058
|
*
|
|
7012
7059
|
* @returns Value of property `layout`
|
|
7013
7060
|
*/
|
|
@@ -7027,6 +7074,8 @@ declare namespace sap {
|
|
|
7027
7074
|
*/
|
|
7028
7075
|
getMaxContainerCols(): int;
|
|
7029
7076
|
/**
|
|
7077
|
+
* @deprecated (since 1.93) - use another `Layout`
|
|
7078
|
+
*
|
|
7030
7079
|
* Gets current value of property {@link #getMinWidth minWidth}.
|
|
7031
7080
|
*
|
|
7032
7081
|
* The overall minimum width in pixels that is used for the `SimpleForm`.
|
|
@@ -7452,6 +7501,8 @@ declare namespace sap {
|
|
|
7452
7501
|
iEmptySpanXL?: int
|
|
7453
7502
|
): this;
|
|
7454
7503
|
/**
|
|
7504
|
+
* @deprecated (since 1.93) - use another `Layout`
|
|
7505
|
+
*
|
|
7455
7506
|
* Sets a new value for property {@link #getLabelMinWidth labelMinWidth}.
|
|
7456
7507
|
*
|
|
7457
7508
|
* Specifies the min-width in pixels of the label in all form rows.
|
|
@@ -7574,12 +7625,13 @@ declare namespace sap {
|
|
|
7574
7625
|
* **Note** If possible, set the `layout` before adding content to prevent calculations for the default
|
|
7575
7626
|
* layout.
|
|
7576
7627
|
*
|
|
7577
|
-
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
7578
|
-
*
|
|
7628
|
+
* **Note** The `ResponsiveLayout` has been deprecated and must no longer be used.
|
|
7629
|
+
*
|
|
7630
|
+
* **Note** As of version 1.117, the `ResponsiveGridLayout` is used as default.
|
|
7579
7631
|
*
|
|
7580
7632
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7581
7633
|
*
|
|
7582
|
-
* Default value is `
|
|
7634
|
+
* Default value is `ResponsiveGridLayout`.
|
|
7583
7635
|
*
|
|
7584
7636
|
* @returns Reference to `this` in order to allow method chaining
|
|
7585
7637
|
*/
|
|
@@ -7611,6 +7663,8 @@ declare namespace sap {
|
|
|
7611
7663
|
iMaxContainerCols?: int
|
|
7612
7664
|
): this;
|
|
7613
7665
|
/**
|
|
7666
|
+
* @deprecated (since 1.93) - use another `Layout`
|
|
7667
|
+
*
|
|
7614
7668
|
* Sets a new value for property {@link #getMinWidth minWidth}.
|
|
7615
7669
|
*
|
|
7616
7670
|
* The overall minimum width in pixels that is used for the `SimpleForm`.
|
|
@@ -14231,11 +14285,20 @@ declare namespace sap {
|
|
|
14231
14285
|
*/
|
|
14232
14286
|
type GridSpan = string;
|
|
14233
14287
|
|
|
14234
|
-
type DynamicSideContent$BreakpointChangedEvent = sap.ui.base.Event<
|
|
14288
|
+
type DynamicSideContent$BreakpointChangedEvent = sap.ui.base.Event<
|
|
14289
|
+
DynamicSideContent$BreakpointChangedEventParameters,
|
|
14290
|
+
DynamicSideContent
|
|
14291
|
+
>;
|
|
14235
14292
|
|
|
14236
|
-
type PaneContainer$ResizeEvent = sap.ui.base.Event<
|
|
14293
|
+
type PaneContainer$ResizeEvent = sap.ui.base.Event<
|
|
14294
|
+
PaneContainer$ResizeEventParameters,
|
|
14295
|
+
PaneContainer
|
|
14296
|
+
>;
|
|
14237
14297
|
|
|
14238
|
-
type Splitter$ResizeEvent = sap.ui.base.Event<
|
|
14298
|
+
type Splitter$ResizeEvent = sap.ui.base.Event<
|
|
14299
|
+
Splitter$ResizeEventParameters,
|
|
14300
|
+
Splitter
|
|
14301
|
+
>;
|
|
14239
14302
|
}
|
|
14240
14303
|
}
|
|
14241
14304
|
|