@sapui5/ts-types 1.115.0 → 1.115.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 +2 -0
- package/types/sap.chart.d.ts +92 -49
- package/types/sap.f.d.ts +775 -686
- package/types/sap.fe.core.d.ts +57 -57
- package/types/sap.fe.macros.d.ts +66 -10
- package/types/sap.fe.navigation.d.ts +5 -5
- package/types/sap.fe.placeholder.d.ts +3 -0
- package/types/sap.fe.templates.d.ts +5 -6
- package/types/sap.fe.test.d.ts +4 -4
- package/types/sap.fe.tools.d.ts +3 -0
- package/types/sap.m.d.ts +7827 -6468
- package/types/sap.makit.d.ts +77 -30
- package/types/sap.me.d.ts +108 -75
- package/types/sap.ndc.d.ts +42 -30
- package/types/sap.suite.ui.generic.template.d.ts +72 -64
- package/types/sap.suite.ui.microchart.d.ts +354 -225
- package/types/sap.tnt.d.ts +67 -73
- package/types/sap.ui.codeeditor.d.ts +38 -34
- package/types/sap.ui.commons.d.ts +841 -675
- package/types/sap.ui.comp.d.ts +2545 -2065
- package/types/sap.ui.core.d.ts +2532 -1908
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +42 -27
- package/types/sap.ui.fl.d.ts +78 -56
- package/types/sap.ui.integration.d.ts +345 -299
- package/types/sap.ui.layout.d.ts +347 -337
- package/types/sap.ui.mdc.d.ts +959 -801
- package/types/sap.ui.richtexteditor.d.ts +62 -37
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +23 -8
- package/types/sap.ui.support.d.ts +11 -11
- package/types/sap.ui.table.d.ts +476 -420
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1186 -909
- package/types/sap.ui.ux3.d.ts +957 -736
- package/types/sap.ui.webc.common.d.ts +9 -9
- package/types/sap.ui.webc.fiori.d.ts +519 -386
- package/types/sap.ui.webc.main.d.ts +1377 -902
- package/types/sap.uiext.inbox.d.ts +135 -31
- package/types/sap.ushell.d.ts +379 -267
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +280 -242
- package/types/sap.viz.d.ts +1677 -601
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.115.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -9,7 +9,7 @@ declare namespace sap {
|
|
|
9
9
|
namespace expоrt {
|
|
10
10
|
namespace util {
|
|
11
11
|
/**
|
|
12
|
-
* @
|
|
12
|
+
* @since 1.110
|
|
13
13
|
*
|
|
14
14
|
* The `sap.ui.export.util.Filter` class represents filter settings that are used for the export. It provides
|
|
15
15
|
* the capability to have a visual representation of the filters in the exported document and offers convenience
|
|
@@ -92,7 +92,7 @@ declare namespace sap {
|
|
|
92
92
|
*/
|
|
93
93
|
static getMetadata(): sap.ui.base.Metadata;
|
|
94
94
|
/**
|
|
95
|
-
* @
|
|
95
|
+
* @since 1.110
|
|
96
96
|
*
|
|
97
97
|
* Returns the filter label if available. Otherwise the name of the filter property will be returned.
|
|
98
98
|
*
|
|
@@ -100,7 +100,7 @@ declare namespace sap {
|
|
|
100
100
|
*/
|
|
101
101
|
getLabel(): string;
|
|
102
102
|
/**
|
|
103
|
-
* @
|
|
103
|
+
* @since 1.110
|
|
104
104
|
*
|
|
105
105
|
* Returns the technical name of the property on which the filter is applied.
|
|
106
106
|
*
|
|
@@ -108,7 +108,7 @@ declare namespace sap {
|
|
|
108
108
|
*/
|
|
109
109
|
getProperty(): string;
|
|
110
110
|
/**
|
|
111
|
-
* @
|
|
111
|
+
* @since 1.110
|
|
112
112
|
*
|
|
113
113
|
* Returns the formatted filter value(s) as string. If there are multiple filters for the same property,
|
|
114
114
|
* which are combined via `OR`, it will return a semicolon-separated list of the filter values including
|
|
@@ -118,7 +118,7 @@ declare namespace sap {
|
|
|
118
118
|
*/
|
|
119
119
|
getValue(): string;
|
|
120
120
|
/**
|
|
121
|
-
* @
|
|
121
|
+
* @since 1.110
|
|
122
122
|
*
|
|
123
123
|
* Uses the given format function to format all filter values. The function has to accept a single parameter
|
|
124
124
|
* of type `string` and needs to return a string value. The function will be called for every single raw
|
|
@@ -137,7 +137,7 @@ declare namespace sap {
|
|
|
137
137
|
fnFormat: Function
|
|
138
138
|
): void;
|
|
139
139
|
/**
|
|
140
|
-
* @
|
|
140
|
+
* @since 1.110
|
|
141
141
|
*
|
|
142
142
|
* Takes the given string as label of the filter.
|
|
143
143
|
*/
|
|
@@ -148,7 +148,7 @@ declare namespace sap {
|
|
|
148
148
|
sLabel: string
|
|
149
149
|
): void;
|
|
150
150
|
/**
|
|
151
|
-
* @
|
|
151
|
+
* @since 1.110
|
|
152
152
|
*
|
|
153
153
|
* Uses the given `sap.ui.model.SimpleType` instance to format the filter values accordingly.
|
|
154
154
|
*/
|
|
@@ -161,12 +161,12 @@ declare namespace sap {
|
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
interface $
|
|
164
|
+
interface ExportBase$BeforeExportEventParameters {}
|
|
165
165
|
|
|
166
|
-
interface $
|
|
166
|
+
interface Spreadsheet$BeforeSaveEventParameters {}
|
|
167
167
|
|
|
168
168
|
/**
|
|
169
|
-
* @
|
|
169
|
+
* @since 1.96
|
|
170
170
|
*
|
|
171
171
|
* The `sap.ui.export.ExportBase` class allows you to export table data from a UI5 application to certain
|
|
172
172
|
* formats. This class is an abstract class that requires specific implementations for each file format.
|
|
@@ -235,7 +235,7 @@ declare namespace sap {
|
|
|
235
235
|
*/
|
|
236
236
|
static getMetadata(): sap.ui.base.Metadata;
|
|
237
237
|
/**
|
|
238
|
-
* @
|
|
238
|
+
* @since 1.96
|
|
239
239
|
*
|
|
240
240
|
* Attaches event handler `fnFunction` to the {@link sap.ui.export.ExportBase#event:beforeExport} event
|
|
241
241
|
* of this `sap.ui.export.ExportBase`.
|
|
@@ -261,7 +261,7 @@ declare namespace sap {
|
|
|
261
261
|
oListener?: object
|
|
262
262
|
): this;
|
|
263
263
|
/**
|
|
264
|
-
* @
|
|
264
|
+
* @since 1.96
|
|
265
265
|
*
|
|
266
266
|
* Attaches event handler `fnFunction` to the {@link sap.ui.export.ExportBase#event:beforeExport} event
|
|
267
267
|
* of this `sap.ui.export.ExportBase`.
|
|
@@ -300,7 +300,7 @@ declare namespace sap {
|
|
|
300
300
|
*/
|
|
301
301
|
destroy(): void;
|
|
302
302
|
/**
|
|
303
|
-
* @
|
|
303
|
+
* @since 1.96
|
|
304
304
|
*
|
|
305
305
|
* Detaches event handler `fnFunction` from the {@link sap.ui.export.ExportBase#event:beforeExport} event
|
|
306
306
|
* of this `sap.ui.export.ExportBase`.
|
|
@@ -319,7 +319,7 @@ declare namespace sap {
|
|
|
319
319
|
oListener?: object
|
|
320
320
|
): this;
|
|
321
321
|
/**
|
|
322
|
-
* @
|
|
322
|
+
* @since 1.112
|
|
323
323
|
*
|
|
324
324
|
* Returns the specific MIME type
|
|
325
325
|
*/
|
|
@@ -341,7 +341,7 @@ declare namespace sap {
|
|
|
341
341
|
): object | null;
|
|
342
342
|
}
|
|
343
343
|
/**
|
|
344
|
-
* @
|
|
344
|
+
* @since 1.50
|
|
345
345
|
*
|
|
346
346
|
* The `sap.ui.export.Spreadsheet` class allows you to export table data from a UI5 application to a spreadsheet
|
|
347
347
|
* file.
|
|
@@ -647,7 +647,7 @@ declare namespace sap {
|
|
|
647
647
|
);
|
|
648
648
|
|
|
649
649
|
/**
|
|
650
|
-
* @
|
|
650
|
+
* @since 1.61
|
|
651
651
|
*
|
|
652
652
|
* Attaches event handler `fnFunction` to the {@link sap.ui.export.Spreadsheet#event:beforeSave} event of
|
|
653
653
|
* this `sap.ui.export.Spreadsheet`.
|
|
@@ -673,7 +673,7 @@ declare namespace sap {
|
|
|
673
673
|
oListener?: object
|
|
674
674
|
): this;
|
|
675
675
|
/**
|
|
676
|
-
* @
|
|
676
|
+
* @since 1.61
|
|
677
677
|
*
|
|
678
678
|
* Attaches event handler `fnFunction` to the {@link sap.ui.export.Spreadsheet#event:beforeSave} event of
|
|
679
679
|
* this `sap.ui.export.Spreadsheet`.
|
|
@@ -694,7 +694,7 @@ declare namespace sap {
|
|
|
694
694
|
oListener?: object
|
|
695
695
|
): this;
|
|
696
696
|
/**
|
|
697
|
-
* @
|
|
697
|
+
* @since 1.52
|
|
698
698
|
*
|
|
699
699
|
* Cancels a running export process. This method does nothing if no export is running.
|
|
700
700
|
*
|
|
@@ -702,7 +702,7 @@ declare namespace sap {
|
|
|
702
702
|
*/
|
|
703
703
|
cancel(): this;
|
|
704
704
|
/**
|
|
705
|
-
* @
|
|
705
|
+
* @since 1.61
|
|
706
706
|
*
|
|
707
707
|
* Detaches event handler `fnFunction` from the {@link sap.ui.export.Spreadsheet beforeSave} event of this
|
|
708
708
|
* `sap.ui.export.Spreadsheet`.
|
|
@@ -721,7 +721,7 @@ declare namespace sap {
|
|
|
721
721
|
oListener?: object
|
|
722
722
|
): this;
|
|
723
723
|
/**
|
|
724
|
-
* @
|
|
724
|
+
* @since 1.112
|
|
725
725
|
*
|
|
726
726
|
* Returns the specific MIME type
|
|
727
727
|
*
|
|
@@ -729,7 +729,7 @@ declare namespace sap {
|
|
|
729
729
|
*/
|
|
730
730
|
getMimeType(): string;
|
|
731
731
|
/**
|
|
732
|
-
* @
|
|
732
|
+
* @since 1.73
|
|
733
733
|
*
|
|
734
734
|
* Sets the data source configuration that will be used for exporting the data. If the passed parameter
|
|
735
735
|
* is null, the call will be ignored.
|
|
@@ -750,13 +750,13 @@ declare namespace sap {
|
|
|
750
750
|
): object | null;
|
|
751
751
|
}
|
|
752
752
|
/**
|
|
753
|
-
* @
|
|
753
|
+
* @since 1.50.0
|
|
754
754
|
*
|
|
755
755
|
* EDM data types for document export.
|
|
756
756
|
*/
|
|
757
757
|
enum EdmType {
|
|
758
758
|
/**
|
|
759
|
-
* @
|
|
759
|
+
* @since 1.60
|
|
760
760
|
*
|
|
761
761
|
* Property of type BigNumber.
|
|
762
762
|
*/
|
|
@@ -778,7 +778,7 @@ declare namespace sap {
|
|
|
778
778
|
*/
|
|
779
779
|
DateTime = "DateTime",
|
|
780
780
|
/**
|
|
781
|
-
* @
|
|
781
|
+
* @since 1.58
|
|
782
782
|
*
|
|
783
783
|
* Property of type Enumeration.
|
|
784
784
|
*/
|
|
@@ -788,7 +788,7 @@ declare namespace sap {
|
|
|
788
788
|
*/
|
|
789
789
|
Number = "Number",
|
|
790
790
|
/**
|
|
791
|
-
* @
|
|
791
|
+
* @since 1.87
|
|
792
792
|
*
|
|
793
793
|
* Property of type Percentage.
|
|
794
794
|
*/
|
|
@@ -803,7 +803,7 @@ declare namespace sap {
|
|
|
803
803
|
Time = "Time",
|
|
804
804
|
}
|
|
805
805
|
/**
|
|
806
|
-
* @
|
|
806
|
+
* @since 1.78
|
|
807
807
|
*
|
|
808
808
|
* File types for document export.
|
|
809
809
|
*/
|
|
@@ -813,6 +813,21 @@ declare namespace sap {
|
|
|
813
813
|
*/
|
|
814
814
|
XLSX = "XLSX",
|
|
815
815
|
}
|
|
816
|
+
/**
|
|
817
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ExportBase$BeforeExportEventParameters'
|
|
818
|
+
* in 1.115.1 and any later releases.
|
|
819
|
+
*/
|
|
820
|
+
type $ExportBaseBeforeExportEventParameters = sap.ui.export.ExportBase$BeforeExportEventParameters;
|
|
821
|
+
|
|
822
|
+
type ExportBase$BeforeExportEvent = sap.ui.base.Event<ExportBase$BeforeExportEventParameters>;
|
|
823
|
+
|
|
824
|
+
/**
|
|
825
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Spreadsheet$BeforeSaveEventParameters'
|
|
826
|
+
* in 1.115.1 and any later releases.
|
|
827
|
+
*/
|
|
828
|
+
type $SpreadsheetBeforeSaveEventParameters = sap.ui.export.Spreadsheet$BeforeSaveEventParameters;
|
|
829
|
+
|
|
830
|
+
type Spreadsheet$BeforeSaveEvent = sap.ui.base.Event<Spreadsheet$BeforeSaveEventParameters>;
|
|
816
831
|
}
|
|
817
832
|
}
|
|
818
833
|
|
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.115.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -93,7 +93,7 @@ declare namespace sap {
|
|
|
93
93
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
|
-
* @
|
|
96
|
+
* @since 1.104
|
|
97
97
|
*
|
|
98
98
|
* Semantic level of the header. For more information, see {@link sap.m.Title#setLevel}.
|
|
99
99
|
*/
|
|
@@ -103,7 +103,7 @@ declare namespace sap {
|
|
|
103
103
|
| `{${string}}`;
|
|
104
104
|
|
|
105
105
|
/**
|
|
106
|
-
* @
|
|
106
|
+
* @since 1.109
|
|
107
107
|
*
|
|
108
108
|
* Defines the style of the title. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
109
109
|
*/
|
|
@@ -113,7 +113,7 @@ declare namespace sap {
|
|
|
113
113
|
| `{${string}}`;
|
|
114
114
|
|
|
115
115
|
/**
|
|
116
|
-
* @
|
|
116
|
+
* @since 1.109
|
|
117
117
|
*
|
|
118
118
|
* Sets the maximum width of the control.
|
|
119
119
|
*/
|
|
@@ -137,7 +137,7 @@ declare namespace sap {
|
|
|
137
137
|
* save button.
|
|
138
138
|
*/
|
|
139
139
|
save?: (
|
|
140
|
-
oEvent: sap.ui.base.Event<sap.ui.fl.variants
|
|
140
|
+
oEvent: sap.ui.base.Event<sap.ui.fl.variants.VariantManagement$SaveEventParameters>
|
|
141
141
|
) => void;
|
|
142
142
|
|
|
143
143
|
/**
|
|
@@ -149,22 +149,22 @@ declare namespace sap {
|
|
|
149
149
|
* This event is fired when users apply changes to variants in the Manage Views dialog.
|
|
150
150
|
*/
|
|
151
151
|
manage?: (
|
|
152
|
-
oEvent: sap.ui.base.Event<sap.ui.fl.variants
|
|
152
|
+
oEvent: sap.ui.base.Event<sap.ui.fl.variants.VariantManagement$ManageEventParameters>
|
|
153
153
|
) => void;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* This event is fired when a new variant is selected.
|
|
157
157
|
*/
|
|
158
158
|
select?: (
|
|
159
|
-
oEvent: sap.ui.base.Event<sap.ui.fl.variants
|
|
159
|
+
oEvent: sap.ui.base.Event<sap.ui.fl.variants.VariantManagement$SelectEventParameters>
|
|
160
160
|
) => void;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
-
interface $
|
|
163
|
+
interface VariantManagement$CancelEventParameters {}
|
|
164
164
|
|
|
165
|
-
interface $
|
|
165
|
+
interface VariantManagement$InitializedEventParameters {}
|
|
166
166
|
|
|
167
|
-
interface $
|
|
167
|
+
interface VariantManagement$ManageEventParameters {
|
|
168
168
|
/**
|
|
169
169
|
* List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
|
|
170
170
|
* of the variant
|
|
@@ -187,7 +187,7 @@ declare namespace sap {
|
|
|
187
187
|
def?: string;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
-
interface $
|
|
190
|
+
interface VariantManagement$SaveEventParameters {
|
|
191
191
|
/**
|
|
192
192
|
* Variant title
|
|
193
193
|
*/
|
|
@@ -226,7 +226,7 @@ declare namespace sap {
|
|
|
226
226
|
tile?: boolean;
|
|
227
227
|
}
|
|
228
228
|
|
|
229
|
-
interface $
|
|
229
|
+
interface VariantManagement$SelectEventParameters {
|
|
230
230
|
/**
|
|
231
231
|
* Variant key
|
|
232
232
|
*/
|
|
@@ -234,7 +234,7 @@ declare namespace sap {
|
|
|
234
234
|
}
|
|
235
235
|
|
|
236
236
|
/**
|
|
237
|
-
* @
|
|
237
|
+
* @since 1.56
|
|
238
238
|
*
|
|
239
239
|
* Can be used to manage variants. You can use this control in most controls that are enabled for key
|
|
240
240
|
* user adaptation.
|
|
@@ -437,9 +437,7 @@ declare namespace sap {
|
|
|
437
437
|
/**
|
|
438
438
|
* The function to be called when the event occurs
|
|
439
439
|
*/
|
|
440
|
-
fnFunction: (
|
|
441
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementManageEventParameters>
|
|
442
|
-
) => void,
|
|
440
|
+
fnFunction: (p1: VariantManagement$ManageEvent) => void,
|
|
443
441
|
/**
|
|
444
442
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
445
443
|
* itself
|
|
@@ -460,9 +458,7 @@ declare namespace sap {
|
|
|
460
458
|
/**
|
|
461
459
|
* The function to be called when the event occurs
|
|
462
460
|
*/
|
|
463
|
-
fnFunction: (
|
|
464
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementManageEventParameters>
|
|
465
|
-
) => void,
|
|
461
|
+
fnFunction: (p1: VariantManagement$ManageEvent) => void,
|
|
466
462
|
/**
|
|
467
463
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
468
464
|
* itself
|
|
@@ -489,9 +485,7 @@ declare namespace sap {
|
|
|
489
485
|
/**
|
|
490
486
|
* The function to be called when the event occurs
|
|
491
487
|
*/
|
|
492
|
-
fnFunction: (
|
|
493
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSaveEventParameters>
|
|
494
|
-
) => void,
|
|
488
|
+
fnFunction: (p1: VariantManagement$SaveEvent) => void,
|
|
495
489
|
/**
|
|
496
490
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
497
491
|
* itself
|
|
@@ -513,9 +507,7 @@ declare namespace sap {
|
|
|
513
507
|
/**
|
|
514
508
|
* The function to be called when the event occurs
|
|
515
509
|
*/
|
|
516
|
-
fnFunction: (
|
|
517
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSaveEventParameters>
|
|
518
|
-
) => void,
|
|
510
|
+
fnFunction: (p1: VariantManagement$SaveEvent) => void,
|
|
519
511
|
/**
|
|
520
512
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
521
513
|
* itself
|
|
@@ -541,9 +533,7 @@ declare namespace sap {
|
|
|
541
533
|
/**
|
|
542
534
|
* The function to be called when the event occurs
|
|
543
535
|
*/
|
|
544
|
-
fnFunction: (
|
|
545
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSelectEventParameters>
|
|
546
|
-
) => void,
|
|
536
|
+
fnFunction: (p1: VariantManagement$SelectEvent) => void,
|
|
547
537
|
/**
|
|
548
538
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
549
539
|
* itself
|
|
@@ -564,9 +554,7 @@ declare namespace sap {
|
|
|
564
554
|
/**
|
|
565
555
|
* The function to be called when the event occurs
|
|
566
556
|
*/
|
|
567
|
-
fnFunction: (
|
|
568
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSelectEventParameters>
|
|
569
|
-
) => void,
|
|
557
|
+
fnFunction: (p1: VariantManagement$SelectEvent) => void,
|
|
570
558
|
/**
|
|
571
559
|
* Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
|
|
572
560
|
* itself
|
|
@@ -618,9 +606,7 @@ declare namespace sap {
|
|
|
618
606
|
/**
|
|
619
607
|
* The function to be called, when the event occurs
|
|
620
608
|
*/
|
|
621
|
-
fnFunction: (
|
|
622
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementManageEventParameters>
|
|
623
|
-
) => void,
|
|
609
|
+
fnFunction: (p1: VariantManagement$ManageEvent) => void,
|
|
624
610
|
/**
|
|
625
611
|
* Context object on which the given function had to be called
|
|
626
612
|
*/
|
|
@@ -637,9 +623,7 @@ declare namespace sap {
|
|
|
637
623
|
/**
|
|
638
624
|
* The function to be called, when the event occurs
|
|
639
625
|
*/
|
|
640
|
-
fnFunction: (
|
|
641
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSaveEventParameters>
|
|
642
|
-
) => void,
|
|
626
|
+
fnFunction: (p1: VariantManagement$SaveEvent) => void,
|
|
643
627
|
/**
|
|
644
628
|
* Context object on which the given function had to be called
|
|
645
629
|
*/
|
|
@@ -656,16 +640,14 @@ declare namespace sap {
|
|
|
656
640
|
/**
|
|
657
641
|
* The function to be called, when the event occurs
|
|
658
642
|
*/
|
|
659
|
-
fnFunction: (
|
|
660
|
-
p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSelectEventParameters>
|
|
661
|
-
) => void,
|
|
643
|
+
fnFunction: (p1: VariantManagement$SelectEvent) => void,
|
|
662
644
|
/**
|
|
663
645
|
* Context object on which the given function had to be called
|
|
664
646
|
*/
|
|
665
647
|
oListener?: object
|
|
666
648
|
): this;
|
|
667
649
|
/**
|
|
668
|
-
* @
|
|
650
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
669
651
|
*
|
|
670
652
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
671
653
|
*
|
|
@@ -678,7 +660,7 @@ declare namespace sap {
|
|
|
678
660
|
mParameters?: object
|
|
679
661
|
): this;
|
|
680
662
|
/**
|
|
681
|
-
* @
|
|
663
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
682
664
|
*
|
|
683
665
|
* Fires event {@link #event:initialized initialized} to attached listeners.
|
|
684
666
|
*
|
|
@@ -691,7 +673,7 @@ declare namespace sap {
|
|
|
691
673
|
mParameters?: object
|
|
692
674
|
): this;
|
|
693
675
|
/**
|
|
694
|
-
* @
|
|
676
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
695
677
|
*
|
|
696
678
|
* Fires event {@link #event:manage manage} to attached listeners.
|
|
697
679
|
*
|
|
@@ -701,10 +683,10 @@ declare namespace sap {
|
|
|
701
683
|
/**
|
|
702
684
|
* Parameters to pass along with the event
|
|
703
685
|
*/
|
|
704
|
-
mParameters?: sap.ui.fl.variants
|
|
686
|
+
mParameters?: sap.ui.fl.variants.VariantManagement$ManageEventParameters
|
|
705
687
|
): this;
|
|
706
688
|
/**
|
|
707
|
-
* @
|
|
689
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
708
690
|
*
|
|
709
691
|
* Fires event {@link #event:save save} to attached listeners.
|
|
710
692
|
*
|
|
@@ -714,10 +696,10 @@ declare namespace sap {
|
|
|
714
696
|
/**
|
|
715
697
|
* Parameters to pass along with the event
|
|
716
698
|
*/
|
|
717
|
-
mParameters?: sap.ui.fl.variants
|
|
699
|
+
mParameters?: sap.ui.fl.variants.VariantManagement$SaveEventParameters
|
|
718
700
|
): this;
|
|
719
701
|
/**
|
|
720
|
-
* @
|
|
702
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
721
703
|
*
|
|
722
704
|
* Fires event {@link #event:select select} to attached listeners.
|
|
723
705
|
*
|
|
@@ -727,7 +709,7 @@ declare namespace sap {
|
|
|
727
709
|
/**
|
|
728
710
|
* Parameters to pass along with the event
|
|
729
711
|
*/
|
|
730
|
-
mParameters?: sap.ui.fl.variants
|
|
712
|
+
mParameters?: sap.ui.fl.variants.VariantManagement$SelectEventParameters
|
|
731
713
|
): this;
|
|
732
714
|
/**
|
|
733
715
|
* Gets the currently selected variant key.
|
|
@@ -772,7 +754,7 @@ declare namespace sap {
|
|
|
772
754
|
*/
|
|
773
755
|
getFor(): sap.ui.core.ID[];
|
|
774
756
|
/**
|
|
775
|
-
* @
|
|
757
|
+
* @since 1.104
|
|
776
758
|
*
|
|
777
759
|
* Gets current value of property {@link #getHeaderLevel headerLevel}.
|
|
778
760
|
*
|
|
@@ -806,7 +788,7 @@ declare namespace sap {
|
|
|
806
788
|
*/
|
|
807
789
|
getManualVariantKey(): boolean;
|
|
808
790
|
/**
|
|
809
|
-
* @
|
|
791
|
+
* @since 1.109
|
|
810
792
|
*
|
|
811
793
|
* Gets current value of property {@link #getMaxWidth maxWidth}.
|
|
812
794
|
*
|
|
@@ -834,7 +816,7 @@ declare namespace sap {
|
|
|
834
816
|
*/
|
|
835
817
|
getModified(): boolean;
|
|
836
818
|
/**
|
|
837
|
-
* @
|
|
819
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
838
820
|
*
|
|
839
821
|
* Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which
|
|
840
822
|
* is fired when width of the control is changed.
|
|
@@ -869,7 +851,7 @@ declare namespace sap {
|
|
|
869
851
|
*/
|
|
870
852
|
getShowSetAsDefault(): boolean;
|
|
871
853
|
/**
|
|
872
|
-
* @
|
|
854
|
+
* @since 1.109
|
|
873
855
|
*
|
|
874
856
|
* Gets current value of property {@link #getTitleStyle titleStyle}.
|
|
875
857
|
*
|
|
@@ -978,7 +960,7 @@ declare namespace sap {
|
|
|
978
960
|
bExecuteOnSelectionForStandardDefault?: boolean
|
|
979
961
|
): this;
|
|
980
962
|
/**
|
|
981
|
-
* @
|
|
963
|
+
* @since 1.104
|
|
982
964
|
*
|
|
983
965
|
* Sets a new value for property {@link #getHeaderLevel headerLevel}.
|
|
984
966
|
*
|
|
@@ -1033,7 +1015,7 @@ declare namespace sap {
|
|
|
1033
1015
|
bManualVariantKey?: boolean
|
|
1034
1016
|
): this;
|
|
1035
1017
|
/**
|
|
1036
|
-
* @
|
|
1018
|
+
* @since 1.109
|
|
1037
1019
|
*
|
|
1038
1020
|
* Sets a new value for property {@link #getMaxWidth maxWidth}.
|
|
1039
1021
|
*
|
|
@@ -1105,7 +1087,7 @@ declare namespace sap {
|
|
|
1105
1087
|
bShowSetAsDefault?: boolean
|
|
1106
1088
|
): this;
|
|
1107
1089
|
/**
|
|
1108
|
-
* @
|
|
1090
|
+
* @since 1.109
|
|
1109
1091
|
*
|
|
1110
1092
|
* Sets a new value for property {@link #getTitleStyle titleStyle}.
|
|
1111
1093
|
*
|
|
@@ -1143,6 +1125,46 @@ declare namespace sap {
|
|
|
1143
1125
|
bUpdateVariantInURL?: boolean
|
|
1144
1126
|
): this;
|
|
1145
1127
|
}
|
|
1128
|
+
|
|
1129
|
+
/**
|
|
1130
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$CancelEventParameters'
|
|
1131
|
+
* in 1.115.1 and any later releases.
|
|
1132
|
+
*/
|
|
1133
|
+
type $VariantManagementCancelEventParameters = sap.ui.fl.variants.VariantManagement$CancelEventParameters;
|
|
1134
|
+
|
|
1135
|
+
type VariantManagement$CancelEvent = sap.ui.base.Event<VariantManagement$CancelEventParameters>;
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$InitializedEventParameters'
|
|
1139
|
+
* in 1.115.1 and any later releases.
|
|
1140
|
+
*/
|
|
1141
|
+
type $VariantManagementInitializedEventParameters = sap.ui.fl.variants.VariantManagement$InitializedEventParameters;
|
|
1142
|
+
|
|
1143
|
+
type VariantManagement$InitializedEvent = sap.ui.base.Event<VariantManagement$InitializedEventParameters>;
|
|
1144
|
+
|
|
1145
|
+
/**
|
|
1146
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$ManageEventParameters'
|
|
1147
|
+
* in 1.115.1 and any later releases.
|
|
1148
|
+
*/
|
|
1149
|
+
type $VariantManagementManageEventParameters = sap.ui.fl.variants.VariantManagement$ManageEventParameters;
|
|
1150
|
+
|
|
1151
|
+
type VariantManagement$ManageEvent = sap.ui.base.Event<VariantManagement$ManageEventParameters>;
|
|
1152
|
+
|
|
1153
|
+
/**
|
|
1154
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SaveEventParameters'
|
|
1155
|
+
* in 1.115.1 and any later releases.
|
|
1156
|
+
*/
|
|
1157
|
+
type $VariantManagementSaveEventParameters = sap.ui.fl.variants.VariantManagement$SaveEventParameters;
|
|
1158
|
+
|
|
1159
|
+
type VariantManagement$SaveEvent = sap.ui.base.Event<VariantManagement$SaveEventParameters>;
|
|
1160
|
+
|
|
1161
|
+
/**
|
|
1162
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SelectEventParameters'
|
|
1163
|
+
* in 1.115.1 and any later releases.
|
|
1164
|
+
*/
|
|
1165
|
+
type $VariantManagementSelectEventParameters = sap.ui.fl.variants.VariantManagement$SelectEventParameters;
|
|
1166
|
+
|
|
1167
|
+
type VariantManagement$SelectEvent = sap.ui.base.Event<VariantManagement$SelectEventParameters>;
|
|
1146
1168
|
}
|
|
1147
1169
|
/**
|
|
1148
1170
|
* The `sap.ui.fl.write` namespace contains all code to create, update, and reset flex objects. Additional
|
|
@@ -1155,7 +1177,7 @@ declare namespace sap {
|
|
|
1155
1177
|
*/
|
|
1156
1178
|
namespace api {
|
|
1157
1179
|
/**
|
|
1158
|
-
* @
|
|
1180
|
+
* @since 1.70
|
|
1159
1181
|
*
|
|
1160
1182
|
* Provides an API to determine which features are available for flexibility.
|
|
1161
1183
|
*/
|