@sapui5/types 1.136.14 → 1.136.15
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 +32 -3
- package/types/sap.ca.ui.d.ts +8 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +5 -5
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.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.m.d.ts +1 -1
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +3 -2
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +9 -5
- package/types/sap.ui.richtexteditor.d.ts +22 -7
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.d.ts +100 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.apf.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/apf/library" {}
|
|
4
4
|
|
|
@@ -23,6 +23,9 @@ declare module "sap/apf/api" {
|
|
|
23
23
|
* on their respective constructors. Instead they should be created by consumers using a create method available
|
|
24
24
|
* on API-level, such as e.g. {@link sap.apf.Api#createMessageObject} for {@link sap.apf.core.MessageObject }
|
|
25
25
|
* or {@link sap.apf.Api#createFilter} for {@link sap.apf.utils.Filter}.
|
|
26
|
+
*
|
|
27
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
28
|
+
* releases.
|
|
26
29
|
*/
|
|
27
30
|
export default class Api {
|
|
28
31
|
constructor(
|
|
@@ -279,6 +282,9 @@ declare module "sap/apf/core/messageObject" {
|
|
|
279
282
|
/**
|
|
280
283
|
* The message object represents the APF specific message object for detailed evaluation. The message object
|
|
281
284
|
* shall be created by method {@link sap.apf.Api#createMessageObject}.
|
|
285
|
+
*
|
|
286
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
287
|
+
* releases
|
|
282
288
|
*/
|
|
283
289
|
export default class MessageObject {
|
|
284
290
|
constructor(oConfig: object);
|
|
@@ -382,6 +388,9 @@ declare module "sap/apf/core/readRequest" {
|
|
|
382
388
|
/**
|
|
383
389
|
* Facade for sap.apf.core.Request for getting data via the OData protocol. This corresponds to a normal
|
|
384
390
|
* HTTP GET method. Creation is done via APF API.
|
|
391
|
+
*
|
|
392
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
393
|
+
* releases.
|
|
385
394
|
*/
|
|
386
395
|
export default class ReadRequest {
|
|
387
396
|
constructor(
|
|
@@ -448,6 +457,7 @@ declare module "sap/apf/ui/representations/representationInterface" {
|
|
|
448
457
|
* This is not a runtime class, but it describes the interface that a representation (chart) has to implement
|
|
449
458
|
* for to interact with the APF.
|
|
450
459
|
*
|
|
460
|
+
* @deprecated As of version 1.136. because it is part of the deprecated package sap.apf
|
|
451
461
|
* @experimental The complete interface is subject to ongoing work and not yet stable (as of Version 1.24.0).
|
|
452
462
|
*/
|
|
453
463
|
export default class representationInterface {
|
|
@@ -667,6 +677,7 @@ declare module "sap/apf/ui/representations/RepresentationInterfaceProxy" {
|
|
|
667
677
|
* is used by apf.api. It can be also used to build unit tests that need an interface proxy between APF
|
|
668
678
|
* and representations.
|
|
669
679
|
*
|
|
680
|
+
* @deprecated As of version 1.136. because it is part of the deprecated package sap.apf
|
|
670
681
|
* @experimental The complete interface is subject to ongoing work and not yet stable (as of Version 1.24.0).
|
|
671
682
|
*/
|
|
672
683
|
export default class RepresentationInterfaceProxy {
|
|
@@ -706,6 +717,9 @@ declare module "sap/apf/ui/representations/RepresentationInterfaceProxy" {
|
|
|
706
717
|
declare namespace sap {
|
|
707
718
|
/**
|
|
708
719
|
* Analysis Path Framework
|
|
720
|
+
*
|
|
721
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
722
|
+
* releases.
|
|
709
723
|
*/
|
|
710
724
|
namespace apf {
|
|
711
725
|
/**
|
|
@@ -721,6 +735,9 @@ declare namespace sap {
|
|
|
721
735
|
* HTTP GET method. Creation is done via APF API. In addition to the handed over filter argument in method
|
|
722
736
|
* send(), the required filters and parameter entity set key properties of the configured entity type are
|
|
723
737
|
* applied, which are determined from path filter.
|
|
738
|
+
*
|
|
739
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
740
|
+
* releases.
|
|
724
741
|
*/
|
|
725
742
|
class ReadRequestByRequiredFilter {
|
|
726
743
|
constructor(
|
|
@@ -781,6 +798,9 @@ declare namespace sap {
|
|
|
781
798
|
namespace utils {
|
|
782
799
|
/**
|
|
783
800
|
* Filter object
|
|
801
|
+
*
|
|
802
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
803
|
+
* releases.
|
|
784
804
|
*/
|
|
785
805
|
class Filter {
|
|
786
806
|
/**
|
|
@@ -903,7 +923,10 @@ declare namespace sap {
|
|
|
903
923
|
high: string
|
|
904
924
|
): undefined;
|
|
905
925
|
}
|
|
906
|
-
|
|
926
|
+
/**
|
|
927
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
928
|
+
* releases.
|
|
929
|
+
*/
|
|
907
930
|
class FilterAnd {
|
|
908
931
|
constructor(
|
|
909
932
|
oMessageHandler: /* was: sap.apf.core.MessageHandler */ any,
|
|
@@ -958,6 +981,9 @@ declare namespace sap {
|
|
|
958
981
|
}
|
|
959
982
|
/**
|
|
960
983
|
* Filter expression
|
|
984
|
+
*
|
|
985
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
986
|
+
* releases.
|
|
961
987
|
*/
|
|
962
988
|
class FilterExpression {
|
|
963
989
|
constructor(
|
|
@@ -989,7 +1015,10 @@ declare namespace sap {
|
|
|
989
1015
|
}
|
|
990
1016
|
);
|
|
991
1017
|
}
|
|
992
|
-
|
|
1018
|
+
/**
|
|
1019
|
+
* @deprecated As of version 1.136. this library is deprecated and will not be available in future major
|
|
1020
|
+
* releases.
|
|
1021
|
+
*/
|
|
993
1022
|
class FilterOr {
|
|
994
1023
|
constructor(
|
|
995
1024
|
oMessageHandler: /* was: sap.apf.core.MessageHandler */ any,
|
package/types/sap.ca.ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.4
|
|
2
2
|
|
|
3
3
|
declare module "sap/ca/ui/library" {
|
|
4
4
|
export namespace charts {
|
|
@@ -4794,6 +4794,8 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
|
|
|
4794
4794
|
declare module "sap/ca/ui/charts/ChartType" {
|
|
4795
4795
|
/**
|
|
4796
4796
|
* Types of chart supported in the sap.ca library.
|
|
4797
|
+
*
|
|
4798
|
+
* @deprecated As of version 1.24. because it is part of the deprecated package sap.ca.ui.charts
|
|
4797
4799
|
*/
|
|
4798
4800
|
interface ChartType {
|
|
4799
4801
|
/**
|
|
@@ -4862,6 +4864,9 @@ declare module "sap/ca/ui/charts/ChartType" {
|
|
|
4862
4864
|
StackedColumn100: undefined;
|
|
4863
4865
|
}
|
|
4864
4866
|
const ChartType: ChartType;
|
|
4867
|
+
/**
|
|
4868
|
+
* @deprecated As of version 1.24. because it is part of the deprecated package sap.ca.ui.charts
|
|
4869
|
+
*/
|
|
4865
4870
|
export default ChartType;
|
|
4866
4871
|
}
|
|
4867
4872
|
|
|
@@ -15045,6 +15050,8 @@ declare namespace sap {
|
|
|
15045
15050
|
|
|
15046
15051
|
/**
|
|
15047
15052
|
* Enumeration of supported message types.
|
|
15053
|
+
*
|
|
15054
|
+
* @deprecated As of version 1.28. because it is part of the deprecated package sap.ca.ui.message
|
|
15048
15055
|
*/
|
|
15049
15056
|
enum Type {}
|
|
15050
15057
|
}
|
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.15
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/macros/Chart" {
|
|
4
4
|
import {
|
|
@@ -1956,12 +1956,12 @@ declare module "sap/fe/macros/field/FieldFormatOptions" {
|
|
|
1956
1956
|
/**
|
|
1957
1957
|
* Maximum number of lines for multiline texts in edit mode.
|
|
1958
1958
|
*/
|
|
1959
|
-
textLinesEdit?:
|
|
1959
|
+
textLinesEdit?: any | PropertyBindingInfo | `{${string}}`;
|
|
1960
1960
|
|
|
1961
1961
|
/**
|
|
1962
1962
|
* Maximum number of characters from the beginning of the text field that are shown initially.
|
|
1963
1963
|
*/
|
|
1964
|
-
textMaxCharactersDisplay?:
|
|
1964
|
+
textMaxCharactersDisplay?: any | PropertyBindingInfo | `{${string}}`;
|
|
1965
1965
|
|
|
1966
1966
|
/**
|
|
1967
1967
|
* Defines the maximum number of characters for the multiline text value.
|
|
@@ -1969,12 +1969,12 @@ declare module "sap/fe/macros/field/FieldFormatOptions" {
|
|
|
1969
1969
|
* If a multiline text exceeds the maximum number of allowed characters, the counter below the input field
|
|
1970
1970
|
* displays the exact number.
|
|
1971
1971
|
*/
|
|
1972
|
-
textMaxLength?:
|
|
1972
|
+
textMaxLength?: any | PropertyBindingInfo | `{${string}}`;
|
|
1973
1973
|
|
|
1974
1974
|
/**
|
|
1975
1975
|
* Maximum number of lines that multiline texts in edit mode can grow to.
|
|
1976
1976
|
*/
|
|
1977
|
-
textMaxLines?:
|
|
1977
|
+
textMaxLines?: any | PropertyBindingInfo | `{${string}}`;
|
|
1978
1978
|
}
|
|
1979
1979
|
}
|
|
1980
1980
|
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.136.
|
|
282
|
+
// For Library Version: 1.136.13
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -72101,7 +72101,8 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
72101
72101
|
* Since 1.82.0 absolute paths are supported. Absolute paths must start with the entity container (example
|
|
72102
72102
|
* "/com.sap.gateway.default.iwbep.tea_busi.v0001.Container/TEAMS") of the service. All (navigation) properties
|
|
72103
72103
|
* in the complete model matching such an absolute path are updated. Since 1.85.0, "14.4.11 Expression edm:String"
|
|
72104
|
-
* is accepted as well.
|
|
72104
|
+
* is accepted as well. Since 1.145.0, you can use `null` values (and `{$Null : null}`) as synonyms for
|
|
72105
|
+
* empty navigation property paths.
|
|
72105
72106
|
*
|
|
72106
72107
|
* Since 1.108.8, a property path matching the "com.sap.vocabularies.Common.v1.Messages" annotation of a
|
|
72107
72108
|
* list binding's entity type is treated specially for a row context of a list binding: It is loaded even
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -826,8 +826,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
826
826
|
*/
|
|
827
827
|
interface FieldBaseDelegate extends BaseDelegate {
|
|
828
828
|
/**
|
|
829
|
-
* Enables applications to control condition updates based on
|
|
830
|
-
*
|
|
829
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
830
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
831
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
832
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
831
833
|
* By default, this method returns a condition with an `EQ` operator.
|
|
832
834
|
*
|
|
833
835
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
@@ -857,8 +859,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
857
859
|
oCurrentCondition: undefined | ConditionObject
|
|
858
860
|
): undefined | ConditionObject;
|
|
859
861
|
/**
|
|
860
|
-
* Enables applications to control condition updates based on
|
|
861
|
-
*
|
|
862
|
+
* Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
|
|
863
|
+
* {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
|
|
864
|
+
* or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
|
|
865
|
+
* property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
|
|
862
866
|
* By default, this method returns a condition with an `EQ` operator.
|
|
863
867
|
*
|
|
864
868
|
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/richtexteditor/library" {
|
|
4
4
|
/**
|
|
5
|
-
* Determines which editor component should be used for editing the text.
|
|
5
|
+
* Determines which editor component should be used for editing the text. **Note: To ensure stability and
|
|
6
|
+
* to access the latest features, use the most current TinyMCE version supported by your SAPUI5 version
|
|
7
|
+
* by setting the property to `TinyMCE`.
|
|
8
|
+
* Unsupported TinyMCE versions with critical vulnerabilities or other serious issues may be removed without
|
|
9
|
+
* notice.**
|
|
6
10
|
*
|
|
7
11
|
* This enum is part of the 'sap/ui/richtexteditor/library' module export and must be accessed by the property
|
|
8
12
|
* 'EditorType'.
|
|
@@ -61,7 +65,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
61
65
|
* Restrictions:
|
|
62
66
|
*
|
|
63
67
|
* **Note: The `RichTextEditor` uses a third-party component and therefore some additional restrictions
|
|
64
|
-
* apply for its proper usage and support.
|
|
68
|
+
* apply for its proper usage and support. Use the native third-party API cautiously. Ensure you migrate
|
|
69
|
+
* to newer versions within 12 months of deprecation. Unsupported third-party versions, once deprecated
|
|
70
|
+
* by us, may be removed without notice if critical vulnerabilities or other serious issues are discovered
|
|
71
|
+
* in their code. For more information see the Preamble section in {@link https://ui5.sap.com/#/topic/d4f3f1598373452bb73f2120930c133c sap.ui.richtexteditor}.
|
|
65
72
|
* **
|
|
66
73
|
*
|
|
67
74
|
* Guidelines:
|
|
@@ -715,8 +722,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
715
722
|
* that may be introduced by other groups (hence this is not an enumeration).
|
|
716
723
|
*
|
|
717
724
|
* **Notes:**
|
|
718
|
-
* -
|
|
719
|
-
*
|
|
725
|
+
* - Do not use TinyMCE versions that are no longer supported. We may remove such versions without notice
|
|
726
|
+
* in future releases if critical vulnerabilities or other serious issues are discovered in their code.
|
|
727
|
+
*
|
|
728
|
+
* - Setting the property to `TinyMCE` loads the latest TinyMCE available.
|
|
720
729
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
721
730
|
* - The default value of the property will always resolve to the recommended version by UI5. Due to the
|
|
722
731
|
* different support cycles, we will be constantly getting newer TinyMCE versions and update the default
|
|
@@ -758,6 +767,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
758
767
|
* editor and breaks the wrapping character of the RichTextEditor control, so it should only be done in
|
|
759
768
|
* justified cases.
|
|
760
769
|
*
|
|
770
|
+
* **Note: Use the native third-party API cautiously. Ensure you migrate to newer versions within 12 months
|
|
771
|
+
* of deprecation. Unsupported third-party versions, once deprecated by us, may be removed without notice
|
|
772
|
+
* if critical vulnerabilities or other serious issues are discovered in their code.**
|
|
773
|
+
*
|
|
761
774
|
*
|
|
762
775
|
* @returns The native editor object (here: The TinyMCE editor instance)
|
|
763
776
|
*/
|
|
@@ -1574,8 +1587,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1574
1587
|
* that may be introduced by other groups (hence this is not an enumeration).
|
|
1575
1588
|
*
|
|
1576
1589
|
* **Notes:**
|
|
1577
|
-
* -
|
|
1578
|
-
*
|
|
1590
|
+
* - Do not use TinyMCE versions that are no longer supported. We may remove such versions without notice
|
|
1591
|
+
* in future releases if critical vulnerabilities or other serious issues are discovered in their code.
|
|
1592
|
+
*
|
|
1593
|
+
* - Setting the property to `TinyMCE` loads the latest TinyMCE available.
|
|
1579
1594
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
1580
1595
|
* - The default value of the property will always resolve to the recommended version by UI5. Due to the
|
|
1581
1596
|
* different support cycles, we will be constantly getting newer TinyMCE versions and update the default
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -608,6 +608,8 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
608
608
|
Table$GroupEventParameters,
|
|
609
609
|
} from "sap/ui/table/Table";
|
|
610
610
|
|
|
611
|
+
import AnalyticalColumn from "sap/ui/table/AnalyticalColumn";
|
|
612
|
+
|
|
611
613
|
import { ID } from "sap/ui/core/library";
|
|
612
614
|
|
|
613
615
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -899,6 +901,10 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
899
901
|
* @returns Value of property `collapseRecursive`
|
|
900
902
|
*/
|
|
901
903
|
getCollapseRecursive(): boolean;
|
|
904
|
+
/**
|
|
905
|
+
* Returns the Columns of the AnalyticalTable.
|
|
906
|
+
*/
|
|
907
|
+
getColumns(): AnalyticalColumn[];
|
|
902
908
|
/**
|
|
903
909
|
* Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
|
|
904
910
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED