@sapui5/ts-types 1.120.10 → 1.120.12
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.chart.d.ts +58 -3
- package/types/sap.f.d.ts +364 -2
- package/types/sap.fe.core.d.ts +4 -2
- package/types/sap.fe.macros.d.ts +96 -2
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1001 -8
- package/types/sap.insights.d.ts +4 -1
- package/types/sap.m.d.ts +3125 -13
- package/types/sap.makit.d.ts +115 -2
- package/types/sap.me.d.ts +84 -2
- package/types/sap.ndc.d.ts +22 -1
- package/types/sap.suite.ui.commons.d.ts +1148 -7
- package/types/sap.suite.ui.generic.template.d.ts +10 -1
- package/types/sap.suite.ui.microchart.d.ts +184 -2
- package/types/sap.tnt.d.ts +40 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/sap.ui.commons.d.ts +753 -1
- package/types/sap.ui.comp.d.ts +884 -12
- package/types/sap.ui.core.d.ts +1190 -75
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +19 -3
- package/types/sap.ui.fl.d.ts +44 -1
- package/types/sap.ui.integration.d.ts +144 -2
- package/types/sap.ui.layout.d.ts +166 -2
- package/types/sap.ui.mdc.d.ts +430 -4
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -2
- package/types/sap.ui.ux3.d.ts +524 -2
- package/types/sap.ui.vbm.d.ts +5529 -2440
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uiext.inbox.d.ts +124 -2
- package/types/sap.ushell.d.ts +144 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +118 -1
- package/types/sap.viz.d.ts +2619 -5
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.12
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -183,6 +183,9 @@ declare namespace sap {
|
|
|
183
183
|
* Package with additional chart data APIs
|
|
184
184
|
*/
|
|
185
185
|
namespace data {
|
|
186
|
+
/**
|
|
187
|
+
* Describes the settings that can be provided to the Dimension constructor.
|
|
188
|
+
*/
|
|
186
189
|
interface $DimensionSettings extends sap.ui.core.$ElementSettings {
|
|
187
190
|
/**
|
|
188
191
|
* Property in the "data" model holding the (always unique) Dimension key.
|
|
@@ -247,6 +250,9 @@ declare namespace sap {
|
|
|
247
250
|
role?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
248
251
|
}
|
|
249
252
|
|
|
253
|
+
/**
|
|
254
|
+
* Describes the settings that can be provided to the HierarchyDimension constructor.
|
|
255
|
+
*/
|
|
250
256
|
interface $HierarchyDimensionSettings
|
|
251
257
|
extends sap.chart.data.$DimensionSettings {
|
|
252
258
|
/**
|
|
@@ -260,6 +266,9 @@ declare namespace sap {
|
|
|
260
266
|
| `{${string}}`;
|
|
261
267
|
}
|
|
262
268
|
|
|
269
|
+
/**
|
|
270
|
+
* Describes the settings that can be provided to the Measure constructor.
|
|
271
|
+
*/
|
|
263
272
|
interface $MeasureSettings extends sap.ui.core.$ElementSettings {
|
|
264
273
|
/**
|
|
265
274
|
* Property in the "data" model holding the raw measure value.
|
|
@@ -348,6 +357,9 @@ declare namespace sap {
|
|
|
348
357
|
| `{${string}}`;
|
|
349
358
|
}
|
|
350
359
|
|
|
360
|
+
/**
|
|
361
|
+
* Describes the settings that can be provided to the TimeDimension constructor.
|
|
362
|
+
*/
|
|
351
363
|
interface $TimeDimensionSettings
|
|
352
364
|
extends sap.chart.data.$DimensionSettings {
|
|
353
365
|
/**
|
|
@@ -1398,7 +1410,9 @@ declare namespace sap {
|
|
|
1398
1410
|
Reference = "reference",
|
|
1399
1411
|
}
|
|
1400
1412
|
}
|
|
1401
|
-
|
|
1413
|
+
/**
|
|
1414
|
+
* Describes the settings that can be provided to the Chart constructor.
|
|
1415
|
+
*/
|
|
1402
1416
|
interface $ChartSettings
|
|
1403
1417
|
extends sap.viz.ui5.controls.common.$BaseControlSettings {
|
|
1404
1418
|
/**
|
|
@@ -1759,8 +1773,14 @@ declare namespace sap {
|
|
|
1759
1773
|
drillStackChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
1760
1774
|
}
|
|
1761
1775
|
|
|
1776
|
+
/**
|
|
1777
|
+
* Parameters of the Chart#deselectData event.
|
|
1778
|
+
*/
|
|
1762
1779
|
interface Chart$DeselectDataEventParameters {}
|
|
1763
1780
|
|
|
1781
|
+
/**
|
|
1782
|
+
* Parameters of the Chart#drilledDown event.
|
|
1783
|
+
*/
|
|
1764
1784
|
interface Chart$DrilledDownEventParameters {
|
|
1765
1785
|
/**
|
|
1766
1786
|
* array of strings holding the names of the added dimensions
|
|
@@ -1768,6 +1788,9 @@ declare namespace sap {
|
|
|
1768
1788
|
dimensions?: string[];
|
|
1769
1789
|
}
|
|
1770
1790
|
|
|
1791
|
+
/**
|
|
1792
|
+
* Parameters of the Chart#drilledUp event.
|
|
1793
|
+
*/
|
|
1771
1794
|
interface Chart$DrilledUpEventParameters {
|
|
1772
1795
|
/**
|
|
1773
1796
|
* array of strings holding the names of the removed dimensions
|
|
@@ -1775,12 +1798,24 @@ declare namespace sap {
|
|
|
1775
1798
|
dimensions?: string[];
|
|
1776
1799
|
}
|
|
1777
1800
|
|
|
1801
|
+
/**
|
|
1802
|
+
* Parameters of the Chart#drillStackChanged event.
|
|
1803
|
+
*/
|
|
1778
1804
|
interface Chart$DrillStackChangedEventParameters {}
|
|
1779
1805
|
|
|
1806
|
+
/**
|
|
1807
|
+
* Parameters of the Chart#renderComplete event.
|
|
1808
|
+
*/
|
|
1780
1809
|
interface Chart$RenderCompleteEventParameters {}
|
|
1781
1810
|
|
|
1811
|
+
/**
|
|
1812
|
+
* Parameters of the Chart#selectData event.
|
|
1813
|
+
*/
|
|
1782
1814
|
interface Chart$SelectDataEventParameters {}
|
|
1783
1815
|
|
|
1816
|
+
/**
|
|
1817
|
+
* Parameters of the Chart#valueAxisFixedScaleTurnedOff event.
|
|
1818
|
+
*/
|
|
1784
1819
|
interface Chart$ValueAxisFixedScaleTurnedOffEventParameters {}
|
|
1785
1820
|
|
|
1786
1821
|
/**
|
|
@@ -4926,37 +4961,57 @@ declare namespace sap {
|
|
|
4926
4961
|
*/
|
|
4927
4962
|
yearweek = "yearweek",
|
|
4928
4963
|
}
|
|
4929
|
-
|
|
4964
|
+
/**
|
|
4965
|
+
* Event object of the Chart#deselectData event.
|
|
4966
|
+
*/
|
|
4930
4967
|
type Chart$DeselectDataEvent = sap.ui.base.Event<
|
|
4931
4968
|
Chart$DeselectDataEventParameters,
|
|
4932
4969
|
Chart
|
|
4933
4970
|
>;
|
|
4934
4971
|
|
|
4972
|
+
/**
|
|
4973
|
+
* Event object of the Chart#drilledDown event.
|
|
4974
|
+
*/
|
|
4935
4975
|
type Chart$DrilledDownEvent = sap.ui.base.Event<
|
|
4936
4976
|
Chart$DrilledDownEventParameters,
|
|
4937
4977
|
Chart
|
|
4938
4978
|
>;
|
|
4939
4979
|
|
|
4980
|
+
/**
|
|
4981
|
+
* Event object of the Chart#drilledUp event.
|
|
4982
|
+
*/
|
|
4940
4983
|
type Chart$DrilledUpEvent = sap.ui.base.Event<
|
|
4941
4984
|
Chart$DrilledUpEventParameters,
|
|
4942
4985
|
Chart
|
|
4943
4986
|
>;
|
|
4944
4987
|
|
|
4988
|
+
/**
|
|
4989
|
+
* Event object of the Chart#drillStackChanged event.
|
|
4990
|
+
*/
|
|
4945
4991
|
type Chart$DrillStackChangedEvent = sap.ui.base.Event<
|
|
4946
4992
|
Chart$DrillStackChangedEventParameters,
|
|
4947
4993
|
Chart
|
|
4948
4994
|
>;
|
|
4949
4995
|
|
|
4996
|
+
/**
|
|
4997
|
+
* Event object of the Chart#renderComplete event.
|
|
4998
|
+
*/
|
|
4950
4999
|
type Chart$RenderCompleteEvent = sap.ui.base.Event<
|
|
4951
5000
|
Chart$RenderCompleteEventParameters,
|
|
4952
5001
|
Chart
|
|
4953
5002
|
>;
|
|
4954
5003
|
|
|
5004
|
+
/**
|
|
5005
|
+
* Event object of the Chart#selectData event.
|
|
5006
|
+
*/
|
|
4955
5007
|
type Chart$SelectDataEvent = sap.ui.base.Event<
|
|
4956
5008
|
Chart$SelectDataEventParameters,
|
|
4957
5009
|
Chart
|
|
4958
5010
|
>;
|
|
4959
5011
|
|
|
5012
|
+
/**
|
|
5013
|
+
* Event object of the Chart#valueAxisFixedScaleTurnedOff event.
|
|
5014
|
+
*/
|
|
4960
5015
|
type Chart$ValueAxisFixedScaleTurnedOffEvent = sap.ui.base.Event<
|
|
4961
5016
|
Chart$ValueAxisFixedScaleTurnedOffEventParameters,
|
|
4962
5017
|
Chart
|