@sapui5/ts-types-esm 1.134.1 → 1.135.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 +1 -1
- package/types/sap.f.d.ts +2 -8
- 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 +5 -5
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +807 -293
- 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 +6 -4
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +73 -15
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +330 -83
- 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.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +248 -1229
- package/types/sap.suite.ui.commons.d.ts +72 -1
- package/types/sap.suite.ui.generic.template.d.ts +8 -2
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +215 -19
- 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 +90 -18
- package/types/sap.ui.core.d.ts +160 -40
- 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 +14 -6
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +2 -4
- package/types/sap.ui.layout.d.ts +14 -13
- package/types/sap.ui.mdc.d.ts +26 -6
- package/types/sap.ui.richtexteditor.d.ts +39 -1
- package/types/sap.ui.rta.d.ts +31 -5
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +30 -16
- package/types/sap.ui.table.d.ts +10 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +32 -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 +11 -72
- 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 +18 -16
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +10 -1
- 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
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/test/library" {}
|
|
4
4
|
|
|
@@ -1698,7 +1698,7 @@ declare module "sap/fe/test/api/HeaderAssertions" {
|
|
|
1698
1698
|
*/
|
|
1699
1699
|
vActionIdentifier: string | ActionIdentifier,
|
|
1700
1700
|
/**
|
|
1701
|
-
* Defines the expected state of the button
|
|
1701
|
+
* Defines the expected state of the button. Checking for visible=false means to check a hidden action.
|
|
1702
1702
|
*/
|
|
1703
1703
|
mState?: object
|
|
1704
1704
|
): object;
|
|
@@ -2531,7 +2531,8 @@ declare module "sap/fe/test/api/TableAssertions" {
|
|
|
2531
2531
|
mState?: object
|
|
2532
2532
|
): object;
|
|
2533
2533
|
/**
|
|
2534
|
-
* Checks the state of the cells of a table.
|
|
2534
|
+
* Checks the state of the cells of a table. This function can only be used for simple content within a
|
|
2535
|
+
* table cell. Checking complex content like combined fields within a cell is not supported.
|
|
2535
2536
|
*
|
|
2536
2537
|
*
|
|
2537
2538
|
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
@@ -2562,7 +2563,8 @@ declare module "sap/fe/test/api/TableAssertions" {
|
|
|
2562
2563
|
mColumnStateMap: object
|
|
2563
2564
|
): object;
|
|
2564
2565
|
/**
|
|
2565
|
-
* Checks the state of the cells of a table.
|
|
2566
|
+
* Checks the state of the cells of a table. This function can only be used for simple content within a
|
|
2567
|
+
* table cell. Checking complex content like combined fields within a cell is not supported.
|
|
2566
2568
|
*
|
|
2567
2569
|
*
|
|
2568
2570
|
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/gantt/library" {
|
|
4
4
|
import ChartScheme from "sap/gantt/config/ChartScheme";
|
|
@@ -10826,6 +10826,8 @@ declare module "sap/gantt/def/pattern/BackSlashPattern" {
|
|
|
10826
10826
|
*
|
|
10827
10827
|
* Stroke color of the path element.
|
|
10828
10828
|
*
|
|
10829
|
+
* Default value is `"sapContent_ForegroundBorderColor"`.
|
|
10830
|
+
*
|
|
10829
10831
|
*
|
|
10830
10832
|
* @returns Value of property `stroke`
|
|
10831
10833
|
*/
|
|
@@ -10865,6 +10867,8 @@ declare module "sap/gantt/def/pattern/BackSlashPattern" {
|
|
|
10865
10867
|
*
|
|
10866
10868
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10867
10869
|
*
|
|
10870
|
+
* Default value is `"sapContent_ForegroundBorderColor"`.
|
|
10871
|
+
*
|
|
10868
10872
|
*
|
|
10869
10873
|
* @returns Reference to `this` in order to allow method chaining
|
|
10870
10874
|
*/
|
|
@@ -10872,7 +10876,7 @@ declare module "sap/gantt/def/pattern/BackSlashPattern" {
|
|
|
10872
10876
|
/**
|
|
10873
10877
|
* New value for property `stroke`
|
|
10874
10878
|
*/
|
|
10875
|
-
sStroke
|
|
10879
|
+
sStroke?: ValueSVGPaintServer
|
|
10876
10880
|
): this;
|
|
10877
10881
|
/**
|
|
10878
10882
|
* Sets a new value for property {@link #getStrokeWidth strokeWidth}.
|
|
@@ -11034,7 +11038,7 @@ declare module "sap/gantt/def/pattern/PatternBase" {
|
|
|
11034
11038
|
*
|
|
11035
11039
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11036
11040
|
*
|
|
11037
|
-
* Default value is `"
|
|
11041
|
+
* Default value is `"sapContent_ForegroundColor"`.
|
|
11038
11042
|
*
|
|
11039
11043
|
*
|
|
11040
11044
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -33126,7 +33130,7 @@ declare module "sap/gantt/simple/BaseDeltaRectangle" {
|
|
|
33126
33130
|
|
|
33127
33131
|
import Event from "sap/ui/base/Event";
|
|
33128
33132
|
|
|
33129
|
-
import { SVGLength } from "sap/gantt/library";
|
|
33133
|
+
import { SVGLength, ValueSVGPaintServer } from "sap/gantt/library";
|
|
33130
33134
|
|
|
33131
33135
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
33132
33136
|
|
|
@@ -33461,6 +33465,18 @@ declare module "sap/gantt/simple/BaseDeltaRectangle" {
|
|
|
33461
33465
|
* @returns Value of property `showTitle`
|
|
33462
33466
|
*/
|
|
33463
33467
|
getShowTitle(): boolean;
|
|
33468
|
+
/**
|
|
33469
|
+
* Gets current value of property {@link #getStroke stroke}.
|
|
33470
|
+
*
|
|
33471
|
+
* stroke property of the delta rectangle shape
|
|
33472
|
+
*
|
|
33473
|
+
* Default value is `"sapChart_Sequence_3_BorderColor"`.
|
|
33474
|
+
*
|
|
33475
|
+
* @since 1.135
|
|
33476
|
+
*
|
|
33477
|
+
* @returns Value of property `stroke`
|
|
33478
|
+
*/
|
|
33479
|
+
getStroke(): ValueSVGPaintServer;
|
|
33464
33480
|
/**
|
|
33465
33481
|
* Gets current value of property {@link #getTitle title}.
|
|
33466
33482
|
*
|
|
@@ -33573,6 +33589,25 @@ declare module "sap/gantt/simple/BaseDeltaRectangle" {
|
|
|
33573
33589
|
*/
|
|
33574
33590
|
bShowTitle?: boolean
|
|
33575
33591
|
): this;
|
|
33592
|
+
/**
|
|
33593
|
+
* Sets a new value for property {@link #getStroke stroke}.
|
|
33594
|
+
*
|
|
33595
|
+
* stroke property of the delta rectangle shape
|
|
33596
|
+
*
|
|
33597
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
33598
|
+
*
|
|
33599
|
+
* Default value is `"sapChart_Sequence_3_BorderColor"`.
|
|
33600
|
+
*
|
|
33601
|
+
* @since 1.135
|
|
33602
|
+
*
|
|
33603
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33604
|
+
*/
|
|
33605
|
+
setStroke(
|
|
33606
|
+
/**
|
|
33607
|
+
* New value for property `stroke`
|
|
33608
|
+
*/
|
|
33609
|
+
sStroke?: ValueSVGPaintServer
|
|
33610
|
+
): this;
|
|
33576
33611
|
/**
|
|
33577
33612
|
* Sets a new value for property {@link #getTitle title}.
|
|
33578
33613
|
*
|
|
@@ -33687,6 +33722,13 @@ declare module "sap/gantt/simple/BaseDeltaRectangle" {
|
|
|
33687
33722
|
*/
|
|
33688
33723
|
showTitle?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
33689
33724
|
|
|
33725
|
+
/**
|
|
33726
|
+
* stroke property of the delta rectangle shape
|
|
33727
|
+
*
|
|
33728
|
+
* @since 1.135
|
|
33729
|
+
*/
|
|
33730
|
+
stroke?: ValueSVGPaintServer | PropertyBindingInfo | `{${string}}`;
|
|
33731
|
+
|
|
33690
33732
|
press?: (oEvent: Event) => void;
|
|
33691
33733
|
|
|
33692
33734
|
mouseEnter?: (oEvent: Event) => void;
|
|
@@ -35033,7 +35075,7 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
35033
35075
|
* ```javascript
|
|
35034
35076
|
*
|
|
35035
35077
|
* {
|
|
35036
|
-
* "values": "
|
|
35078
|
+
* "values": "sapContent_Selected_ForegroundColor;sapContent_ForegroundBorderColor",
|
|
35037
35079
|
* "duration": "1s",
|
|
35038
35080
|
* "repeatCount": "indefinite"
|
|
35039
35081
|
* }
|
|
@@ -35179,7 +35221,7 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
35179
35221
|
*
|
|
35180
35222
|
* This property indicates the font family that gets used to render the text in the shape.
|
|
35181
35223
|
*
|
|
35182
|
-
* Default value is `"
|
|
35224
|
+
* Default value is `"sapFontFamily"`.
|
|
35183
35225
|
*
|
|
35184
35226
|
* @since 1.94
|
|
35185
35227
|
*
|
|
@@ -35638,7 +35680,7 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
35638
35680
|
* ```javascript
|
|
35639
35681
|
*
|
|
35640
35682
|
* {
|
|
35641
|
-
* "values": "
|
|
35683
|
+
* "values": "sapContent_Selected_ForegroundColor;sapContent_ForegroundBorderColor",
|
|
35642
35684
|
* "duration": "1s",
|
|
35643
35685
|
* "repeatCount": "indefinite"
|
|
35644
35686
|
* }
|
|
@@ -35852,7 +35894,7 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
35852
35894
|
*
|
|
35853
35895
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
35854
35896
|
*
|
|
35855
|
-
* Default value is `"
|
|
35897
|
+
* Default value is `"sapFontFamily"`.
|
|
35856
35898
|
*
|
|
35857
35899
|
* @since 1.94
|
|
35858
35900
|
*
|
|
@@ -36716,7 +36758,7 @@ declare module "sap/gantt/simple/BaseShape" {
|
|
|
36716
36758
|
* ```javascript
|
|
36717
36759
|
*
|
|
36718
36760
|
* {
|
|
36719
|
-
* "values": "
|
|
36761
|
+
* "values": "sapContent_Selected_ForegroundColor;sapContent_ForegroundBorderColor",
|
|
36720
36762
|
* "duration": "1s",
|
|
36721
36763
|
* "repeatCount": "indefinite"
|
|
36722
36764
|
* }
|
|
@@ -52476,6 +52518,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52476
52518
|
*
|
|
52477
52519
|
* Defines the color of the shape at the end of a relationship
|
|
52478
52520
|
*
|
|
52521
|
+
* Default value is `"sapChart_Data_InteractiveColor"`.
|
|
52522
|
+
*
|
|
52479
52523
|
*
|
|
52480
52524
|
* @returns Value of property `endShapeColor`
|
|
52481
52525
|
*/
|
|
@@ -52531,6 +52575,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52531
52575
|
*
|
|
52532
52576
|
* Defines the color of the shape at the end of the selected relationship
|
|
52533
52577
|
*
|
|
52578
|
+
* Default value is `"sapContent_Selected_ForegroundColor"`.
|
|
52579
|
+
*
|
|
52534
52580
|
*
|
|
52535
52581
|
* @returns Value of property `selectedEndShapeColor`
|
|
52536
52582
|
*/
|
|
@@ -52540,6 +52586,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52540
52586
|
*
|
|
52541
52587
|
* Defines the color of the shape at the start of the selected relationship
|
|
52542
52588
|
*
|
|
52589
|
+
* Default value is `"sapContent_Selected_ForegroundColor"`.
|
|
52590
|
+
*
|
|
52543
52591
|
*
|
|
52544
52592
|
* @returns Value of property `selectedStartShapeColor`
|
|
52545
52593
|
*/
|
|
@@ -52549,7 +52597,7 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52549
52597
|
*
|
|
52550
52598
|
* Defines the stroke color when `Relationship` is selected
|
|
52551
52599
|
*
|
|
52552
|
-
* Default value is `"
|
|
52600
|
+
* Default value is `"sapContent_Selected_ForegroundColor"`.
|
|
52553
52601
|
*
|
|
52554
52602
|
*
|
|
52555
52603
|
* @returns Value of property `selectedStroke`
|
|
@@ -52593,6 +52641,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52593
52641
|
*
|
|
52594
52642
|
* Defines the color of the shape at the start of a relationship
|
|
52595
52643
|
*
|
|
52644
|
+
* Default value is `"sapChart_Data_InteractiveColor"`.
|
|
52645
|
+
*
|
|
52596
52646
|
*
|
|
52597
52647
|
* @returns Value of property `startShapeColor`
|
|
52598
52648
|
*/
|
|
@@ -52643,6 +52693,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52643
52693
|
*
|
|
52644
52694
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
52645
52695
|
*
|
|
52696
|
+
* Default value is `"sapChart_Data_InteractiveColor"`.
|
|
52697
|
+
*
|
|
52646
52698
|
*
|
|
52647
52699
|
* @returns Reference to `this` in order to allow method chaining
|
|
52648
52700
|
*/
|
|
@@ -52650,7 +52702,7 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52650
52702
|
/**
|
|
52651
52703
|
* New value for property `endShapeColor`
|
|
52652
52704
|
*/
|
|
52653
|
-
sEndShapeColor
|
|
52705
|
+
sEndShapeColor?: ValueSVGPaintServer
|
|
52654
52706
|
): this;
|
|
52655
52707
|
/**
|
|
52656
52708
|
* Sets a new value for property {@link #getLShapeForTypeFS lShapeForTypeFS}.
|
|
@@ -52733,6 +52785,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52733
52785
|
*
|
|
52734
52786
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
52735
52787
|
*
|
|
52788
|
+
* Default value is `"sapContent_Selected_ForegroundColor"`.
|
|
52789
|
+
*
|
|
52736
52790
|
*
|
|
52737
52791
|
* @returns Reference to `this` in order to allow method chaining
|
|
52738
52792
|
*/
|
|
@@ -52740,7 +52794,7 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52740
52794
|
/**
|
|
52741
52795
|
* New value for property `selectedEndShapeColor`
|
|
52742
52796
|
*/
|
|
52743
|
-
sSelectedEndShapeColor
|
|
52797
|
+
sSelectedEndShapeColor?: ValueSVGPaintServer
|
|
52744
52798
|
): this;
|
|
52745
52799
|
/**
|
|
52746
52800
|
* Sets a new value for property {@link #getSelectedStartShapeColor selectedStartShapeColor}.
|
|
@@ -52749,6 +52803,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52749
52803
|
*
|
|
52750
52804
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
52751
52805
|
*
|
|
52806
|
+
* Default value is `"sapContent_Selected_ForegroundColor"`.
|
|
52807
|
+
*
|
|
52752
52808
|
*
|
|
52753
52809
|
* @returns Reference to `this` in order to allow method chaining
|
|
52754
52810
|
*/
|
|
@@ -52756,7 +52812,7 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52756
52812
|
/**
|
|
52757
52813
|
* New value for property `selectedStartShapeColor`
|
|
52758
52814
|
*/
|
|
52759
|
-
sSelectedStartShapeColor
|
|
52815
|
+
sSelectedStartShapeColor?: ValueSVGPaintServer
|
|
52760
52816
|
): this;
|
|
52761
52817
|
/**
|
|
52762
52818
|
* Sets a new value for property {@link #getSelectedStroke selectedStroke}.
|
|
@@ -52765,7 +52821,7 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52765
52821
|
*
|
|
52766
52822
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
52767
52823
|
*
|
|
52768
|
-
* Default value is `"
|
|
52824
|
+
* Default value is `"sapContent_Selected_ForegroundColor"`.
|
|
52769
52825
|
*
|
|
52770
52826
|
*
|
|
52771
52827
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -52837,6 +52893,8 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52837
52893
|
*
|
|
52838
52894
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
52839
52895
|
*
|
|
52896
|
+
* Default value is `"sapChart_Data_InteractiveColor"`.
|
|
52897
|
+
*
|
|
52840
52898
|
*
|
|
52841
52899
|
* @returns Reference to `this` in order to allow method chaining
|
|
52842
52900
|
*/
|
|
@@ -52844,7 +52902,7 @@ declare module "sap/gantt/simple/Relationship" {
|
|
|
52844
52902
|
/**
|
|
52845
52903
|
* New value for property `startShapeColor`
|
|
52846
52904
|
*/
|
|
52847
|
-
sStartShapeColor
|
|
52905
|
+
sStartShapeColor?: ValueSVGPaintServer
|
|
52848
52906
|
): this;
|
|
52849
52907
|
/**
|
|
52850
52908
|
* Sets a new value for property {@link #getSuccessor successor}.
|
package/types/sap.insights.d.ts
CHANGED