@sapui5/ts-types 1.120.8 → 1.121.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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +50 -18
- package/types/sap.ca.ui.d.ts +1114 -546
- package/types/sap.chart.d.ts +17 -1
- package/types/sap.collaboration.d.ts +185 -64
- package/types/sap.esh.search.ui.d.ts +2 -1960
- package/types/sap.f.d.ts +124 -45
- package/types/sap.fe.core.d.ts +212 -191
- package/types/sap.fe.macros.d.ts +371 -531
- package/types/sap.fe.navigation.d.ts +59 -26
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +7 -0
- package/types/sap.fe.templates.d.ts +16 -11
- package/types/sap.fe.test.d.ts +333 -33
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +3947 -1754
- package/types/sap.insights.d.ts +162 -43
- package/types/sap.m.d.ts +2023 -289
- package/types/sap.makit.d.ts +11 -1
- package/types/sap.me.d.ts +7 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +9 -7
- package/types/sap.rules.ui.d.ts +134 -75
- package/types/sap.sac.df.d.ts +272 -49
- package/types/sap.suite.ui.commons.d.ts +4231 -1008
- package/types/sap.suite.ui.generic.template.d.ts +38 -48
- package/types/sap.suite.ui.microchart.d.ts +66 -1
- package/types/sap.tnt.d.ts +601 -116
- package/types/sap.ui.codeeditor.d.ts +10 -6
- package/types/sap.ui.commons.d.ts +86 -8
- package/types/sap.ui.comp.d.ts +259 -110
- package/types/sap.ui.core.d.ts +471 -186
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +16 -3
- package/types/sap.ui.fl.d.ts +91 -68
- package/types/sap.ui.generic.app.d.ts +250 -193
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +51 -4
- package/types/sap.ui.layout.d.ts +221 -26
- package/types/sap.ui.mdc.d.ts +1516 -787
- package/types/sap.ui.richtexteditor.d.ts +4 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +28 -4
- package/types/sap.ui.table.d.ts +65 -11
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +157 -54
- package/types/sap.ui.ux3.d.ts +30 -12
- package/types/sap.ui.vbm.d.ts +5300 -2517
- package/types/sap.ui.vk.d.ts +2742 -836
- package/types/sap.ui.vtm.d.ts +685 -215
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +49 -1
- package/types/sap.ui.webc.main.d.ts +144 -9
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +977 -535
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +55 -5
- package/types/sap.viz.d.ts +86 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +79 -18
- package/types/sap.zen.crosstab.d.ts +83 -15
- package/types/sap.zen.dsh.d.ts +194 -143
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1128,6 +1128,20 @@ declare namespace sap {
|
|
|
1128
1128
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1129
1129
|
| `{${string}}`;
|
|
1130
1130
|
|
|
1131
|
+
/**
|
|
1132
|
+
* Defines the actual visibility of the title of `ObjectPageSectionBase`.
|
|
1133
|
+
*
|
|
1134
|
+
* **Note:** This property is read-only. The `ObjectPageSectionBase` updates it, according to internal rules,
|
|
1135
|
+
* based on UX specifications. You can only read the value of `titleVisible` property and use it in your
|
|
1136
|
+
* binding to determine the aria-levels of the inner Controls.
|
|
1137
|
+
*
|
|
1138
|
+
* @since 1.121.0
|
|
1139
|
+
*/
|
|
1140
|
+
titleVisible?:
|
|
1141
|
+
| boolean
|
|
1142
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1143
|
+
| `{${string}}`;
|
|
1144
|
+
|
|
1131
1145
|
/**
|
|
1132
1146
|
* Determines whether the section will be hidden on low resolutions.
|
|
1133
1147
|
*
|
|
@@ -1444,7 +1458,7 @@ declare namespace sap {
|
|
|
1444
1458
|
* ID of the element which is the current target of the association {@link #getSelectedButton selectedButton},
|
|
1445
1459
|
* or `null`.
|
|
1446
1460
|
*/
|
|
1447
|
-
getSelectedButton(): sap.ui.core.ID;
|
|
1461
|
+
getSelectedButton(): sap.ui.core.ID | null;
|
|
1448
1462
|
/**
|
|
1449
1463
|
* Gets current value of property {@link #getShowPopover showPopover}.
|
|
1450
1464
|
*
|
|
@@ -1812,7 +1826,7 @@ declare namespace sap {
|
|
|
1812
1826
|
* ID of the element which is the current target of the association {@link #getSelectedView selectedView},
|
|
1813
1827
|
* or `null`.
|
|
1814
1828
|
*/
|
|
1815
|
-
getSelectedView(): sap.ui.core.ID;
|
|
1829
|
+
getSelectedView(): sap.ui.core.ID | null;
|
|
1816
1830
|
/**
|
|
1817
1831
|
* Gets current value of property {@link #getShowSubSectionMore showSubSectionMore}.
|
|
1818
1832
|
*
|
|
@@ -5817,7 +5831,7 @@ declare namespace sap {
|
|
|
5817
5831
|
*
|
|
5818
5832
|
* @since 1.44.0
|
|
5819
5833
|
*/
|
|
5820
|
-
getSelectedSection(): sap.ui.core.ID;
|
|
5834
|
+
getSelectedSection(): sap.ui.core.ID | null;
|
|
5821
5835
|
/**
|
|
5822
5836
|
* Gets current value of property {@link #getShowAnchorBar showAnchorBar}.
|
|
5823
5837
|
*
|
|
@@ -6905,7 +6919,7 @@ declare namespace sap {
|
|
|
6905
6919
|
* ID of the element which is the current target of the association {@link #getSelectedSubSection selectedSubSection},
|
|
6906
6920
|
* or `null`.
|
|
6907
6921
|
*/
|
|
6908
|
-
getSelectedSubSection(): sap.ui.core.ID;
|
|
6922
|
+
getSelectedSubSection(): sap.ui.core.ID | null;
|
|
6909
6923
|
/**
|
|
6910
6924
|
* Gets current value of property {@link #getShowTitle showTitle}.
|
|
6911
6925
|
*
|
|
@@ -7221,6 +7235,22 @@ declare namespace sap {
|
|
|
7221
7235
|
* @returns Value of property `titleLevel`
|
|
7222
7236
|
*/
|
|
7223
7237
|
getTitleLevel(): sap.ui.core.TitleLevel;
|
|
7238
|
+
/**
|
|
7239
|
+
* Gets current value of property {@link #getTitleVisible titleVisible}.
|
|
7240
|
+
*
|
|
7241
|
+
* Defines the actual visibility of the title of `ObjectPageSectionBase`.
|
|
7242
|
+
*
|
|
7243
|
+
* **Note:** This property is read-only. The `ObjectPageSectionBase` updates it, according to internal rules,
|
|
7244
|
+
* based on UX specifications. You can only read the value of `titleVisible` property and use it in your
|
|
7245
|
+
* binding to determine the aria-levels of the inner Controls.
|
|
7246
|
+
*
|
|
7247
|
+
* Default value is `true`.
|
|
7248
|
+
*
|
|
7249
|
+
* @since 1.121.0
|
|
7250
|
+
*
|
|
7251
|
+
* @returns Value of property `titleVisible`
|
|
7252
|
+
*/
|
|
7253
|
+
getTitleVisible(): boolean;
|
|
7224
7254
|
/**
|
|
7225
7255
|
* Gets current value of property {@link #getVisible visible}.
|
|
7226
7256
|
*
|
|
@@ -7308,6 +7338,12 @@ declare namespace sap {
|
|
|
7308
7338
|
*/
|
|
7309
7339
|
sTitleLevel?: sap.ui.core.TitleLevel
|
|
7310
7340
|
): this;
|
|
7341
|
+
/**
|
|
7342
|
+
* Sets title visibility
|
|
7343
|
+
*
|
|
7344
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7345
|
+
*/
|
|
7346
|
+
setTitleVisible(bVisible: boolean): void;
|
|
7311
7347
|
/**
|
|
7312
7348
|
* Sets a new value for property {@link #getVisible visible}.
|
|
7313
7349
|
*
|
|
@@ -7779,6 +7815,8 @@ declare namespace sap {
|
|
|
7779
7815
|
}
|
|
7780
7816
|
/**
|
|
7781
7817
|
* Used by the `BlockBase` control to define if it should do automatic adjustment of its nested forms.
|
|
7818
|
+
*
|
|
7819
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'BlockBaseFormAdjustment'.
|
|
7782
7820
|
*/
|
|
7783
7821
|
enum BlockBaseFormAdjustment {
|
|
7784
7822
|
/**
|
|
@@ -7798,6 +7836,8 @@ declare namespace sap {
|
|
|
7798
7836
|
/**
|
|
7799
7837
|
* Used by the `ObjectSectionBase` control to define the importance of the content contained in it.
|
|
7800
7838
|
*
|
|
7839
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'Importance'.
|
|
7840
|
+
*
|
|
7801
7841
|
* @since 1.32.0
|
|
7802
7842
|
*/
|
|
7803
7843
|
enum Importance {
|
|
@@ -7816,6 +7856,8 @@ declare namespace sap {
|
|
|
7816
7856
|
}
|
|
7817
7857
|
/**
|
|
7818
7858
|
* Used by the `sap.uxap.component.Component` how to initialize the `ObjectPageLayout` sections and subsections.
|
|
7859
|
+
*
|
|
7860
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'ObjectPageConfigurationMode'.
|
|
7819
7861
|
*/
|
|
7820
7862
|
enum ObjectPageConfigurationMode {
|
|
7821
7863
|
/**
|
|
@@ -7829,6 +7871,8 @@ declare namespace sap {
|
|
|
7829
7871
|
}
|
|
7830
7872
|
/**
|
|
7831
7873
|
* Used by the `ObjectPageHeader` control to define which design to use.
|
|
7874
|
+
*
|
|
7875
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'ObjectPageHeaderDesign'.
|
|
7832
7876
|
*/
|
|
7833
7877
|
enum ObjectPageHeaderDesign {
|
|
7834
7878
|
/**
|
|
@@ -7842,6 +7886,8 @@ declare namespace sap {
|
|
|
7842
7886
|
}
|
|
7843
7887
|
/**
|
|
7844
7888
|
* Used by the `ObjectPageHeader` control to define which shape to use for the image.
|
|
7889
|
+
*
|
|
7890
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'ObjectPageHeaderPictureShape'.
|
|
7845
7891
|
*/
|
|
7846
7892
|
enum ObjectPageHeaderPictureShape {
|
|
7847
7893
|
/**
|
|
@@ -7855,6 +7901,8 @@ declare namespace sap {
|
|
|
7855
7901
|
}
|
|
7856
7902
|
/**
|
|
7857
7903
|
* Used by the `ObjectPagSubSection` control to define which layout to apply.
|
|
7904
|
+
*
|
|
7905
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'ObjectPageSubSectionLayout'.
|
|
7858
7906
|
*/
|
|
7859
7907
|
enum ObjectPageSubSectionLayout {
|
|
7860
7908
|
/**
|
|
@@ -7868,6 +7916,8 @@ declare namespace sap {
|
|
|
7868
7916
|
}
|
|
7869
7917
|
/**
|
|
7870
7918
|
* Used by the `ObjectPageLayout` control to define which layout to use (either Collapsed or Expanded).
|
|
7919
|
+
*
|
|
7920
|
+
* This enum is part of the 'sap/uxap/library' module export and must be accessed by the property 'ObjectPageSubSectionMode'.
|
|
7871
7921
|
*/
|
|
7872
7922
|
enum ObjectPageSubSectionMode {
|
|
7873
7923
|
/**
|
package/types/sap.viz.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -4247,6 +4247,9 @@ declare namespace sap {
|
|
|
4247
4247
|
namespace ChartFormatter {
|
|
4248
4248
|
/**
|
|
4249
4249
|
* List (Enum) type sap.viz.ui5.format.ChartFormatter.DefaultPattern
|
|
4250
|
+
*
|
|
4251
|
+
* This enum is part of the 'sap/viz/ui5/format/ChartFormatter' module export and must be accessed by the
|
|
4252
|
+
* property 'DefaultPattern'.
|
|
4250
4253
|
*/
|
|
4251
4254
|
enum DefaultPattern {
|
|
4252
4255
|
/**
|
|
@@ -5621,6 +5624,8 @@ declare namespace sap {
|
|
|
5621
5624
|
/**
|
|
5622
5625
|
* List (Enum) type sap.viz.ui5.types.controller.Interaction_pan_orientation
|
|
5623
5626
|
*
|
|
5627
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.controller.Interaction_pan_orientation'.
|
|
5628
|
+
*
|
|
5624
5629
|
* @since 1.7.2
|
|
5625
5630
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
5626
5631
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -5651,6 +5656,8 @@ declare namespace sap {
|
|
|
5651
5656
|
/**
|
|
5652
5657
|
* List (Enum) type sap.viz.ui5.types.controller.Interaction_selectability_mode
|
|
5653
5658
|
*
|
|
5659
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.controller.Interaction_selectability_mode'.
|
|
5660
|
+
*
|
|
5654
5661
|
* @since 1.7.2
|
|
5655
5662
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
5656
5663
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -6470,6 +6477,8 @@ declare namespace sap {
|
|
|
6470
6477
|
/**
|
|
6471
6478
|
* List (Enum) type sap.viz.ui5.types.legend.Common_alignment
|
|
6472
6479
|
*
|
|
6480
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.legend.Common_alignment'.
|
|
6481
|
+
*
|
|
6473
6482
|
* @since 1.7.2
|
|
6474
6483
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
6475
6484
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -6500,6 +6509,8 @@ declare namespace sap {
|
|
|
6500
6509
|
/**
|
|
6501
6510
|
* List (Enum) type sap.viz.ui5.types.legend.Common_drawingEffect
|
|
6502
6511
|
*
|
|
6512
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.legend.Common_drawingEffect'.
|
|
6513
|
+
*
|
|
6503
6514
|
* @since 1.7.2
|
|
6504
6515
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
6505
6516
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -6526,6 +6537,8 @@ declare namespace sap {
|
|
|
6526
6537
|
/**
|
|
6527
6538
|
* List (Enum) type sap.viz.ui5.types.legend.Common_position
|
|
6528
6539
|
*
|
|
6540
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.legend.Common_position'.
|
|
6541
|
+
*
|
|
6529
6542
|
* @since 1.7.2
|
|
6530
6543
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
6531
6544
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -6560,6 +6573,8 @@ declare namespace sap {
|
|
|
6560
6573
|
/**
|
|
6561
6574
|
* List (Enum) type sap.viz.ui5.types.legend.Common_type
|
|
6562
6575
|
*
|
|
6576
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.legend.Common_type'.
|
|
6577
|
+
*
|
|
6563
6578
|
* @since 1.7.2
|
|
6564
6579
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
6565
6580
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26516,6 +26531,8 @@ declare namespace sap {
|
|
|
26516
26531
|
/**
|
|
26517
26532
|
* List (Enum) type sap.viz.ui5.types.Area_drawingEffect
|
|
26518
26533
|
*
|
|
26534
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Area_drawingEffect'.
|
|
26535
|
+
*
|
|
26519
26536
|
* @since 1.7.2
|
|
26520
26537
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26521
26538
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26542,6 +26559,8 @@ declare namespace sap {
|
|
|
26542
26559
|
/**
|
|
26543
26560
|
* List (Enum) type sap.viz.ui5.types.Area_marker_shape
|
|
26544
26561
|
*
|
|
26562
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Area_marker_shape'.
|
|
26563
|
+
*
|
|
26545
26564
|
* @since 1.7.2
|
|
26546
26565
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26547
26566
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26592,6 +26611,8 @@ declare namespace sap {
|
|
|
26592
26611
|
/**
|
|
26593
26612
|
* List (Enum) type sap.viz.ui5.types.Area_mode
|
|
26594
26613
|
*
|
|
26614
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Area_mode'.
|
|
26615
|
+
*
|
|
26595
26616
|
* @since 1.7.2
|
|
26596
26617
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26597
26618
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26618,6 +26639,8 @@ declare namespace sap {
|
|
|
26618
26639
|
/**
|
|
26619
26640
|
* List (Enum) type sap.viz.ui5.types.Area_orientation
|
|
26620
26641
|
*
|
|
26642
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Area_orientation'.
|
|
26643
|
+
*
|
|
26621
26644
|
* @since 1.7.2
|
|
26622
26645
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26623
26646
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26644,6 +26667,8 @@ declare namespace sap {
|
|
|
26644
26667
|
/**
|
|
26645
26668
|
* List (Enum) type sap.viz.ui5.types.Axis_gridline_type
|
|
26646
26669
|
*
|
|
26670
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Axis_gridline_type'.
|
|
26671
|
+
*
|
|
26647
26672
|
* @since 1.7.2
|
|
26648
26673
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26649
26674
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26674,6 +26699,8 @@ declare namespace sap {
|
|
|
26674
26699
|
/**
|
|
26675
26700
|
* List (Enum) type sap.viz.ui5.types.Axis_label_unitFormatType
|
|
26676
26701
|
*
|
|
26702
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Axis_label_unitFormatType'.
|
|
26703
|
+
*
|
|
26677
26704
|
* @since 1.7.2
|
|
26678
26705
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26679
26706
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26700,6 +26727,8 @@ declare namespace sap {
|
|
|
26700
26727
|
/**
|
|
26701
26728
|
* List (Enum) type sap.viz.ui5.types.Axis_position
|
|
26702
26729
|
*
|
|
26730
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Axis_position'.
|
|
26731
|
+
*
|
|
26703
26732
|
* @since 1.7.2
|
|
26704
26733
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26705
26734
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26734,6 +26763,8 @@ declare namespace sap {
|
|
|
26734
26763
|
/**
|
|
26735
26764
|
* List (Enum) type sap.viz.ui5.types.Axis_type
|
|
26736
26765
|
*
|
|
26766
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Axis_type'.
|
|
26767
|
+
*
|
|
26737
26768
|
* @since 1.7.2
|
|
26738
26769
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26739
26770
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26764,6 +26795,8 @@ declare namespace sap {
|
|
|
26764
26795
|
/**
|
|
26765
26796
|
* List (Enum) type sap.viz.ui5.types.Background_direction
|
|
26766
26797
|
*
|
|
26798
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Background_direction'.
|
|
26799
|
+
*
|
|
26767
26800
|
* @since 1.7.2
|
|
26768
26801
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26769
26802
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26790,6 +26823,8 @@ declare namespace sap {
|
|
|
26790
26823
|
/**
|
|
26791
26824
|
* List (Enum) type sap.viz.ui5.types.Background_drawingEffect
|
|
26792
26825
|
*
|
|
26826
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Background_drawingEffect'.
|
|
26827
|
+
*
|
|
26793
26828
|
* @since 1.7.2
|
|
26794
26829
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26795
26830
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26816,6 +26851,8 @@ declare namespace sap {
|
|
|
26816
26851
|
/**
|
|
26817
26852
|
* List (Enum) type sap.viz.ui5.types.Bar_drawingEffect
|
|
26818
26853
|
*
|
|
26854
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Bar_drawingEffect'.
|
|
26855
|
+
*
|
|
26819
26856
|
* @since 1.7.2
|
|
26820
26857
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26821
26858
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26842,6 +26879,8 @@ declare namespace sap {
|
|
|
26842
26879
|
/**
|
|
26843
26880
|
* List (Enum) type sap.viz.ui5.types.Bar_orientation
|
|
26844
26881
|
*
|
|
26882
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Bar_orientation'.
|
|
26883
|
+
*
|
|
26845
26884
|
* @since 1.7.2
|
|
26846
26885
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26847
26886
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26868,6 +26907,8 @@ declare namespace sap {
|
|
|
26868
26907
|
/**
|
|
26869
26908
|
* List (Enum) type sap.viz.ui5.types.Bubble_drawingEffect
|
|
26870
26909
|
*
|
|
26910
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Bubble_drawingEffect'.
|
|
26911
|
+
*
|
|
26871
26912
|
* @since 1.7.2
|
|
26872
26913
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26873
26914
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26894,6 +26935,8 @@ declare namespace sap {
|
|
|
26894
26935
|
/**
|
|
26895
26936
|
* List (Enum) type sap.viz.ui5.types.Bullet_drawingEffect
|
|
26896
26937
|
*
|
|
26938
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Bullet_drawingEffect'.
|
|
26939
|
+
*
|
|
26897
26940
|
* @since 1.7.2
|
|
26898
26941
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26899
26942
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26920,6 +26963,8 @@ declare namespace sap {
|
|
|
26920
26963
|
/**
|
|
26921
26964
|
* List (Enum) type sap.viz.ui5.types.Bullet_orientation
|
|
26922
26965
|
*
|
|
26966
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Bullet_orientation'.
|
|
26967
|
+
*
|
|
26923
26968
|
* @since 1.7.2
|
|
26924
26969
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26925
26970
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26946,6 +26991,8 @@ declare namespace sap {
|
|
|
26946
26991
|
/**
|
|
26947
26992
|
* List (Enum) type sap.viz.ui5.types.Combination_drawingEffect
|
|
26948
26993
|
*
|
|
26994
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Combination_drawingEffect'.
|
|
26995
|
+
*
|
|
26949
26996
|
* @since 1.7.2
|
|
26950
26997
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26951
26998
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26972,6 +27019,8 @@ declare namespace sap {
|
|
|
26972
27019
|
/**
|
|
26973
27020
|
* List (Enum) type sap.viz.ui5.types.Combination_orientation
|
|
26974
27021
|
*
|
|
27022
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Combination_orientation'.
|
|
27023
|
+
*
|
|
26975
27024
|
* @since 1.7.2
|
|
26976
27025
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
26977
27026
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -26998,6 +27047,8 @@ declare namespace sap {
|
|
|
26998
27047
|
/**
|
|
26999
27048
|
* List (Enum) type sap.viz.ui5.types.Datalabel_orientation
|
|
27000
27049
|
*
|
|
27050
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Datalabel_orientation'.
|
|
27051
|
+
*
|
|
27001
27052
|
* @since 1.7.2
|
|
27002
27053
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27003
27054
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27024,6 +27075,8 @@ declare namespace sap {
|
|
|
27024
27075
|
/**
|
|
27025
27076
|
* List (Enum) type sap.viz.ui5.types.Datalabel_outsidePosition
|
|
27026
27077
|
*
|
|
27078
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Datalabel_outsidePosition'.
|
|
27079
|
+
*
|
|
27027
27080
|
* @since 1.7.2
|
|
27028
27081
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27029
27082
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27058,6 +27111,8 @@ declare namespace sap {
|
|
|
27058
27111
|
/**
|
|
27059
27112
|
* List (Enum) type sap.viz.ui5.types.Datalabel_paintingMode
|
|
27060
27113
|
*
|
|
27114
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Datalabel_paintingMode'.
|
|
27115
|
+
*
|
|
27061
27116
|
* @since 1.7.2
|
|
27062
27117
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27063
27118
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27084,6 +27139,8 @@ declare namespace sap {
|
|
|
27084
27139
|
/**
|
|
27085
27140
|
* List (Enum) type sap.viz.ui5.types.Datalabel_position
|
|
27086
27141
|
*
|
|
27142
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Datalabel_position'.
|
|
27143
|
+
*
|
|
27087
27144
|
* @since 1.7.2
|
|
27088
27145
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27089
27146
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27110,6 +27167,8 @@ declare namespace sap {
|
|
|
27110
27167
|
/**
|
|
27111
27168
|
* List (Enum) type sap.viz.ui5.types.Legend_layout_position
|
|
27112
27169
|
*
|
|
27170
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Legend_layout_position'.
|
|
27171
|
+
*
|
|
27113
27172
|
* @since 1.7.2
|
|
27114
27173
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27115
27174
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27144,6 +27203,8 @@ declare namespace sap {
|
|
|
27144
27203
|
/**
|
|
27145
27204
|
* List (Enum) type sap.viz.ui5.types.Line_drawingEffect
|
|
27146
27205
|
*
|
|
27206
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Line_drawingEffect'.
|
|
27207
|
+
*
|
|
27147
27208
|
* @since 1.7.2
|
|
27148
27209
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27149
27210
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27170,6 +27231,8 @@ declare namespace sap {
|
|
|
27170
27231
|
/**
|
|
27171
27232
|
* List (Enum) type sap.viz.ui5.types.Line_marker_shape
|
|
27172
27233
|
*
|
|
27234
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Line_marker_shape'.
|
|
27235
|
+
*
|
|
27173
27236
|
* @since 1.7.2
|
|
27174
27237
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27175
27238
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27220,6 +27283,8 @@ declare namespace sap {
|
|
|
27220
27283
|
/**
|
|
27221
27284
|
* List (Enum) type sap.viz.ui5.types.Line_orientation
|
|
27222
27285
|
*
|
|
27286
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Line_orientation'.
|
|
27287
|
+
*
|
|
27223
27288
|
* @since 1.7.2
|
|
27224
27289
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27225
27290
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27246,6 +27311,8 @@ declare namespace sap {
|
|
|
27246
27311
|
/**
|
|
27247
27312
|
* List (Enum) type sap.viz.ui5.types.Pie_drawingEffect
|
|
27248
27313
|
*
|
|
27314
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Pie_drawingEffect'.
|
|
27315
|
+
*
|
|
27249
27316
|
* @since 1.7.2
|
|
27250
27317
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27251
27318
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27272,6 +27339,8 @@ declare namespace sap {
|
|
|
27272
27339
|
/**
|
|
27273
27340
|
* List (Enum) type sap.viz.ui5.types.Pie_valign
|
|
27274
27341
|
*
|
|
27342
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Pie_valign'.
|
|
27343
|
+
*
|
|
27275
27344
|
* @since 1.7.2
|
|
27276
27345
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27277
27346
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27298,6 +27367,8 @@ declare namespace sap {
|
|
|
27298
27367
|
/**
|
|
27299
27368
|
* List (Enum) type sap.viz.ui5.types.Scatter_drawingEffect
|
|
27300
27369
|
*
|
|
27370
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Scatter_drawingEffect'.
|
|
27371
|
+
*
|
|
27301
27372
|
* @since 1.7.2
|
|
27302
27373
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27303
27374
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27324,6 +27395,8 @@ declare namespace sap {
|
|
|
27324
27395
|
/**
|
|
27325
27396
|
* List (Enum) type sap.viz.ui5.types.StackedVerticalBar_drawingEffect
|
|
27326
27397
|
*
|
|
27398
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.StackedVerticalBar_drawingEffect'.
|
|
27399
|
+
*
|
|
27327
27400
|
* @since 1.7.2
|
|
27328
27401
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27329
27402
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27350,6 +27423,8 @@ declare namespace sap {
|
|
|
27350
27423
|
/**
|
|
27351
27424
|
* List (Enum) type sap.viz.ui5.types.StackedVerticalBar_mode
|
|
27352
27425
|
*
|
|
27426
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.StackedVerticalBar_mode'.
|
|
27427
|
+
*
|
|
27353
27428
|
* @since 1.7.2
|
|
27354
27429
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27355
27430
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27376,6 +27451,8 @@ declare namespace sap {
|
|
|
27376
27451
|
/**
|
|
27377
27452
|
* List (Enum) type sap.viz.ui5.types.StackedVerticalBar_orientation
|
|
27378
27453
|
*
|
|
27454
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.StackedVerticalBar_orientation'.
|
|
27455
|
+
*
|
|
27379
27456
|
* @since 1.7.2
|
|
27380
27457
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27381
27458
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27402,6 +27479,8 @@ declare namespace sap {
|
|
|
27402
27479
|
/**
|
|
27403
27480
|
* List (Enum) type sap.viz.ui5.types.Title_alignment
|
|
27404
27481
|
*
|
|
27482
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Title_alignment'.
|
|
27483
|
+
*
|
|
27405
27484
|
* @since 1.7.2
|
|
27406
27485
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27407
27486
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27432,6 +27511,8 @@ declare namespace sap {
|
|
|
27432
27511
|
/**
|
|
27433
27512
|
* List (Enum) type sap.viz.ui5.types.Tooltip_drawingEffect
|
|
27434
27513
|
*
|
|
27514
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.Tooltip_drawingEffect'.
|
|
27515
|
+
*
|
|
27435
27516
|
* @since 1.7.2
|
|
27436
27517
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27437
27518
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27458,6 +27539,8 @@ declare namespace sap {
|
|
|
27458
27539
|
/**
|
|
27459
27540
|
* List (Enum) type sap.viz.ui5.types.VerticalBar_drawingEffect
|
|
27460
27541
|
*
|
|
27542
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.VerticalBar_drawingEffect'.
|
|
27543
|
+
*
|
|
27461
27544
|
* @since 1.7.2
|
|
27462
27545
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27463
27546
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|
|
@@ -27484,6 +27567,8 @@ declare namespace sap {
|
|
|
27484
27567
|
/**
|
|
27485
27568
|
* List (Enum) type sap.viz.ui5.types.VerticalBar_orientation
|
|
27486
27569
|
*
|
|
27570
|
+
* This enum is part of the 'sap/viz/library' module export and must be accessed by the property 'ui5.types.VerticalBar_orientation'.
|
|
27571
|
+
*
|
|
27487
27572
|
* @since 1.7.2
|
|
27488
27573
|
* @deprecated (since 1.32.0) - The chart controls in the `sap.viz.ui5` package (which were always marked
|
|
27489
27574
|
* as experimental) have been deprecated since 1.32.0. They are no longer actively developed and
|