@sapui5/ts-types-esm 1.132.0 → 1.133.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 +12 -11
- package/types/sap.ca.ui.d.ts +413 -415
- package/types/sap.chart.d.ts +6 -6
- package/types/sap.collaboration.d.ts +31 -31
- package/types/sap.cux.home.d.ts +937 -106
- package/types/sap.esh.search.ui.d.ts +39 -1
- package/types/sap.f.d.ts +159 -175
- 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 +16 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +81 -45
- 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 +3 -8
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +385 -329
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.m.d.ts +1946 -1117
- package/types/sap.makit.d.ts +182 -182
- package/types/sap.me.d.ts +25 -27
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +41 -41
- package/types/sap.sac.df.d.ts +108 -98
- package/types/sap.suite.ui.commons.d.ts +432 -487
- package/types/sap.suite.ui.generic.template.d.ts +28 -8
- package/types/sap.suite.ui.microchart.d.ts +55 -79
- package/types/sap.tnt.d.ts +229 -14
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +326 -335
- package/types/sap.ui.comp.d.ts +427 -421
- package/types/sap.ui.core.d.ts +693 -718
- 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 -5
- package/types/sap.ui.generic.app.d.ts +83 -66
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +324 -236
- package/types/sap.ui.layout.d.ts +87 -103
- package/types/sap.ui.mdc.d.ts +167 -142
- package/types/sap.ui.richtexteditor.d.ts +48 -8
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +14 -14
- package/types/sap.ui.support.d.ts +2 -2
- package/types/sap.ui.table.d.ts +219 -197
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +130 -112
- package/types/sap.ui.ux3.d.ts +113 -117
- package/types/sap.ui.vbm.d.ts +57 -57
- package/types/sap.ui.vk.d.ts +135 -132
- package/types/sap.ui.vtm.d.ts +112 -103
- package/types/sap.ui.webc.common.d.ts +7 -7
- package/types/sap.ui.webc.fiori.d.ts +164 -176
- package/types/sap.ui.webc.main.d.ts +527 -531
- package/types/sap.uiext.inbox.d.ts +43 -43
- package/types/sap.ushell.d.ts +206 -123
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +33 -51
- package/types/sap.viz.d.ts +2782 -2858
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +17 -17
- package/types/sap.zen.crosstab.d.ts +10 -10
- package/types/sap.zen.dsh.d.ts +11 -11
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.133.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/richtexteditor/library" {
|
|
4
4
|
/**
|
|
@@ -688,7 +688,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
688
688
|
*
|
|
689
689
|
* Default value is `'js/tiny_mce6/tinymce.js'`.
|
|
690
690
|
*
|
|
691
|
-
* @deprecated
|
|
691
|
+
* @deprecated As of version 1.25.0. The editorLocation is set implicitly when choosing the editorType.
|
|
692
692
|
*
|
|
693
693
|
* @returns Value of property `editorLocation`
|
|
694
694
|
*/
|
|
@@ -752,6 +752,19 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
752
752
|
* @returns Value of property `plugins`
|
|
753
753
|
*/
|
|
754
754
|
getPlugins(): object[];
|
|
755
|
+
/**
|
|
756
|
+
* Gets current value of property {@link #getPrefixHttps prefixHttps}.
|
|
757
|
+
*
|
|
758
|
+
* Determines if the URL defined by the user has an "https://" prefix. **Note:** This property works only
|
|
759
|
+
* when the `customToolbar` property is enabled. **Note:** If the user has typed a prefix (e.g "http://")
|
|
760
|
+
* it will be preserved, regardless of the value of this property.
|
|
761
|
+
*
|
|
762
|
+
* Default value is `false`.
|
|
763
|
+
*
|
|
764
|
+
*
|
|
765
|
+
* @returns Value of property `prefixHttps`
|
|
766
|
+
*/
|
|
767
|
+
getPrefixHttps(): boolean;
|
|
755
768
|
/**
|
|
756
769
|
* Gets current value of property {@link #getRequired required}.
|
|
757
770
|
*
|
|
@@ -897,7 +910,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
897
910
|
*
|
|
898
911
|
* @returns Value of property `textDirection`
|
|
899
912
|
*/
|
|
900
|
-
getTextDirection(): TextDirection
|
|
913
|
+
getTextDirection(): TextDirection;
|
|
901
914
|
/**
|
|
902
915
|
* Gets current value of property {@link #getUseLegacyTheme useLegacyTheme}.
|
|
903
916
|
*
|
|
@@ -908,7 +921,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
908
921
|
*
|
|
909
922
|
* Default value is `true`.
|
|
910
923
|
*
|
|
911
|
-
* @deprecated
|
|
924
|
+
* @deprecated As of version 1.97.0. This property became obsolete after the deprecation of TinyMCE v3.
|
|
912
925
|
*
|
|
913
926
|
* @returns Value of property `useLegacyTheme`
|
|
914
927
|
*/
|
|
@@ -1112,7 +1125,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1112
1125
|
*
|
|
1113
1126
|
* Default value is `'js/tiny_mce6/tinymce.js'`.
|
|
1114
1127
|
*
|
|
1115
|
-
* @deprecated
|
|
1128
|
+
* @deprecated As of version 1.25.0. The editorLocation is set implicitly when choosing the editorType.
|
|
1116
1129
|
*
|
|
1117
1130
|
* @returns Reference to `this` in order to allow method chaining
|
|
1118
1131
|
*/
|
|
@@ -1165,6 +1178,26 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1165
1178
|
*/
|
|
1166
1179
|
aPlugins?: any[]
|
|
1167
1180
|
): RichTextEditor;
|
|
1181
|
+
/**
|
|
1182
|
+
* Sets a new value for property {@link #getPrefixHttps prefixHttps}.
|
|
1183
|
+
*
|
|
1184
|
+
* Determines if the URL defined by the user has an "https://" prefix. **Note:** This property works only
|
|
1185
|
+
* when the `customToolbar` property is enabled. **Note:** If the user has typed a prefix (e.g "http://")
|
|
1186
|
+
* it will be preserved, regardless of the value of this property.
|
|
1187
|
+
*
|
|
1188
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1189
|
+
*
|
|
1190
|
+
* Default value is `false`.
|
|
1191
|
+
*
|
|
1192
|
+
*
|
|
1193
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1194
|
+
*/
|
|
1195
|
+
setPrefixHttps(
|
|
1196
|
+
/**
|
|
1197
|
+
* New value for property `prefixHttps`
|
|
1198
|
+
*/
|
|
1199
|
+
bPrefixHttps?: boolean
|
|
1200
|
+
): this;
|
|
1168
1201
|
/**
|
|
1169
1202
|
* Sets a new value for property {@link #getRequired required}.
|
|
1170
1203
|
*
|
|
@@ -1400,7 +1433,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1400
1433
|
*
|
|
1401
1434
|
* Default value is `true`.
|
|
1402
1435
|
*
|
|
1403
|
-
* @deprecated
|
|
1436
|
+
* @deprecated As of version 1.97.0. This property became obsolete after the deprecation of TinyMCE v3.
|
|
1404
1437
|
*
|
|
1405
1438
|
* @returns Reference to `this` in order to allow method chaining
|
|
1406
1439
|
*/
|
|
@@ -1524,7 +1557,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1524
1557
|
* Relative or absolute URL where the editor is available. Must be on the same server. **Note:** Any attempts
|
|
1525
1558
|
* to set this property after the first rendering will not have any effect.
|
|
1526
1559
|
*
|
|
1527
|
-
* @deprecated
|
|
1560
|
+
* @deprecated As of version 1.25.0. The editorLocation is set implicitly when choosing the editorType.
|
|
1528
1561
|
*/
|
|
1529
1562
|
editorLocation?: string | PropertyBindingInfo;
|
|
1530
1563
|
|
|
@@ -1609,6 +1642,13 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1609
1642
|
*/
|
|
1610
1643
|
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1611
1644
|
|
|
1645
|
+
/**
|
|
1646
|
+
* Determines if the URL defined by the user has an "https://" prefix. **Note:** This property works only
|
|
1647
|
+
* when the `customToolbar` property is enabled. **Note:** If the user has typed a prefix (e.g "http://")
|
|
1648
|
+
* it will be preserved, regardless of the value of this property.
|
|
1649
|
+
*/
|
|
1650
|
+
prefixHttps?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1651
|
+
|
|
1612
1652
|
/**
|
|
1613
1653
|
* Determines whether to run the HTML sanitizer once the value (HTML markup) is applied or not. To configure
|
|
1614
1654
|
* allowed URLs please use the validator API via {@link module:sap/base/security/URLListValidator#add URLListValidator API}.
|
|
@@ -1627,7 +1667,7 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
|
|
|
1627
1667
|
* theme has the disadvantage that not all functionality has its own icon, so using non default buttons
|
|
1628
1668
|
* might lead to invisible buttons with the legacy theme - use the default editor theme in this case.
|
|
1629
1669
|
*
|
|
1630
|
-
* @deprecated
|
|
1670
|
+
* @deprecated As of version 1.97.0. This property became obsolete after the deprecation of TinyMCE v3.
|
|
1631
1671
|
*/
|
|
1632
1672
|
useLegacyTheme?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1633
1673
|
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.133.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/suite/library" {
|
|
4
4
|
/**
|
|
@@ -42,9 +42,9 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
42
42
|
/**
|
|
43
43
|
* This control shows a circle which radius and color depends on the given parameters
|
|
44
44
|
*
|
|
45
|
-
* @deprecated
|
|
46
|
-
* known
|
|
47
|
-
* @experimental
|
|
45
|
+
* @deprecated As of version 1.108. there's no replacement for this functionality as no active use cases
|
|
46
|
+
* are known
|
|
47
|
+
* @experimental As of version 1.2. The API may change. Use with care.
|
|
48
48
|
*/
|
|
49
49
|
export default class TaskCircle extends Control {
|
|
50
50
|
/**
|
|
@@ -233,7 +233,7 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
233
233
|
*
|
|
234
234
|
* @returns Value of property `color`
|
|
235
235
|
*/
|
|
236
|
-
getColor(): TaskCircleColor
|
|
236
|
+
getColor(): TaskCircleColor;
|
|
237
237
|
/**
|
|
238
238
|
* Gets current value of property {@link #getMaxValue maxValue}.
|
|
239
239
|
*
|
|
@@ -383,9 +383,9 @@ declare module "sap/ui/suite/TaskCircle" {
|
|
|
383
383
|
/**
|
|
384
384
|
* Describes the settings that can be provided to the TaskCircle constructor.
|
|
385
385
|
*
|
|
386
|
-
* @deprecated
|
|
387
|
-
* known
|
|
388
|
-
* @experimental
|
|
386
|
+
* @deprecated As of version 1.108. there's no replacement for this functionality as no active use cases
|
|
387
|
+
* are known
|
|
388
|
+
* @experimental As of version 1.2. The API may change. Use with care.
|
|
389
389
|
*/
|
|
390
390
|
export interface $TaskCircleSettings extends $ControlSettings {
|
|
391
391
|
/**
|
|
@@ -457,9 +457,9 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
|
457
457
|
* This control shows a vertical progress bar in dependency of the given percentage. Only values between
|
|
458
458
|
* 0 and 100 are valid.
|
|
459
459
|
*
|
|
460
|
-
* @deprecated
|
|
461
|
-
* known
|
|
462
|
-
* @experimental
|
|
460
|
+
* @deprecated As of version 1.108. there's no replacement for this functionality as no active use cases
|
|
461
|
+
* are known
|
|
462
|
+
* @experimental As of version 1.2. The API may change. Use with care.
|
|
463
463
|
*/
|
|
464
464
|
export default class VerticalProgressIndicator extends Control {
|
|
465
465
|
/**
|
|
@@ -701,9 +701,9 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
|
|
|
701
701
|
/**
|
|
702
702
|
* Describes the settings that can be provided to the VerticalProgressIndicator constructor.
|
|
703
703
|
*
|
|
704
|
-
* @deprecated
|
|
705
|
-
* known
|
|
706
|
-
* @experimental
|
|
704
|
+
* @deprecated As of version 1.108. there's no replacement for this functionality as no active use cases
|
|
705
|
+
* are known
|
|
706
|
+
* @experimental As of version 1.2. The API may change. Use with care.
|
|
707
707
|
*/
|
|
708
708
|
export interface $VerticalProgressIndicatorSettings extends $ControlSettings {
|
|
709
709
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.133.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/support/library" {
|
|
4
4
|
/**
|
|
@@ -166,7 +166,7 @@ declare module "sap/ui/support/library" {
|
|
|
166
166
|
/**
|
|
167
167
|
* Preset to find usages of deprecated controls, properties, aggregations and others.
|
|
168
168
|
*
|
|
169
|
-
* @experimental
|
|
169
|
+
* @experimental As of version 1.120.
|
|
170
170
|
*/
|
|
171
171
|
Deprecations = "undefined",
|
|
172
172
|
}
|