@sapui5/types 1.144.1 → 1.145.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 +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +110 -85
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +342 -21
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +188 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +853 -203
- 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 +12 -1
- package/types/sap.fe.test.d.ts +150 -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 +128 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +29 -12
- 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 +31 -2
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +230 -15
- package/types/sap.suite.ui.generic.template.d.ts +46 -1
- package/types/sap.suite.ui.microchart.d.ts +2 -1
- package/types/sap.tnt.d.ts +19 -11
- 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 +73 -2
- package/types/sap.ui.core.d.ts +140 -99
- 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 +5 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.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 +378 -50
- package/types/sap.ui.richtexteditor.d.ts +29 -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 +39 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +168 -1
- package/types/sap.ui.vtm.d.ts +1 -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 +5 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
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'.
|
|
@@ -12,6 +16,13 @@ declare module "sap/ui/richtexteditor/library" {
|
|
|
12
16
|
* Uses latest recommended TinyMCE version Current one is TinyMCE 7
|
|
13
17
|
*/
|
|
14
18
|
TinyMCE = "TinyMCE",
|
|
19
|
+
/**
|
|
20
|
+
* Uses TinyMCE version 6 as editor
|
|
21
|
+
*
|
|
22
|
+
* @deprecated As of version 1.141. TinyMCE 6 is no longer supported. Use the {@link sap.ui.richtexteditor.EditorType.TinyMCE }
|
|
23
|
+
* instead.
|
|
24
|
+
*/
|
|
25
|
+
TinyMCE6 = "TinyMCE6",
|
|
15
26
|
/**
|
|
16
27
|
* Uses TinyMCE version 7 as editor
|
|
17
28
|
*/
|
|
@@ -57,7 +68,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
57
68
|
* Restrictions:
|
|
58
69
|
*
|
|
59
70
|
* **Note: The `RichTextEditor` uses a third-party component and therefore some additional restrictions
|
|
60
|
-
* apply for its proper usage and support.
|
|
71
|
+
* apply for its proper usage and support. Use the native third-party API cautiously. Ensure you migrate
|
|
72
|
+
* to newer versions within 12 months of deprecation. Unsupported third-party versions, once deprecated
|
|
73
|
+
* by us, may be removed without notice if critical vulnerabilities or other serious issues are discovered
|
|
74
|
+
* in their code. For more information see the Preamble section in {@link https://ui5.sap.com/#/topic/d4f3f1598373452bb73f2120930c133c sap.ui.richtexteditor}.
|
|
61
75
|
* **
|
|
62
76
|
*
|
|
63
77
|
* Guidelines:
|
|
@@ -741,8 +755,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
741
755
|
* that may be introduced by other groups (hence this is not an enumeration).
|
|
742
756
|
*
|
|
743
757
|
* **Notes:**
|
|
744
|
-
* -
|
|
745
|
-
*
|
|
758
|
+
* - Do not use TinyMCE versions that are no longer supported. We may remove such versions without notice
|
|
759
|
+
* in future releases if critical vulnerabilities or other serious issues are discovered in their code.
|
|
760
|
+
*
|
|
761
|
+
* - Setting the property to `TinyMCE` loads the latest TinyMCE available.
|
|
746
762
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
747
763
|
* - The default value of the property will always resolve to the recommended version by UI5. Due to the
|
|
748
764
|
* different support cycles, we will be constantly getting newer TinyMCE versions and update the default
|
|
@@ -784,6 +800,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
784
800
|
* editor and breaks the wrapping character of the RichTextEditor control, so it should only be done in
|
|
785
801
|
* justified cases.
|
|
786
802
|
*
|
|
803
|
+
* **Note: Use the native third-party API cautiously. Ensure you migrate to newer versions within 12 months
|
|
804
|
+
* of deprecation. Unsupported third-party versions, once deprecated by us, may be removed without notice
|
|
805
|
+
* if critical vulnerabilities or other serious issues are discovered in their code.**
|
|
806
|
+
*
|
|
787
807
|
*
|
|
788
808
|
* @returns The native editor object (here: The TinyMCE editor instance)
|
|
789
809
|
*/
|
|
@@ -1687,8 +1707,10 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1687
1707
|
* that may be introduced by other groups (hence this is not an enumeration).
|
|
1688
1708
|
*
|
|
1689
1709
|
* **Notes:**
|
|
1690
|
-
* -
|
|
1691
|
-
*
|
|
1710
|
+
* - Do not use TinyMCE versions that are no longer supported. We may remove such versions without notice
|
|
1711
|
+
* in future releases if critical vulnerabilities or other serious issues are discovered in their code.
|
|
1712
|
+
*
|
|
1713
|
+
* - Setting the property to `TinyMCE` loads the latest TinyMCE available.
|
|
1692
1714
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
1693
1715
|
* - The default value of the property will always resolve to the recommended version by UI5. Due to the
|
|
1694
1716
|
* 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.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
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";
|
|
@@ -903,6 +905,10 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
903
905
|
* @returns Value of property `collapseRecursive`
|
|
904
906
|
*/
|
|
905
907
|
getCollapseRecursive(): boolean;
|
|
908
|
+
/**
|
|
909
|
+
* Returns the Columns of the AnalyticalTable.
|
|
910
|
+
*/
|
|
911
|
+
getColumns(): AnalyticalColumn[];
|
|
906
912
|
/**
|
|
907
913
|
* Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
|
|
908
914
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -5769,6 +5769,18 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
5769
5769
|
* @returns Value of property `showHeader`
|
|
5770
5770
|
*/
|
|
5771
5771
|
getShowHeader(): boolean;
|
|
5772
|
+
/**
|
|
5773
|
+
* Gets current value of property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
5774
|
+
*
|
|
5775
|
+
* Determines if the week numbers are displayed.
|
|
5776
|
+
*
|
|
5777
|
+
* Default value is `false`.
|
|
5778
|
+
*
|
|
5779
|
+
* @since 1.145.0
|
|
5780
|
+
*
|
|
5781
|
+
* @returns Value of property `showWeekNumbers`
|
|
5782
|
+
*/
|
|
5783
|
+
getShowWeekNumbers(): boolean;
|
|
5772
5784
|
/**
|
|
5773
5785
|
* Gets current value of property {@link #getSingleSelection singleSelection}.
|
|
5774
5786
|
*
|
|
@@ -6005,6 +6017,25 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
6005
6017
|
*/
|
|
6006
6018
|
bShowHeader?: boolean
|
|
6007
6019
|
): this;
|
|
6020
|
+
/**
|
|
6021
|
+
* Sets a new value for property {@link #getShowWeekNumbers showWeekNumbers}.
|
|
6022
|
+
*
|
|
6023
|
+
* Determines if the week numbers are displayed.
|
|
6024
|
+
*
|
|
6025
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6026
|
+
*
|
|
6027
|
+
* Default value is `false`.
|
|
6028
|
+
*
|
|
6029
|
+
* @since 1.145.0
|
|
6030
|
+
*
|
|
6031
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6032
|
+
*/
|
|
6033
|
+
setShowWeekNumbers(
|
|
6034
|
+
/**
|
|
6035
|
+
* New value for property `showWeekNumbers`
|
|
6036
|
+
*/
|
|
6037
|
+
bShowWeekNumbers?: boolean
|
|
6038
|
+
): this;
|
|
6008
6039
|
/**
|
|
6009
6040
|
* Sets a new value for property {@link #getSingleSelection singleSelection}.
|
|
6010
6041
|
*
|
|
@@ -6078,6 +6109,13 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
6078
6109
|
*/
|
|
6079
6110
|
showHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6080
6111
|
|
|
6112
|
+
/**
|
|
6113
|
+
* Determines if the week numbers are displayed.
|
|
6114
|
+
*
|
|
6115
|
+
* @since 1.145.0
|
|
6116
|
+
*/
|
|
6117
|
+
showWeekNumbers?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6118
|
+
|
|
6081
6119
|
/**
|
|
6082
6120
|
* Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
|
|
6083
6121
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vk/library" {
|
|
4
4
|
/**
|
|
@@ -26247,6 +26247,10 @@ declare module "sap/ui/vk/threejs/Viewport" {
|
|
|
26247
26247
|
* Indicator to retrieve selection information.
|
|
26248
26248
|
*/
|
|
26249
26249
|
selection?: boolean | object;
|
|
26250
|
+
/**
|
|
26251
|
+
* Indicator to retrieve cross-section tool information.
|
|
26252
|
+
*/
|
|
26253
|
+
crossSection?: boolean | object;
|
|
26250
26254
|
}
|
|
26251
26255
|
): object;
|
|
26252
26256
|
/**
|
|
@@ -26425,6 +26429,27 @@ declare module "sap/ui/vk/threejs/Viewport" {
|
|
|
26425
26429
|
*/
|
|
26426
26430
|
outlined: string[];
|
|
26427
26431
|
};
|
|
26432
|
+
/**
|
|
26433
|
+
* A JSON-like object containing the cross-section tool information.
|
|
26434
|
+
*/
|
|
26435
|
+
crossSection?: {
|
|
26436
|
+
/**
|
|
26437
|
+
* Indicator whether the cross-section tool is enabled.
|
|
26438
|
+
*/
|
|
26439
|
+
enabled?: boolean;
|
|
26440
|
+
/**
|
|
26441
|
+
* Axis along which the cross-section is performed (0 - X, 1 - Y, 2 - Z).
|
|
26442
|
+
*/
|
|
26443
|
+
axis?: int;
|
|
26444
|
+
/**
|
|
26445
|
+
* Indicator whether the cross-section direction is flipped.
|
|
26446
|
+
*/
|
|
26447
|
+
flip?: boolean;
|
|
26448
|
+
/**
|
|
26449
|
+
* Position of the cross-section planes defined as [x, y, z].
|
|
26450
|
+
*/
|
|
26451
|
+
position?: float[];
|
|
26452
|
+
};
|
|
26428
26453
|
},
|
|
26429
26454
|
/**
|
|
26430
26455
|
* Fly-to animation duration in seconds.
|
|
@@ -30562,6 +30587,8 @@ declare module "sap/ui/vk/tools/CreateTextTool" {
|
|
|
30562
30587
|
declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
30563
30588
|
import { default as Tool, $ToolSettings } from "sap/ui/vk/tools/Tool";
|
|
30564
30589
|
|
|
30590
|
+
import { CSSColor } from "sap/ui/core/library";
|
|
30591
|
+
|
|
30565
30592
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
30566
30593
|
|
|
30567
30594
|
import Viewport from "sap/ui/vk/Viewport";
|
|
@@ -30636,6 +30663,33 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30636
30663
|
* @returns Metadata object describing this class
|
|
30637
30664
|
*/
|
|
30638
30665
|
static getMetadata(): ElementMetadata;
|
|
30666
|
+
/**
|
|
30667
|
+
* Gets current value of property {@link #getCappingColor cappingColor}.
|
|
30668
|
+
*
|
|
30669
|
+
* Default value is `"#ff0000"`.
|
|
30670
|
+
*
|
|
30671
|
+
*
|
|
30672
|
+
* @returns Value of property `cappingColor`
|
|
30673
|
+
*/
|
|
30674
|
+
getCappingColor(): CSSColor;
|
|
30675
|
+
/**
|
|
30676
|
+
* Gets current value of property {@link #getCappingOpacity cappingOpacity}.
|
|
30677
|
+
*
|
|
30678
|
+
* Default value is `0.9`.
|
|
30679
|
+
*
|
|
30680
|
+
*
|
|
30681
|
+
* @returns Value of property `cappingOpacity`
|
|
30682
|
+
*/
|
|
30683
|
+
getCappingOpacity(): float;
|
|
30684
|
+
/**
|
|
30685
|
+
* Gets current value of property {@link #getShowCapping showCapping}.
|
|
30686
|
+
*
|
|
30687
|
+
* Default value is `true`.
|
|
30688
|
+
*
|
|
30689
|
+
*
|
|
30690
|
+
* @returns Value of property `showCapping`
|
|
30691
|
+
*/
|
|
30692
|
+
getShowCapping(): boolean;
|
|
30639
30693
|
/**
|
|
30640
30694
|
* Gets current value of property {@link #getShowEditingUI showEditingUI}.
|
|
30641
30695
|
*
|
|
@@ -30647,6 +30701,15 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30647
30701
|
* @returns Value of property `showEditingUI`
|
|
30648
30702
|
*/
|
|
30649
30703
|
getShowEditingUI(): boolean;
|
|
30704
|
+
/**
|
|
30705
|
+
* Gets information about the current state.
|
|
30706
|
+
*
|
|
30707
|
+
* @since 1.145.0
|
|
30708
|
+
*
|
|
30709
|
+
* @returns JSON-like object which holds the current state information. See {@link sap.ui.vk.tools.CrossSectionTool#setState setState }
|
|
30710
|
+
* for details.
|
|
30711
|
+
*/
|
|
30712
|
+
getState(): object | null;
|
|
30650
30713
|
/**
|
|
30651
30714
|
* MOVE TO BASE Queues a command for execution during the rendering cycle. All gesture operations should
|
|
30652
30715
|
* be called using this method.
|
|
@@ -30672,6 +30735,38 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30672
30735
|
*/
|
|
30673
30736
|
index?: number
|
|
30674
30737
|
): this;
|
|
30738
|
+
/**
|
|
30739
|
+
* Sets a new value for property {@link #getCappingColor cappingColor}.
|
|
30740
|
+
*
|
|
30741
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30742
|
+
*
|
|
30743
|
+
* Default value is `"#ff0000"`.
|
|
30744
|
+
*
|
|
30745
|
+
*
|
|
30746
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
30747
|
+
*/
|
|
30748
|
+
setCappingColor(
|
|
30749
|
+
/**
|
|
30750
|
+
* New value for property `cappingColor`
|
|
30751
|
+
*/
|
|
30752
|
+
sCappingColor?: CSSColor
|
|
30753
|
+
): this;
|
|
30754
|
+
/**
|
|
30755
|
+
* Sets a new value for property {@link #getCappingOpacity cappingOpacity}.
|
|
30756
|
+
*
|
|
30757
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30758
|
+
*
|
|
30759
|
+
* Default value is `0.9`.
|
|
30760
|
+
*
|
|
30761
|
+
*
|
|
30762
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
30763
|
+
*/
|
|
30764
|
+
setCappingOpacity(
|
|
30765
|
+
/**
|
|
30766
|
+
* New value for property `cappingOpacity`
|
|
30767
|
+
*/
|
|
30768
|
+
fCappingOpacity?: float
|
|
30769
|
+
): this;
|
|
30675
30770
|
/**
|
|
30676
30771
|
* Flips the clipping plane.
|
|
30677
30772
|
*
|
|
@@ -30684,6 +30779,22 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30684
30779
|
*/
|
|
30685
30780
|
flip?: boolean
|
|
30686
30781
|
): this;
|
|
30782
|
+
/**
|
|
30783
|
+
* Sets a new value for property {@link #getShowCapping showCapping}.
|
|
30784
|
+
*
|
|
30785
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30786
|
+
*
|
|
30787
|
+
* Default value is `true`.
|
|
30788
|
+
*
|
|
30789
|
+
*
|
|
30790
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
30791
|
+
*/
|
|
30792
|
+
setShowCapping(
|
|
30793
|
+
/**
|
|
30794
|
+
* New value for property `showCapping`
|
|
30795
|
+
*/
|
|
30796
|
+
bShowCapping?: boolean
|
|
30797
|
+
): this;
|
|
30687
30798
|
/**
|
|
30688
30799
|
* Sets a new value for property {@link #getShowEditingUI showEditingUI}.
|
|
30689
30800
|
*
|
|
@@ -30702,6 +30813,52 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30702
30813
|
*/
|
|
30703
30814
|
bShowEditingUI?: boolean
|
|
30704
30815
|
): this;
|
|
30816
|
+
/**
|
|
30817
|
+
* Sets the current state.
|
|
30818
|
+
*
|
|
30819
|
+
* @since 1.145.0
|
|
30820
|
+
*
|
|
30821
|
+
* @returns `this` to allow method chaining.
|
|
30822
|
+
*/
|
|
30823
|
+
setState(
|
|
30824
|
+
/**
|
|
30825
|
+
* JSON-like object which holds the state information. See below for details.
|
|
30826
|
+
*/
|
|
30827
|
+
state?: {
|
|
30828
|
+
/**
|
|
30829
|
+
* Specifies whether the cross section tool should be activated.
|
|
30830
|
+
*/
|
|
30831
|
+
enabled?: boolean;
|
|
30832
|
+
/**
|
|
30833
|
+
* Axis index from 0 to 2: 0 - X, 1 - Y, 2 - Z.
|
|
30834
|
+
*/
|
|
30835
|
+
axis?: number;
|
|
30836
|
+
/**
|
|
30837
|
+
* If set to `true`, the clipping plane will be flipped.
|
|
30838
|
+
*/
|
|
30839
|
+
flip?: boolean;
|
|
30840
|
+
/**
|
|
30841
|
+
* The position of the clipping planes defined as [x, y, z].
|
|
30842
|
+
*/
|
|
30843
|
+
position?: number[];
|
|
30844
|
+
/**
|
|
30845
|
+
* The color of the capping defined as a CSS color string.
|
|
30846
|
+
*/
|
|
30847
|
+
cappingColor?: string;
|
|
30848
|
+
/**
|
|
30849
|
+
* The opacity of the capping defined as a float between 0 and 1.
|
|
30850
|
+
*/
|
|
30851
|
+
cappingOpacity?: number;
|
|
30852
|
+
/**
|
|
30853
|
+
* Specifies whether the capping should be shown.
|
|
30854
|
+
*/
|
|
30855
|
+
showCapping?: boolean;
|
|
30856
|
+
},
|
|
30857
|
+
/**
|
|
30858
|
+
* The viewport where the tool is used.
|
|
30859
|
+
*/
|
|
30860
|
+
viewport?: Viewport
|
|
30861
|
+
): this;
|
|
30705
30862
|
}
|
|
30706
30863
|
/**
|
|
30707
30864
|
* Describes the settings that can be provided to the CrossSectionTool constructor.
|
|
@@ -30711,6 +30868,12 @@ declare module "sap/ui/vk/tools/CrossSectionTool" {
|
|
|
30711
30868
|
* Display text box with current value, which can also be used to directly modify the value
|
|
30712
30869
|
*/
|
|
30713
30870
|
showEditingUI?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
30871
|
+
|
|
30872
|
+
cappingColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
30873
|
+
|
|
30874
|
+
cappingOpacity?: float | PropertyBindingInfo | `{${string}}`;
|
|
30875
|
+
|
|
30876
|
+
showCapping?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
30714
30877
|
}
|
|
30715
30878
|
}
|
|
30716
30879
|
|
|
@@ -42759,6 +42922,10 @@ declare module "sap/ui/vk/Viewport" {
|
|
|
42759
42922
|
* Indicator to retrieve selection information.
|
|
42760
42923
|
*/
|
|
42761
42924
|
selection?: boolean | object;
|
|
42925
|
+
/**
|
|
42926
|
+
* Indicator to retrieve cross-section information.
|
|
42927
|
+
*/
|
|
42928
|
+
crossSection?: boolean | object;
|
|
42762
42929
|
}
|
|
42763
42930
|
): object;
|
|
42764
42931
|
/**
|
package/types/sap.ui.vtm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ushell/library" {
|
|
4
4
|
/**
|
|
@@ -5132,6 +5132,8 @@ declare module "sap/ushell/services/Extension/Item" {
|
|
|
5132
5132
|
/**
|
|
5133
5133
|
* Shows the item for the current application. The item will be hidden after the user navigates away from
|
|
5134
5134
|
* this application. The item will not be added again if the user navigates back to the application.
|
|
5135
|
+
* Exception: Apps which are using the keep alive feature. There the visibility is restored together with
|
|
5136
|
+
* the app.
|
|
5135
5137
|
*
|
|
5136
5138
|
* @since 1.120.0
|
|
5137
5139
|
*
|
|
@@ -5465,6 +5467,8 @@ declare module "sap/ushell/services/FrameBoundExtension/Item" {
|
|
|
5465
5467
|
/**
|
|
5466
5468
|
* Shows the item for the current application. The item will be hidden after the user navigates away from
|
|
5467
5469
|
* this application. The item will not be added again if the user navigates back to the application.
|
|
5470
|
+
* Exception: Apps which are using the keep alive feature. There the visibility is restored together with
|
|
5471
|
+
* the app.
|
|
5468
5472
|
*
|
|
5469
5473
|
* @since 1.124.0
|
|
5470
5474
|
*
|
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -7145,8 +7145,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
7145
7145
|
*
|
|
7146
7146
|
* The list of Subsections.
|
|
7147
7147
|
*
|
|
7148
|
-
* Note
|
|
7149
|
-
* reasons.
|
|
7148
|
+
* **Note:** If you use multiple subsections, set a `title` for each subsection to avoid accessibility violations.
|
|
7150
7149
|
*/
|
|
7151
7150
|
getSubSections(): ObjectPageSubSection[];
|
|
7152
7151
|
/**
|
|
@@ -7359,8 +7358,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
7359
7358
|
/**
|
|
7360
7359
|
* The list of Subsections.
|
|
7361
7360
|
*
|
|
7362
|
-
* Note
|
|
7363
|
-
* reasons.
|
|
7361
|
+
* **Note:** If you use multiple subsections, set a `title` for each subsection to avoid accessibility violations.
|
|
7364
7362
|
*/
|
|
7365
7363
|
subSections?:
|
|
7366
7364
|
| ObjectPageSubSection[]
|
|
@@ -7514,9 +7512,13 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7514
7512
|
* Defines the title of the respective section/subsection.
|
|
7515
7513
|
*
|
|
7516
7514
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7517
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7515
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7518
7516
|
* is set to `false`.
|
|
7519
7517
|
*
|
|
7518
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7519
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7520
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7521
|
+
*
|
|
7520
7522
|
*
|
|
7521
7523
|
* @returns Value of property `title`
|
|
7522
7524
|
*/
|
|
@@ -7604,9 +7606,13 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7604
7606
|
* Defines the title of the respective section/subsection.
|
|
7605
7607
|
*
|
|
7606
7608
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7607
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7609
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7608
7610
|
* is set to `false`.
|
|
7609
7611
|
*
|
|
7612
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7613
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7614
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7615
|
+
*
|
|
7610
7616
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7611
7617
|
*
|
|
7612
7618
|
*
|
|
@@ -7676,8 +7682,12 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7676
7682
|
* Defines the title of the respective section/subsection.
|
|
7677
7683
|
*
|
|
7678
7684
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7679
|
-
* instead of the section title. This behavior is true even if the `showTitle`
|
|
7685
|
+
* instead of the section title. This behavior is true even if the `showTitle` property of {@link sap.uxap.ObjectPageSubSection }
|
|
7680
7686
|
* is set to `false`.
|
|
7687
|
+
*
|
|
7688
|
+
* **Note:** To avoid accessibility issues, always set a `title` on {@link sap.uxap.ObjectPageSubSection},
|
|
7689
|
+
* especially when a section contains multiple subsections. If no `title` is set on a subsection, the anchor
|
|
7690
|
+
* bar button popover will appear empty, which will lead to accessibility violations.
|
|
7681
7691
|
*/
|
|
7682
7692
|
title?: string | PropertyBindingInfo;
|
|
7683
7693
|
|
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED