@sapui5/ts-types 1.130.1 → 1.131.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 +3 -3
- 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 +50 -9
- package/types/sap.f.d.ts +237 -10
- package/types/sap.fe.base.d.ts +29 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +6 -6
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +218 -130
- package/types/sap.fe.navigation.d.ts +3 -3
- 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.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +102 -9
- package/types/sap.insights.d.ts +1 -1
- package/types/{mobile-1.130.0-d.ts → sap.m.d.ts} +357 -25
- 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 +1 -1
- package/types/sap.suite.ui.commons.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 +138 -53
- package/types/{core-1.130.0-d.ts → sap.ui.core.d.ts} +293 -298
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +6 -6
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +2 -2
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +141 -1
- package/types/sap.ui.layout.d.ts +18 -21
- package/types/{mdc-1.130.0-d.ts → sap.ui.mdc.d.ts} +217 -100
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- 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 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +262 -7
- 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 +31 -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 +7 -4
- 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/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.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.131.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -3409,22 +3409,22 @@ declare namespace sap {
|
|
|
3409
3409
|
sDstHorizons?: object[]
|
|
3410
3410
|
): this;
|
|
3411
3411
|
/**
|
|
3412
|
-
* Sets a new value for property {@link #getTimeZone timeZone}.
|
|
3413
|
-
*
|
|
3414
3412
|
* Custom timezone for Gantt. The localization time zone is considered as the default time zone for the
|
|
3415
3413
|
* locale, see {@link sap.base.i18n.Localization#getTimezone}
|
|
3416
3414
|
*
|
|
3417
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3418
|
-
*
|
|
3419
3415
|
*
|
|
3420
|
-
* @returns
|
|
3416
|
+
* @returns returns the control for chaining
|
|
3421
3417
|
*/
|
|
3422
3418
|
setTimeZone(
|
|
3423
3419
|
/**
|
|
3424
|
-
*
|
|
3420
|
+
* Timezone to set
|
|
3425
3421
|
*/
|
|
3426
|
-
sTimeZone: string
|
|
3427
|
-
|
|
3422
|
+
sTimeZone: string,
|
|
3423
|
+
/**
|
|
3424
|
+
* flag to suppress the invalidation and by default the locale will be invalidate
|
|
3425
|
+
*/
|
|
3426
|
+
bSuppressInvalidate: boolean
|
|
3427
|
+
): sap.gantt.config.Locale;
|
|
3428
3428
|
/**
|
|
3429
3429
|
* Sets a new value for property {@link #getUtcdiff utcdiff}.
|
|
3430
3430
|
*
|
|
@@ -25371,6 +25371,26 @@ declare namespace sap {
|
|
|
25371
25371
|
* @since 1.130
|
|
25372
25372
|
*/
|
|
25373
25373
|
styleName?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
25374
|
+
|
|
25375
|
+
/**
|
|
25376
|
+
* Postion of left anchor for a shape to connect with other shapes whose value ranges from 0-100
|
|
25377
|
+
*
|
|
25378
|
+
* @since 1.131
|
|
25379
|
+
*/
|
|
25380
|
+
leftAnchorPosition?:
|
|
25381
|
+
| int
|
|
25382
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25383
|
+
| `{${string}}`;
|
|
25384
|
+
|
|
25385
|
+
/**
|
|
25386
|
+
* Postion of right anchor for a shape to connect with other shapes whose value ranges from 0-100
|
|
25387
|
+
*
|
|
25388
|
+
* @since 1.131
|
|
25389
|
+
*/
|
|
25390
|
+
rightAnchorPosition?:
|
|
25391
|
+
| int
|
|
25392
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
25393
|
+
| `{${string}}`;
|
|
25374
25394
|
}
|
|
25375
25395
|
|
|
25376
25396
|
/**
|
|
@@ -32067,6 +32087,18 @@ declare namespace sap {
|
|
|
32067
32087
|
* @returns Value of property `hoverable`
|
|
32068
32088
|
*/
|
|
32069
32089
|
getHoverable(): boolean;
|
|
32090
|
+
/**
|
|
32091
|
+
* Gets current value of property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
32092
|
+
*
|
|
32093
|
+
* Postion of left anchor for a shape to connect with other shapes whose value ranges from 0-100
|
|
32094
|
+
*
|
|
32095
|
+
* Default value is `50`.
|
|
32096
|
+
*
|
|
32097
|
+
* @since 1.131
|
|
32098
|
+
*
|
|
32099
|
+
* @returns Value of property `leftAnchorPosition`
|
|
32100
|
+
*/
|
|
32101
|
+
getLeftAnchorPosition(): int;
|
|
32070
32102
|
/**
|
|
32071
32103
|
* Gets current value of property {@link #getOpacity opacity}.
|
|
32072
32104
|
*
|
|
@@ -32092,6 +32124,18 @@ declare namespace sap {
|
|
|
32092
32124
|
* @returns Value of property `resizable`
|
|
32093
32125
|
*/
|
|
32094
32126
|
getResizable(): boolean;
|
|
32127
|
+
/**
|
|
32128
|
+
* Gets current value of property {@link #getRightAnchorPosition rightAnchorPosition}.
|
|
32129
|
+
*
|
|
32130
|
+
* Postion of right anchor for a shape to connect with other shapes whose value ranges from 0-100
|
|
32131
|
+
*
|
|
32132
|
+
* Default value is `50`.
|
|
32133
|
+
*
|
|
32134
|
+
* @since 1.131
|
|
32135
|
+
*
|
|
32136
|
+
* @returns Value of property `rightAnchorPosition`
|
|
32137
|
+
*/
|
|
32138
|
+
getRightAnchorPosition(): int;
|
|
32095
32139
|
/**
|
|
32096
32140
|
* Gets current value of property {@link #getRowYCenter rowYCenter}.
|
|
32097
32141
|
*
|
|
@@ -32757,6 +32801,25 @@ declare namespace sap {
|
|
|
32757
32801
|
*/
|
|
32758
32802
|
bHoverable?: boolean
|
|
32759
32803
|
): this;
|
|
32804
|
+
/**
|
|
32805
|
+
* Sets a new value for property {@link #getLeftAnchorPosition leftAnchorPosition}.
|
|
32806
|
+
*
|
|
32807
|
+
* Postion of left anchor for a shape to connect with other shapes whose value ranges from 0-100
|
|
32808
|
+
*
|
|
32809
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32810
|
+
*
|
|
32811
|
+
* Default value is `50`.
|
|
32812
|
+
*
|
|
32813
|
+
* @since 1.131
|
|
32814
|
+
*
|
|
32815
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
32816
|
+
*/
|
|
32817
|
+
setLeftAnchorPosition(
|
|
32818
|
+
/**
|
|
32819
|
+
* New value for property `leftAnchorPosition`
|
|
32820
|
+
*/
|
|
32821
|
+
iLeftAnchorPosition?: int
|
|
32822
|
+
): this;
|
|
32760
32823
|
/**
|
|
32761
32824
|
* Sets a new value for property {@link #getOpacity opacity}.
|
|
32762
32825
|
*
|
|
@@ -32796,6 +32859,25 @@ declare namespace sap {
|
|
|
32796
32859
|
*/
|
|
32797
32860
|
bResizable?: boolean
|
|
32798
32861
|
): this;
|
|
32862
|
+
/**
|
|
32863
|
+
* Sets a new value for property {@link #getRightAnchorPosition rightAnchorPosition}.
|
|
32864
|
+
*
|
|
32865
|
+
* Postion of right anchor for a shape to connect with other shapes whose value ranges from 0-100
|
|
32866
|
+
*
|
|
32867
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32868
|
+
*
|
|
32869
|
+
* Default value is `50`.
|
|
32870
|
+
*
|
|
32871
|
+
* @since 1.131
|
|
32872
|
+
*
|
|
32873
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
32874
|
+
*/
|
|
32875
|
+
setRightAnchorPosition(
|
|
32876
|
+
/**
|
|
32877
|
+
* New value for property `rightAnchorPosition`
|
|
32878
|
+
*/
|
|
32879
|
+
iRightAnchorPosition?: int
|
|
32880
|
+
): this;
|
|
32799
32881
|
/**
|
|
32800
32882
|
* Sets a new value for property {@link #getRowYCenter rowYCenter}.
|
|
32801
32883
|
*
|
|
@@ -38008,6 +38090,17 @@ declare namespace sap {
|
|
|
38008
38090
|
*/
|
|
38009
38091
|
sWidth?: sap.ui.core.CSSSize
|
|
38010
38092
|
): this;
|
|
38093
|
+
/**
|
|
38094
|
+
* Triggers the search event in gantt container area and updates the search results
|
|
38095
|
+
*
|
|
38096
|
+
* @since 1.106
|
|
38097
|
+
*/
|
|
38098
|
+
updateSearch(
|
|
38099
|
+
/**
|
|
38100
|
+
* when set to true search input and results will be cleared
|
|
38101
|
+
*/
|
|
38102
|
+
bClear: boolean
|
|
38103
|
+
): void;
|
|
38011
38104
|
}
|
|
38012
38105
|
/**
|
|
38013
38106
|
* The Gantt Chart control provides a comprehensive set of features to display hierarchical data and visualized
|
package/types/sap.insights.d.ts
CHANGED