@sapui5/ts-types 1.114.0 → 1.115.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 +2 -2
- package/types/sap.ca.ui.d.ts +135 -67
- package/types/sap.chart.d.ts +154 -125
- package/types/sap.collaboration.d.ts +80 -78
- package/types/sap.esh.search.ui.d.ts +93 -1
- package/types/sap.f.d.ts +1331 -950
- package/types/sap.fe.core.d.ts +38 -152
- package/types/sap.fe.macros.d.ts +53 -7
- package/types/sap.fe.navigation.d.ts +34 -27
- package/types/sap.fe.templates.d.ts +8 -275
- package/types/sap.fe.test.d.ts +4 -10
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1716 -1087
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +35 -9
- package/types/sap.m.d.ts +7228 -4499
- package/types/sap.makit.d.ts +17 -5
- package/types/sap.me.d.ts +122 -63
- package/types/sap.ndc.d.ts +99 -39
- package/types/sap.ovp.d.ts +1 -2
- package/types/sap.rules.ui.d.ts +43 -19
- package/types/sap.sac.df.d.ts +3 -3
- package/types/sap.suite.ui.commons.d.ts +2056 -1282
- package/types/sap.suite.ui.generic.template.d.ts +29 -40
- package/types/sap.suite.ui.microchart.d.ts +188 -136
- package/types/sap.tnt.d.ts +134 -54
- package/types/sap.ui.codeeditor.d.ts +51 -29
- package/types/sap.ui.commons.d.ts +1017 -599
- package/types/sap.ui.comp.d.ts +2370 -1523
- package/types/sap.ui.core.d.ts +4086 -2346
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +32 -29
- package/types/sap.ui.fl.d.ts +123 -80
- package/types/sap.ui.generic.app.d.ts +40 -39
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +241 -163
- package/types/sap.ui.layout.d.ts +312 -355
- package/types/sap.ui.mdc.d.ts +21827 -6
- package/types/sap.ui.richtexteditor.d.ts +61 -49
- package/types/sap.ui.rta.d.ts +1 -2
- package/types/sap.ui.suite.d.ts +9 -9
- package/types/sap.ui.support.d.ts +5 -7
- package/types/sap.ui.table.d.ts +678 -452
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +925 -593
- package/types/sap.ui.ux3.d.ts +1038 -549
- package/types/sap.ui.vbm.d.ts +1262 -710
- package/types/sap.ui.vk.d.ts +2981 -1751
- package/types/sap.ui.vtm.d.ts +704 -457
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +532 -301
- package/types/sap.ui.webc.main.d.ts +1222 -720
- package/types/sap.uiext.inbox.d.ts +47 -24
- package/types/sap.ushell.d.ts +359 -173
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +287 -199
- package/types/sap.viz.d.ts +678 -391
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +5 -5
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +147 -81
package/types/sap.rules.ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace rules {
|
|
@@ -43,6 +43,10 @@ declare namespace sap {
|
|
|
43
43
|
dataChange?: (oEvent: sap.ui.base.Event) => void;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
interface $AstExpressionLanguageDataChangeEventParameters {}
|
|
47
|
+
|
|
48
|
+
interface $ExpressionLanguageDataChangeEventParameters {}
|
|
49
|
+
|
|
46
50
|
/**
|
|
47
51
|
* Provides the AstExpressionLanguage service functionality, such as expression validations, expression
|
|
48
52
|
* parsing, auto-complete suggestions, retrieving expression metadata and tokens, and performing runtime
|
|
@@ -419,7 +423,9 @@ declare namespace sap {
|
|
|
419
423
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
420
424
|
| `{${string}}`;
|
|
421
425
|
|
|
422
|
-
change?: (
|
|
426
|
+
change?: (
|
|
427
|
+
oEvent: sap.ui.base.Event<sap.rules.ui.$DecisionTableConfigurationChangeEventParameters>
|
|
428
|
+
) => void;
|
|
423
429
|
}
|
|
424
430
|
|
|
425
431
|
interface $RuleBuilderSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -507,7 +513,21 @@ declare namespace sap {
|
|
|
507
513
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
508
514
|
| `{${string}}`;
|
|
509
515
|
|
|
510
|
-
change?: (
|
|
516
|
+
change?: (
|
|
517
|
+
oEvent: sap.ui.base.Event<sap.rules.ui.$TextRuleConfigurationChangeEventParameters>
|
|
518
|
+
) => void;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
interface $DecisionTableConfigurationChangeEventParameters {
|
|
522
|
+
name?: undefined;
|
|
523
|
+
|
|
524
|
+
value?: undefined;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
interface $TextRuleConfigurationChangeEventParameters {
|
|
528
|
+
name?: undefined;
|
|
529
|
+
|
|
530
|
+
value?: undefined;
|
|
511
531
|
}
|
|
512
532
|
|
|
513
533
|
/**
|
|
@@ -597,7 +617,9 @@ declare namespace sap {
|
|
|
597
617
|
/**
|
|
598
618
|
* The function to be called when the event occurs
|
|
599
619
|
*/
|
|
600
|
-
fnFunction: (
|
|
620
|
+
fnFunction: (
|
|
621
|
+
p1: sap.ui.base.Event<sap.rules.ui.$DecisionTableConfigurationChangeEventParameters>
|
|
622
|
+
) => void,
|
|
601
623
|
/**
|
|
602
624
|
* Context object to call the event handler with. Defaults to this `sap.rules.ui.DecisionTableConfiguration`
|
|
603
625
|
* itself
|
|
@@ -616,7 +638,9 @@ declare namespace sap {
|
|
|
616
638
|
/**
|
|
617
639
|
* The function to be called when the event occurs
|
|
618
640
|
*/
|
|
619
|
-
fnFunction: (
|
|
641
|
+
fnFunction: (
|
|
642
|
+
p1: sap.ui.base.Event<sap.rules.ui.$DecisionTableConfigurationChangeEventParameters>
|
|
643
|
+
) => void,
|
|
620
644
|
/**
|
|
621
645
|
* Context object to call the event handler with. Defaults to this `sap.rules.ui.DecisionTableConfiguration`
|
|
622
646
|
* itself
|
|
@@ -634,7 +658,9 @@ declare namespace sap {
|
|
|
634
658
|
/**
|
|
635
659
|
* The function to be called, when the event occurs
|
|
636
660
|
*/
|
|
637
|
-
fnFunction: (
|
|
661
|
+
fnFunction: (
|
|
662
|
+
p1: sap.ui.base.Event<sap.rules.ui.$DecisionTableConfigurationChangeEventParameters>
|
|
663
|
+
) => void,
|
|
638
664
|
/**
|
|
639
665
|
* Context object on which the given function had to be called
|
|
640
666
|
*/
|
|
@@ -651,11 +677,7 @@ declare namespace sap {
|
|
|
651
677
|
/**
|
|
652
678
|
* Parameters to pass along with the event
|
|
653
679
|
*/
|
|
654
|
-
mParameters?:
|
|
655
|
-
name?: any;
|
|
656
|
-
|
|
657
|
-
value?: any;
|
|
658
|
-
}
|
|
680
|
+
mParameters?: sap.rules.ui.$DecisionTableConfigurationChangeEventParameters
|
|
659
681
|
): this;
|
|
660
682
|
/**
|
|
661
683
|
* @deprecated (since 1.52.8) - use the decisionTableFormat property.
|
|
@@ -1173,7 +1195,9 @@ declare namespace sap {
|
|
|
1173
1195
|
/**
|
|
1174
1196
|
* The function to be called when the event occurs
|
|
1175
1197
|
*/
|
|
1176
|
-
fnFunction: (
|
|
1198
|
+
fnFunction: (
|
|
1199
|
+
p1: sap.ui.base.Event<sap.rules.ui.$TextRuleConfigurationChangeEventParameters>
|
|
1200
|
+
) => void,
|
|
1177
1201
|
/**
|
|
1178
1202
|
* Context object to call the event handler with. Defaults to this `sap.rules.ui.TextRuleConfiguration`
|
|
1179
1203
|
* itself
|
|
@@ -1192,7 +1216,9 @@ declare namespace sap {
|
|
|
1192
1216
|
/**
|
|
1193
1217
|
* The function to be called when the event occurs
|
|
1194
1218
|
*/
|
|
1195
|
-
fnFunction: (
|
|
1219
|
+
fnFunction: (
|
|
1220
|
+
p1: sap.ui.base.Event<sap.rules.ui.$TextRuleConfigurationChangeEventParameters>
|
|
1221
|
+
) => void,
|
|
1196
1222
|
/**
|
|
1197
1223
|
* Context object to call the event handler with. Defaults to this `sap.rules.ui.TextRuleConfiguration`
|
|
1198
1224
|
* itself
|
|
@@ -1210,7 +1236,9 @@ declare namespace sap {
|
|
|
1210
1236
|
/**
|
|
1211
1237
|
* The function to be called, when the event occurs
|
|
1212
1238
|
*/
|
|
1213
|
-
fnFunction: (
|
|
1239
|
+
fnFunction: (
|
|
1240
|
+
p1: sap.ui.base.Event<sap.rules.ui.$TextRuleConfigurationChangeEventParameters>
|
|
1241
|
+
) => void,
|
|
1214
1242
|
/**
|
|
1215
1243
|
* Context object on which the given function had to be called
|
|
1216
1244
|
*/
|
|
@@ -1227,11 +1255,7 @@ declare namespace sap {
|
|
|
1227
1255
|
/**
|
|
1228
1256
|
* Parameters to pass along with the event
|
|
1229
1257
|
*/
|
|
1230
|
-
mParameters?:
|
|
1231
|
-
name?: any;
|
|
1232
|
-
|
|
1233
|
-
value?: any;
|
|
1234
|
-
}
|
|
1258
|
+
mParameters?: sap.rules.ui.$TextRuleConfigurationChangeEventParameters
|
|
1235
1259
|
): this;
|
|
1236
1260
|
/**
|
|
1237
1261
|
* Gets current value of property {@link #getEnableElse enableElse}.
|
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace sac {
|
|
@@ -434,8 +434,8 @@ declare namespace sap {
|
|
|
434
434
|
*
|
|
435
435
|
*
|
|
436
436
|
* - DataProvider: The associative array of all `DataProvider` aggregated by the SemanticStyles:
|
|
437
|
-
*
|
|
438
|
-
*
|
|
437
|
+
* The associative array of all `SemanticStyle` for the `MultiDimModel` VariableGroups: The associative
|
|
438
|
+
* array of registered Variable Groups Messages: The list of all messages posted by the Analytical Engine
|
|
439
439
|
*/
|
|
440
440
|
class MultiDimModel /* was: sap.sac.df.DFKernel */ extends Object {
|
|
441
441
|
/**
|