@sapui5/ts-types 1.115.1 → 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/README.md +4 -14
- package/package.json +1 -1
- package/types/index.d.ts +10 -3
- package/types/sap.apf.d.ts +38 -30
- package/types/sap.ca.ui.d.ts +216 -87
- package/types/sap.chart.d.ts +31 -55
- package/types/sap.collaboration.d.ts +25 -20
- package/types/sap.esh.search.ui.d.ts +117 -107
- package/types/sap.f.d.ts +229 -310
- package/types/sap.fe.core.d.ts +147 -35
- package/types/sap.fe.macros.d.ts +167 -61
- 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 +1255 -2252
- package/types/sap.insights.d.ts +251 -11
- package/types/sap.landvisz.d.ts +92 -27
- package/types/sap.m.d.ts +2631 -3400
- package/types/sap.makit.d.ts +22 -42
- package/types/sap.me.d.ts +45 -78
- package/types/sap.ndc.d.ts +41 -39
- package/types/sap.ovp.d.ts +24 -98
- package/types/sap.rules.ui.d.ts +41 -37
- package/types/sap.sac.df.d.ts +93 -5
- package/types/sap.suite.ui.commons.d.ts +1361 -1165
- package/types/sap.suite.ui.generic.template.d.ts +5 -8
- package/types/sap.suite.ui.microchart.d.ts +88 -138
- package/types/sap.tnt.d.ts +63 -27
- package/types/sap.ui.codeeditor.d.ts +11 -21
- package/types/sap.ui.commons.d.ts +335 -530
- package/types/sap.ui.comp.d.ts +919 -1032
- package/types/sap.ui.core.d.ts +1176 -1078
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +192 -13
- package/types/sap.ui.fl.d.ts +28 -87
- package/types/sap.ui.generic.app.d.ts +28 -30
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +207 -114
- package/types/sap.ui.layout.d.ts +98 -69
- package/types/sap.ui.mdc.d.ts +7003 -6826
- package/types/sap.ui.richtexteditor.d.ts +18 -31
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -14
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +169 -229
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +288 -481
- package/types/sap.ui.ux3.d.ts +343 -602
- package/types/sap.ui.vbm.d.ts +664 -764
- package/types/sap.ui.vk.d.ts +1746 -1844
- package/types/sap.ui.vtm.d.ts +417 -386
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +894 -369
- package/types/sap.ui.webc.main.d.ts +4598 -1356
- package/types/sap.uiext.inbox.d.ts +64 -103
- package/types/sap.ushell.d.ts +285 -316
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +60 -100
- package/types/sap.viz.d.ts +677 -1089
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +2 -2
- package/types/sap.zen.crosstab.d.ts +2 -2
- package/types/sap.zen.dsh.d.ts +148 -157
|
@@ -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 {
|
|
@@ -278,9 +278,7 @@ declare namespace sap {
|
|
|
278
278
|
* Event is fired when the text in the field has changed AND the focus leaves the editor or when the Enter
|
|
279
279
|
* key is pressed.
|
|
280
280
|
*/
|
|
281
|
-
change?: (
|
|
282
|
-
oEvent: sap.ui.base.Event<sap.ui.richtexteditor.RichTextEditor$ChangeEventParameters>
|
|
283
|
-
) => void;
|
|
281
|
+
change?: (oEvent: RichTextEditor$ChangeEvent) => void;
|
|
284
282
|
|
|
285
283
|
/**
|
|
286
284
|
* Fired when the used editor is loaded and ready (its HTML is also created).
|
|
@@ -1705,37 +1703,26 @@ declare namespace sap {
|
|
|
1705
1703
|
*/
|
|
1706
1704
|
TinyMCE6 = "TinyMCE6",
|
|
1707
1705
|
}
|
|
1708
|
-
/**
|
|
1709
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$BeforeEditorInitEventParameters'
|
|
1710
|
-
* in 1.115.1 and any later releases.
|
|
1711
|
-
*/
|
|
1712
|
-
type $RichTextEditorBeforeEditorInitEventParameters = sap.ui.richtexteditor.RichTextEditor$BeforeEditorInitEventParameters;
|
|
1713
|
-
|
|
1714
|
-
type RichTextEditor$BeforeEditorInitEvent = sap.ui.base.Event<RichTextEditor$BeforeEditorInitEventParameters>;
|
|
1715
1706
|
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
type $RichTextEditorChangeEventParameters = sap.ui.richtexteditor.RichTextEditor$ChangeEventParameters;
|
|
1707
|
+
type RichTextEditor$BeforeEditorInitEvent = sap.ui.base.Event<
|
|
1708
|
+
RichTextEditor$BeforeEditorInitEventParameters,
|
|
1709
|
+
RichTextEditor
|
|
1710
|
+
>;
|
|
1721
1711
|
|
|
1722
|
-
type RichTextEditor$ChangeEvent = sap.ui.base.Event<
|
|
1712
|
+
type RichTextEditor$ChangeEvent = sap.ui.base.Event<
|
|
1713
|
+
RichTextEditor$ChangeEventParameters,
|
|
1714
|
+
RichTextEditor
|
|
1715
|
+
>;
|
|
1723
1716
|
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
type $RichTextEditorReadyEventParameters = sap.ui.richtexteditor.RichTextEditor$ReadyEventParameters;
|
|
1729
|
-
|
|
1730
|
-
type RichTextEditor$ReadyEvent = sap.ui.base.Event<RichTextEditor$ReadyEventParameters>;
|
|
1731
|
-
|
|
1732
|
-
/**
|
|
1733
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$ReadyRecurringEventParameters'
|
|
1734
|
-
* in 1.115.1 and any later releases.
|
|
1735
|
-
*/
|
|
1736
|
-
type $RichTextEditorReadyRecurringEventParameters = sap.ui.richtexteditor.RichTextEditor$ReadyRecurringEventParameters;
|
|
1717
|
+
type RichTextEditor$ReadyEvent = sap.ui.base.Event<
|
|
1718
|
+
RichTextEditor$ReadyEventParameters,
|
|
1719
|
+
RichTextEditor
|
|
1720
|
+
>;
|
|
1737
1721
|
|
|
1738
|
-
type RichTextEditor$ReadyRecurringEvent = sap.ui.base.Event<
|
|
1722
|
+
type RichTextEditor$ReadyRecurringEvent = sap.ui.base.Event<
|
|
1723
|
+
RichTextEditor$ReadyRecurringEventParameters,
|
|
1724
|
+
RichTextEditor
|
|
1725
|
+
>;
|
|
1739
1726
|
}
|
|
1740
1727
|
}
|
|
1741
1728
|
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.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 {
|
|
@@ -665,21 +665,16 @@ declare namespace sap {
|
|
|
665
665
|
*/
|
|
666
666
|
Yellow = "Yellow",
|
|
667
667
|
}
|
|
668
|
-
/**
|
|
669
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TaskCircle$PressEventParameters'
|
|
670
|
-
* in 1.115.1 and any later releases.
|
|
671
|
-
*/
|
|
672
|
-
type $TaskCirclePressEventParameters = sap.ui.suite.TaskCircle$PressEventParameters;
|
|
673
|
-
|
|
674
|
-
type TaskCircle$PressEvent = sap.ui.base.Event<TaskCircle$PressEventParameters>;
|
|
675
668
|
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
type $VerticalProgressIndicatorPressEventParameters = sap.ui.suite.VerticalProgressIndicator$PressEventParameters;
|
|
669
|
+
type TaskCircle$PressEvent = sap.ui.base.Event<
|
|
670
|
+
TaskCircle$PressEventParameters,
|
|
671
|
+
TaskCircle
|
|
672
|
+
>;
|
|
681
673
|
|
|
682
|
-
type VerticalProgressIndicator$PressEvent = sap.ui.base.Event<
|
|
674
|
+
type VerticalProgressIndicator$PressEvent = sap.ui.base.Event<
|
|
675
|
+
VerticalProgressIndicator$PressEventParameters,
|
|
676
|
+
VerticalProgressIndicator
|
|
677
|
+
>;
|
|
683
678
|
}
|
|
684
679
|
}
|
|
685
680
|
|