@sapui5/ts-types 1.96.26 → 1.96.28
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 +2 -2
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/{sap.fe.macros.d.ts → sap.fe.macros-1.96.22-d.ts} +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder-1.96.22-d.ts +3 -0
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.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.gantt.d.ts +8 -2
- package/types/sap.m.d.ts +1 -1
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +37 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.sac.grid.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 +2 -2
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.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 +1 -1
- package/types/sap.ui.richtexteditor.d.ts +184 -60
- 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 +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- 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.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.placeholder.d.ts +0 -3
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
/// <reference path="./sap.esh.search.ui.d.ts"/>
|
|
36
36
|
/// <reference path="./sap.fe.common.d.ts"/>
|
|
37
37
|
/// <reference path="./sap.fe.core.d.ts"/>
|
|
38
|
-
/// <reference path="./sap.fe.macros.d.ts"/>
|
|
38
|
+
/// <reference path="./sap.fe.macros-1.96.22-d.ts"/>
|
|
39
39
|
/// <reference path="./sap.fe.navigation.d.ts"/>
|
|
40
|
-
/// <reference path="./sap.fe.placeholder.d.ts"/>
|
|
40
|
+
/// <reference path="./sap.fe.placeholder-1.96.22-d.ts"/>
|
|
41
41
|
/// <reference path="./sap.fe.plugins.d.ts"/>
|
|
42
42
|
/// <reference path="./sap.fe.semantics.d.ts"/>
|
|
43
43
|
/// <reference path="./sap.fe.templates.d.ts"/>
|
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.16
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -32829,7 +32829,13 @@ declare namespace sap {
|
|
|
32829
32829
|
/**
|
|
32830
32830
|
* Opens the print dialog.
|
|
32831
32831
|
*/
|
|
32832
|
-
open(
|
|
32832
|
+
open(
|
|
32833
|
+
/**
|
|
32834
|
+
* Optional function which takes cloned gantt chart's table for modification. Applications can loop through
|
|
32835
|
+
* the table columns and update certain properties like maxLines to overcome html2canvas limitations.
|
|
32836
|
+
*/
|
|
32837
|
+
fnUpdateTable: Function
|
|
32838
|
+
): Promise<any>;
|
|
32833
32839
|
/**
|
|
32834
32840
|
* Sets the Gantt chart to be exported as PDF.
|
|
32835
32841
|
*/
|
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.26
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -53,6 +53,13 @@ declare namespace sap {
|
|
|
53
53
|
*/
|
|
54
54
|
keepCameraScan?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
55
55
|
|
|
56
|
+
/**
|
|
57
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
58
|
+
*/
|
|
59
|
+
disableBarcodeInputDialog?:
|
|
60
|
+
| boolean
|
|
61
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
62
|
+
|
|
56
63
|
/**
|
|
57
64
|
* Event is fired when the scanning is finished or cancelled
|
|
58
65
|
*/
|
|
@@ -180,6 +187,7 @@ declare namespace sap {
|
|
|
180
187
|
* true,
|
|
181
188
|
* 30,
|
|
182
189
|
* 1,
|
|
190
|
+
* false,
|
|
183
191
|
* false
|
|
184
192
|
* );
|
|
185
193
|
* });
|
|
@@ -217,7 +225,11 @@ declare namespace sap {
|
|
|
217
225
|
/**
|
|
218
226
|
* Flag, which defines whether the camera should be used for scanning in Zebra Enterprise Browser.
|
|
219
227
|
*/
|
|
220
|
-
keepCameraScan?: boolean
|
|
228
|
+
keepCameraScan?: boolean,
|
|
229
|
+
/**
|
|
230
|
+
* Flag, which defines whether the Barcode input dialog should be shown.
|
|
231
|
+
*/
|
|
232
|
+
disableBarcodeInputDialog?: boolean
|
|
221
233
|
): void;
|
|
222
234
|
/**
|
|
223
235
|
* Set the configs of the control Barcode Scanner.
|
|
@@ -543,6 +555,14 @@ declare namespace sap {
|
|
|
543
555
|
* Defines the barcode input dialog title. If unset, a predefined title will be used.
|
|
544
556
|
*/
|
|
545
557
|
getDialogTitle(): string;
|
|
558
|
+
/**
|
|
559
|
+
* Gets current value of property {@link #getDisableBarcodeInputDialog disableBarcodeInputDialog}.
|
|
560
|
+
*
|
|
561
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
562
|
+
*
|
|
563
|
+
* Default value is `false`.
|
|
564
|
+
*/
|
|
565
|
+
getDisableBarcodeInputDialog(): boolean;
|
|
546
566
|
/**
|
|
547
567
|
* Gets current value of property {@link #getFrameRate frameRate}.
|
|
548
568
|
*
|
|
@@ -608,6 +628,21 @@ declare namespace sap {
|
|
|
608
628
|
*/
|
|
609
629
|
sDialogTitle?: string
|
|
610
630
|
): this;
|
|
631
|
+
/**
|
|
632
|
+
* Sets a new value for property {@link #getDisableBarcodeInputDialog disableBarcodeInputDialog}.
|
|
633
|
+
*
|
|
634
|
+
* If the value is true, the Barcode input dialog should be hidden.
|
|
635
|
+
*
|
|
636
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
637
|
+
*
|
|
638
|
+
* Default value is `false`.
|
|
639
|
+
*/
|
|
640
|
+
setDisableBarcodeInputDialog(
|
|
641
|
+
/**
|
|
642
|
+
* New value for property `disableBarcodeInputDialog`
|
|
643
|
+
*/
|
|
644
|
+
bDisableBarcodeInputDialog?: boolean
|
|
645
|
+
): this;
|
|
611
646
|
/**
|
|
612
647
|
* Sets a new value for property {@link #getFrameRate frameRate}.
|
|
613
648
|
*
|
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.sac.grid.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.26
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -15957,7 +15957,7 @@ declare namespace sap {
|
|
|
15957
15957
|
*/
|
|
15958
15958
|
suspendSelection(): void;
|
|
15959
15959
|
/**
|
|
15960
|
-
*
|
|
15960
|
+
* Verifies if all mandatory filters or parameters have values.
|
|
15961
15961
|
*/
|
|
15962
15962
|
validateMandatoryFields(): boolean;
|
|
15963
15963
|
/**
|
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.26
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -180,7 +180,7 @@ declare namespace sap {
|
|
|
180
180
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
181
181
|
* following fields:
|
|
182
182
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
183
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.
|
|
183
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.26")
|
|
184
184
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
185
185
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
186
186
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -266,7 +266,7 @@ declare namespace sap {
|
|
|
266
266
|
* columns: aColumns,
|
|
267
267
|
* context: {
|
|
268
268
|
* application: 'Debug Test Application',
|
|
269
|
-
* version: '1.96.
|
|
269
|
+
* version: '1.96.26',
|
|
270
270
|
* title: 'Some random title',
|
|
271
271
|
* modifiedBy: 'John Doe',
|
|
272
272
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
// For Library Version: 1.96.
|
|
1
|
+
// For Library Version: 1.96.26
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
5
|
-
/**
|
|
6
|
-
* A rich text editor (RTE) control. Requires installation of an additional rich text editor library.
|
|
7
|
-
*/
|
|
8
5
|
namespace richtexteditor {
|
|
9
6
|
/**
|
|
10
7
|
* @SINCE 1.50
|
|
@@ -40,7 +37,8 @@ declare namespace sap {
|
|
|
40
37
|
|
|
41
38
|
/**
|
|
42
39
|
* Height of RichTextEditor control in CSS units. **Note:** If the height property results in a value smaller
|
|
43
|
-
* than 200px, the minimum height of 200px will be applied.
|
|
40
|
+
* than 200px, the minimum height of 200px will be applied. **Note:** If the "autoresize" TinyMCE plugin
|
|
41
|
+
* is used, the height property is not taken into account.
|
|
44
42
|
*/
|
|
45
43
|
height?:
|
|
46
44
|
| sap.ui.core.CSSSize
|
|
@@ -53,9 +51,15 @@ declare namespace sap {
|
|
|
53
51
|
* that may be introduced by other groups (hence this is not an enumeration).
|
|
54
52
|
*
|
|
55
53
|
* **Notes:**
|
|
56
|
-
* - TinyMCE version 3 is no longer supported and cannot be used. If you set the property to TinyMCE,
|
|
57
|
-
* it will load TinyMCE version 4.
|
|
58
54
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
55
|
+
* - Usage of internal TinyMCE APIs is not recommended, since it might lead to issues upon TinyMCE version
|
|
56
|
+
* update.
|
|
57
|
+
* - TinyMCE version 3 and 4 are no longer supported and cannot be used.
|
|
58
|
+
* - TinyMCE 4 is out of support and by using it, application developers are accepting all the risks comming
|
|
59
|
+
* from that fact. In addition TinyMCE 4 will be removed in future releases.
|
|
60
|
+
* - TinyMCE 5 will be removed in future releases.
|
|
61
|
+
* - Have in mind when choosing a specific TinyMCE version that there might be differences in the support
|
|
62
|
+
* rules compared to UI5, therefore we might be forced to remove any TinyMCE version.
|
|
59
63
|
*/
|
|
60
64
|
editorType?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
61
65
|
|
|
@@ -75,7 +79,9 @@ declare namespace sap {
|
|
|
75
79
|
|
|
76
80
|
/**
|
|
77
81
|
* Determines whether the toolbar button group containing commands like Bold, Italic, Underline and Strikethrough
|
|
78
|
-
* is available. Changing this after the initial rendering will result in some visible redrawing.
|
|
82
|
+
* is available. Changing this after the initial rendering will result in some visible redrawing. Note:
|
|
83
|
+
* This property will not be synchronized with group configuration provided via the buttonGroups property
|
|
84
|
+
* or when groups are added on a later stage.
|
|
79
85
|
*/
|
|
80
86
|
showGroupFontStyle?:
|
|
81
87
|
| boolean
|
|
@@ -83,7 +89,9 @@ declare namespace sap {
|
|
|
83
89
|
|
|
84
90
|
/**
|
|
85
91
|
* Determines whether the toolbar button group containing text alignment commands is available. Changing
|
|
86
|
-
* this after the initial rendering will result in some visible redrawing.
|
|
92
|
+
* this after the initial rendering will result in some visible redrawing. Note: This property will not
|
|
93
|
+
* be synchronized with group configuration provided via the buttonGroups property or when groups are added
|
|
94
|
+
* on a later stage.
|
|
87
95
|
*/
|
|
88
96
|
showGroupTextAlign?:
|
|
89
97
|
| boolean
|
|
@@ -91,7 +99,9 @@ declare namespace sap {
|
|
|
91
99
|
|
|
92
100
|
/**
|
|
93
101
|
* Determines whether the toolbar button group containing commands like Bullets and Indentation is available.
|
|
94
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
102
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
103
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
104
|
+
* are added on a later stage.
|
|
95
105
|
*/
|
|
96
106
|
showGroupStructure?:
|
|
97
107
|
| boolean
|
|
@@ -99,13 +109,17 @@ declare namespace sap {
|
|
|
99
109
|
|
|
100
110
|
/**
|
|
101
111
|
* Determines whether the toolbar button group containing commands like Font, Font Size and Colors is available.
|
|
102
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
112
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
113
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
114
|
+
* are added on a later stage.
|
|
103
115
|
*/
|
|
104
116
|
showGroupFont?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
105
117
|
|
|
106
118
|
/**
|
|
107
119
|
* Determines whether the toolbar button group containing commands like Cut, Copy and Paste is available.
|
|
108
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
120
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
121
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
122
|
+
* are added on a later stage.
|
|
109
123
|
*/
|
|
110
124
|
showGroupClipboard?:
|
|
111
125
|
| boolean
|
|
@@ -113,7 +127,9 @@ declare namespace sap {
|
|
|
113
127
|
|
|
114
128
|
/**
|
|
115
129
|
* Determines whether the toolbar button group containing commands like Insert Image and Insert Smiley is
|
|
116
|
-
* available. Changing this after the initial rendering will result in some visible redrawing.
|
|
130
|
+
* available. Changing this after the initial rendering will result in some visible redrawing. Note: This
|
|
131
|
+
* property will not be synchronized with group configuration provided via the buttonGroups property or
|
|
132
|
+
* when groups are added on a later stage.
|
|
117
133
|
*/
|
|
118
134
|
showGroupInsert?:
|
|
119
135
|
| boolean
|
|
@@ -121,13 +137,17 @@ declare namespace sap {
|
|
|
121
137
|
|
|
122
138
|
/**
|
|
123
139
|
* Determines whether the toolbar button group containing commands like Create Link and Remove Link is available.
|
|
124
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
140
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
141
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
142
|
+
* are added on a later stage.
|
|
125
143
|
*/
|
|
126
144
|
showGroupLink?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
127
145
|
|
|
128
146
|
/**
|
|
129
147
|
* Determines whether the toolbar button group containing commands like Undo and Redo is available. Changing
|
|
130
|
-
* this after the initial rendering will result in some visible redrawing.
|
|
148
|
+
* this after the initial rendering will result in some visible redrawing. Note: This property will not
|
|
149
|
+
* be synchronized with group configuration provided via the buttonGroups property or when groups are added
|
|
150
|
+
* on a later stage.
|
|
131
151
|
*/
|
|
132
152
|
showGroupUndo?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
133
153
|
|
|
@@ -156,6 +176,8 @@ declare namespace sap {
|
|
|
156
176
|
plugins?: object[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
157
177
|
|
|
158
178
|
/**
|
|
179
|
+
* @deprecated (since 1.96.27) - This property became obsolete after the deprecation of TinyMCE v3.
|
|
180
|
+
*
|
|
159
181
|
* Determines whether or not to use the legacy theme for the toolbar buttons. If this is set to false, the
|
|
160
182
|
* default theme for the editor will be used (which might change slightly with every update). The legacy
|
|
161
183
|
* theme has the disadvantage that not all functionality has its own icon, so using non default buttons
|
|
@@ -171,7 +193,7 @@ declare namespace sap {
|
|
|
171
193
|
* should be placed, a "priority" and whether the buttons are "visible". See method addButtonGroup() for
|
|
172
194
|
* more details on the structure of the objects in this array. **Note:** `buttonGroups` is a feature from
|
|
173
195
|
* the native editor. Its supported scope with `customToolbar` is limited up to the grouping- the user could
|
|
174
|
-
* turn on/off a whole group, but
|
|
196
|
+
* turn on/off a whole group, but modifying buttons within a group is not possible. In order to achieve
|
|
175
197
|
* that functionality with `customToolbar`, the developer needs to turn the group off and instantiate their
|
|
176
198
|
* own `sap.m.Button`(s) with the desired functionality.
|
|
177
199
|
*/
|
|
@@ -181,7 +203,7 @@ declare namespace sap {
|
|
|
181
203
|
* @SINCE 1.48
|
|
182
204
|
*
|
|
183
205
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
184
|
-
* only when the EditorType is
|
|
206
|
+
* only when the EditorType is TinyMCE5 or TinyMCE6 and sap.m library is loaded. **Note:** The `customToolbar`
|
|
185
207
|
* property will have effect only on initial loading. Changing it during runtime will not affect the initially
|
|
186
208
|
* loaded toolbar.
|
|
187
209
|
*/
|
|
@@ -225,9 +247,11 @@ declare namespace sap {
|
|
|
225
247
|
|
|
226
248
|
/**
|
|
227
249
|
* This event is fired right before the TinyMCE instance is created and can be used to change the settings
|
|
228
|
-
* object that will be given to TinyMCE. The parameter "configuration" is the javascript
|
|
250
|
+
* object that will be given to TinyMCE. The parameter "configuration" is the javascript object that will
|
|
229
251
|
* be given to TinyMCE upon first instantiation. The configuration parameter contains a map that can be
|
|
230
|
-
* changed in the case of TinyMCE.
|
|
252
|
+
* changed in the case of TinyMCE. **Note:** In order to add plugins to the `RichTextEditor` control, you
|
|
253
|
+
* have to use the `addPlugin` method. Adding plugins through the settings object may lead to synchronizing
|
|
254
|
+
* issues between TinyMCE and `RichTextEditor` control.
|
|
231
255
|
*/
|
|
232
256
|
beforeEditorInit?: (oEvent: sap.ui.base.Event) => void;
|
|
233
257
|
}
|
|
@@ -271,6 +295,47 @@ declare namespace sap {
|
|
|
271
295
|
* text area} instead.
|
|
272
296
|
* - Use callbacks to the native third-party API with care, as there may be compatibility issues with
|
|
273
297
|
* later versions.
|
|
298
|
+
*
|
|
299
|
+
* Custom toolbar - adding and removing buttons: With version 1.96.27 it is possible to redefine the button
|
|
300
|
+
* groups configuration in order to show only particular set of buttons in the custom toolbar of the `RichTextEditor`.
|
|
301
|
+
* This is possible in few ways:
|
|
302
|
+
* - By providing the buttons group configurations as a whole by setting the `buttonGroups` property of
|
|
303
|
+
* the control.
|
|
304
|
+
* - By providing individual button group configuration via `addButtonGroup` method.
|
|
305
|
+
*
|
|
306
|
+
* Consider the following when choosing your approach:
|
|
307
|
+
* - Setting `buttonGroups` will override all current custom toolbar button group configurations. This
|
|
308
|
+
* method allows for total redefining of the custom toolbar groups.
|
|
309
|
+
* - Using `addButtonGroups` will try to add non-existing group into the configuration array, however,
|
|
310
|
+
* if such group configuration exists already, a warning will be logged and the new configuration will not
|
|
311
|
+
* be added. In order to replace the existing configuration you will need to remove it first via `removeButtonGroup`.
|
|
312
|
+
*
|
|
313
|
+
*
|
|
314
|
+
* Below is a list of supported groups and buttons, which can be specified in the configuration objects
|
|
315
|
+
* (format is <>: <>):
|
|
316
|
+
* - font-style: bold, italic, underline, strikethrough
|
|
317
|
+
* - font: fontfamily (fontselect in TinyMCE5), fontsize (fontsizeselect in TinyMCE5), forecolor, backcolor
|
|
318
|
+
*
|
|
319
|
+
* - clipboard: cut, copy, paste
|
|
320
|
+
* - structure: bullist, numlist, outdent, indent
|
|
321
|
+
* - undo: undo, redo
|
|
322
|
+
* - insert: image, emoticons
|
|
323
|
+
* - link: link, unlink
|
|
324
|
+
* - text-align: alignleft, aligncenter, alignright, alignjustify Additional supported groups, which
|
|
325
|
+
* can be added only after the editor is loaded (they can not be specified in the above mentioned configuration):
|
|
326
|
+
*
|
|
327
|
+
* - table: table
|
|
328
|
+
* - styleselect: styleselect **Note!** Adding configuration for "text-align" group with any buttons
|
|
329
|
+
* will still render a menu button with all available options inside. Removing/hiding the group can be achieved
|
|
330
|
+
* by invoking `removeButtonGroup` or `setShowGroupTextAlign(false)` depending on the desired result.
|
|
331
|
+
*
|
|
332
|
+
* **Note!** There is no synchronization between the `setShowGroup*` properties and the configuration object
|
|
333
|
+
* that the application can specifying via `buttonGroups` in the constructor or on a later stage. This means
|
|
334
|
+
* that in case new configuration is provided and for particular group the passed object contains property
|
|
335
|
+
* `visible: true`, this group property will be respected no matter if the `RichTextEditor`'s property for
|
|
336
|
+
* this particular group is set to `false`. Example: Providing the following object as group configuration:
|
|
337
|
+
* { name: "font" visible: true } Will make the "font" group visible, no matter that calling `RichTextEditor.getShowGroupFont()`
|
|
338
|
+
* returns `false`.
|
|
274
339
|
*/
|
|
275
340
|
class RichTextEditor extends sap.ui.core.Control {
|
|
276
341
|
/**
|
|
@@ -347,13 +412,15 @@ declare namespace sap {
|
|
|
347
412
|
vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
348
413
|
): this;
|
|
349
414
|
/**
|
|
350
|
-
* Adds a button group to the editor.
|
|
415
|
+
* Adds a button group to the editor. **Note**: Adding already existing group will not do anything. If a
|
|
416
|
+
* button group needs to be changed, it first needs to be removed and then added by providing its name or
|
|
417
|
+
* map object, containing its desired configuration.
|
|
351
418
|
*/
|
|
352
419
|
addButtonGroup(
|
|
353
420
|
/**
|
|
354
421
|
* Name/ID of a single button or object containing the group information
|
|
355
422
|
*/
|
|
356
|
-
|
|
423
|
+
vGroup?:
|
|
357
424
|
| {
|
|
358
425
|
/**
|
|
359
426
|
* Array of name/IDs of the buttons in the group
|
|
@@ -382,7 +449,7 @@ declare namespace sap {
|
|
|
382
449
|
customToolbarPriority?: int;
|
|
383
450
|
}
|
|
384
451
|
| string
|
|
385
|
-
):
|
|
452
|
+
): sap.ui.richtexteditor.RichTextEditor;
|
|
386
453
|
/**
|
|
387
454
|
* @SINCE 1.48
|
|
388
455
|
*
|
|
@@ -402,7 +469,7 @@ declare namespace sap {
|
|
|
402
469
|
* The plugin ID/name or an object with property "name", containing the ID/name of the plugin
|
|
403
470
|
*/
|
|
404
471
|
mPlugin?: object | string
|
|
405
|
-
):
|
|
472
|
+
): sap.ui.richtexteditor.RichTextEditor;
|
|
406
473
|
/**
|
|
407
474
|
* Attaches event handler `fnFunction` to the {@link #event:beforeEditorInit beforeEditorInit} event of
|
|
408
475
|
* this `sap.ui.richtexteditor.RichTextEditor`.
|
|
@@ -411,9 +478,11 @@ declare namespace sap {
|
|
|
411
478
|
* otherwise it will be bound to this `sap.ui.richtexteditor.RichTextEditor` itself.
|
|
412
479
|
*
|
|
413
480
|
* This event is fired right before the TinyMCE instance is created and can be used to change the settings
|
|
414
|
-
* object that will be given to TinyMCE. The parameter "configuration" is the javascript
|
|
481
|
+
* object that will be given to TinyMCE. The parameter "configuration" is the javascript object that will
|
|
415
482
|
* be given to TinyMCE upon first instantiation. The configuration parameter contains a map that can be
|
|
416
|
-
* changed in the case of TinyMCE.
|
|
483
|
+
* changed in the case of TinyMCE. **Note:** In order to add plugins to the `RichTextEditor` control, you
|
|
484
|
+
* have to use the `addPlugin` method. Adding plugins through the settings object may lead to synchronizing
|
|
485
|
+
* issues between TinyMCE and `RichTextEditor` control.
|
|
417
486
|
*/
|
|
418
487
|
attachBeforeEditorInit(
|
|
419
488
|
/**
|
|
@@ -439,9 +508,11 @@ declare namespace sap {
|
|
|
439
508
|
* otherwise it will be bound to this `sap.ui.richtexteditor.RichTextEditor` itself.
|
|
440
509
|
*
|
|
441
510
|
* This event is fired right before the TinyMCE instance is created and can be used to change the settings
|
|
442
|
-
* object that will be given to TinyMCE. The parameter "configuration" is the javascript
|
|
511
|
+
* object that will be given to TinyMCE. The parameter "configuration" is the javascript object that will
|
|
443
512
|
* be given to TinyMCE upon first instantiation. The configuration parameter contains a map that can be
|
|
444
|
-
* changed in the case of TinyMCE.
|
|
513
|
+
* changed in the case of TinyMCE. **Note:** In order to add plugins to the `RichTextEditor` control, you
|
|
514
|
+
* have to use the `addPlugin` method. Adding plugins through the settings object may lead to synchronizing
|
|
515
|
+
* issues between TinyMCE and `RichTextEditor` control.
|
|
445
516
|
*/
|
|
446
517
|
attachBeforeEditorInit(
|
|
447
518
|
/**
|
|
@@ -713,7 +784,7 @@ declare namespace sap {
|
|
|
713
784
|
* should be placed, a "priority" and whether the buttons are "visible". See method addButtonGroup() for
|
|
714
785
|
* more details on the structure of the objects in this array. **Note:** `buttonGroups` is a feature from
|
|
715
786
|
* the native editor. Its supported scope with `customToolbar` is limited up to the grouping- the user could
|
|
716
|
-
* turn on/off a whole group, but
|
|
787
|
+
* turn on/off a whole group, but modifying buttons within a group is not possible. In order to achieve
|
|
717
788
|
* that functionality with `customToolbar`, the developer needs to turn the group off and instantiate their
|
|
718
789
|
* own `sap.m.Button`(s) with the desired functionality.
|
|
719
790
|
*
|
|
@@ -736,7 +807,7 @@ declare namespace sap {
|
|
|
736
807
|
* Gets current value of property {@link #getCustomToolbar customToolbar}.
|
|
737
808
|
*
|
|
738
809
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
739
|
-
* only when the EditorType is
|
|
810
|
+
* only when the EditorType is TinyMCE5 or TinyMCE6 and sap.m library is loaded. **Note:** The `customToolbar`
|
|
740
811
|
* property will have effect only on initial loading. Changing it during runtime will not affect the initially
|
|
741
812
|
* loaded toolbar.
|
|
742
813
|
*
|
|
@@ -772,18 +843,25 @@ declare namespace sap {
|
|
|
772
843
|
* that may be introduced by other groups (hence this is not an enumeration).
|
|
773
844
|
*
|
|
774
845
|
* **Notes:**
|
|
775
|
-
* - TinyMCE version 3 is no longer supported and cannot be used. If you set the property to TinyMCE,
|
|
776
|
-
* it will load TinyMCE version 4.
|
|
777
846
|
* - Any attempts to set this property after the first rendering will not have any effect.
|
|
847
|
+
* - Usage of internal TinyMCE APIs is not recommended, since it might lead to issues upon TinyMCE version
|
|
848
|
+
* update.
|
|
849
|
+
* - TinyMCE version 3 and 4 are no longer supported and cannot be used.
|
|
850
|
+
* - TinyMCE 4 is out of support and by using it, application developers are accepting all the risks comming
|
|
851
|
+
* from that fact. In addition TinyMCE 4 will be removed in future releases.
|
|
852
|
+
* - TinyMCE 5 will be removed in future releases.
|
|
853
|
+
* - Have in mind when choosing a specific TinyMCE version that there might be differences in the support
|
|
854
|
+
* rules compared to UI5, therefore we might be forced to remove any TinyMCE version.
|
|
778
855
|
*
|
|
779
|
-
* Default value is `'
|
|
856
|
+
* Default value is `'TinyMCE'`.
|
|
780
857
|
*/
|
|
781
858
|
getEditorType(): string;
|
|
782
859
|
/**
|
|
783
860
|
* Gets current value of property {@link #getHeight height}.
|
|
784
861
|
*
|
|
785
862
|
* Height of RichTextEditor control in CSS units. **Note:** If the height property results in a value smaller
|
|
786
|
-
* than 200px, the minimum height of 200px will be applied.
|
|
863
|
+
* than 200px, the minimum height of 200px will be applied. **Note:** If the "autoresize" TinyMCE plugin
|
|
864
|
+
* is used, the height property is not taken into account.
|
|
787
865
|
*/
|
|
788
866
|
getHeight(): sap.ui.core.CSSSize;
|
|
789
867
|
/**
|
|
@@ -823,7 +901,9 @@ declare namespace sap {
|
|
|
823
901
|
* Gets current value of property {@link #getShowGroupClipboard showGroupClipboard}.
|
|
824
902
|
*
|
|
825
903
|
* Determines whether the toolbar button group containing commands like Cut, Copy and Paste is available.
|
|
826
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
904
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
905
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
906
|
+
* are added on a later stage.
|
|
827
907
|
*
|
|
828
908
|
* Default value is `true`.
|
|
829
909
|
*/
|
|
@@ -832,7 +912,9 @@ declare namespace sap {
|
|
|
832
912
|
* Gets current value of property {@link #getShowGroupFont showGroupFont}.
|
|
833
913
|
*
|
|
834
914
|
* Determines whether the toolbar button group containing commands like Font, Font Size and Colors is available.
|
|
835
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
915
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
916
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
917
|
+
* are added on a later stage.
|
|
836
918
|
*
|
|
837
919
|
* Default value is `false`.
|
|
838
920
|
*/
|
|
@@ -841,7 +923,9 @@ declare namespace sap {
|
|
|
841
923
|
* Gets current value of property {@link #getShowGroupFontStyle showGroupFontStyle}.
|
|
842
924
|
*
|
|
843
925
|
* Determines whether the toolbar button group containing commands like Bold, Italic, Underline and Strikethrough
|
|
844
|
-
* is available. Changing this after the initial rendering will result in some visible redrawing.
|
|
926
|
+
* is available. Changing this after the initial rendering will result in some visible redrawing. Note:
|
|
927
|
+
* This property will not be synchronized with group configuration provided via the buttonGroups property
|
|
928
|
+
* or when groups are added on a later stage.
|
|
845
929
|
*
|
|
846
930
|
* Default value is `true`.
|
|
847
931
|
*/
|
|
@@ -850,7 +934,9 @@ declare namespace sap {
|
|
|
850
934
|
* Gets current value of property {@link #getShowGroupInsert showGroupInsert}.
|
|
851
935
|
*
|
|
852
936
|
* Determines whether the toolbar button group containing commands like Insert Image and Insert Smiley is
|
|
853
|
-
* available. Changing this after the initial rendering will result in some visible redrawing.
|
|
937
|
+
* available. Changing this after the initial rendering will result in some visible redrawing. Note: This
|
|
938
|
+
* property will not be synchronized with group configuration provided via the buttonGroups property or
|
|
939
|
+
* when groups are added on a later stage.
|
|
854
940
|
*
|
|
855
941
|
* Default value is `false`.
|
|
856
942
|
*/
|
|
@@ -859,7 +945,9 @@ declare namespace sap {
|
|
|
859
945
|
* Gets current value of property {@link #getShowGroupLink showGroupLink}.
|
|
860
946
|
*
|
|
861
947
|
* Determines whether the toolbar button group containing commands like Create Link and Remove Link is available.
|
|
862
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
948
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
949
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
950
|
+
* are added on a later stage.
|
|
863
951
|
*
|
|
864
952
|
* Default value is `false`.
|
|
865
953
|
*/
|
|
@@ -868,7 +956,9 @@ declare namespace sap {
|
|
|
868
956
|
* Gets current value of property {@link #getShowGroupStructure showGroupStructure}.
|
|
869
957
|
*
|
|
870
958
|
* Determines whether the toolbar button group containing commands like Bullets and Indentation is available.
|
|
871
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
959
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
960
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
961
|
+
* are added on a later stage.
|
|
872
962
|
*
|
|
873
963
|
* Default value is `true`.
|
|
874
964
|
*/
|
|
@@ -877,7 +967,9 @@ declare namespace sap {
|
|
|
877
967
|
* Gets current value of property {@link #getShowGroupTextAlign showGroupTextAlign}.
|
|
878
968
|
*
|
|
879
969
|
* Determines whether the toolbar button group containing text alignment commands is available. Changing
|
|
880
|
-
* this after the initial rendering will result in some visible redrawing.
|
|
970
|
+
* this after the initial rendering will result in some visible redrawing. Note: This property will not
|
|
971
|
+
* be synchronized with group configuration provided via the buttonGroups property or when groups are added
|
|
972
|
+
* on a later stage.
|
|
881
973
|
*
|
|
882
974
|
* Default value is `true`.
|
|
883
975
|
*/
|
|
@@ -886,7 +978,9 @@ declare namespace sap {
|
|
|
886
978
|
* Gets current value of property {@link #getShowGroupUndo showGroupUndo}.
|
|
887
979
|
*
|
|
888
980
|
* Determines whether the toolbar button group containing commands like Undo and Redo is available. Changing
|
|
889
|
-
* this after the initial rendering will result in some visible redrawing.
|
|
981
|
+
* this after the initial rendering will result in some visible redrawing. Note: This property will not
|
|
982
|
+
* be synchronized with group configuration provided via the buttonGroups property or when groups are added
|
|
983
|
+
* on a later stage.
|
|
890
984
|
*
|
|
891
985
|
* Default value is `false`.
|
|
892
986
|
*/
|
|
@@ -900,6 +994,8 @@ declare namespace sap {
|
|
|
900
994
|
*/
|
|
901
995
|
getTextDirection(): sap.ui.core.TextDirection;
|
|
902
996
|
/**
|
|
997
|
+
* @deprecated (since 1.96.27) - This property became obsolete after the deprecation of TinyMCE v3.
|
|
998
|
+
*
|
|
903
999
|
* Gets current value of property {@link #getUseLegacyTheme useLegacyTheme}.
|
|
904
1000
|
*
|
|
905
1001
|
* Determines whether or not to use the legacy theme for the toolbar buttons. If this is set to false, the
|
|
@@ -990,6 +1086,15 @@ declare namespace sap {
|
|
|
990
1086
|
*/
|
|
991
1087
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
992
1088
|
): sap.ui.core.ID;
|
|
1089
|
+
/**
|
|
1090
|
+
* Removes a button group from the editor.
|
|
1091
|
+
*/
|
|
1092
|
+
removeButtonGroup(
|
|
1093
|
+
/**
|
|
1094
|
+
* The name of the group to be removed.
|
|
1095
|
+
*/
|
|
1096
|
+
sGroupName?: string
|
|
1097
|
+
): sap.ui.richtexteditor.RichTextEditor;
|
|
993
1098
|
/**
|
|
994
1099
|
* @SINCE 1.48
|
|
995
1100
|
*
|
|
@@ -1009,7 +1114,7 @@ declare namespace sap {
|
|
|
1009
1114
|
* The name/ID of the plugin to remove
|
|
1010
1115
|
*/
|
|
1011
1116
|
sPluginName?: string
|
|
1012
|
-
):
|
|
1117
|
+
): sap.ui.richtexteditor.RichTextEditor;
|
|
1013
1118
|
/**
|
|
1014
1119
|
* Sets the button groups to the editor.
|
|
1015
1120
|
*/
|
|
@@ -1018,14 +1123,14 @@ declare namespace sap {
|
|
|
1018
1123
|
* Array of names or objects containing the group information
|
|
1019
1124
|
*/
|
|
1020
1125
|
aGroups?: any[]
|
|
1021
|
-
):
|
|
1126
|
+
): sap.ui.richtexteditor.RichTextEditor;
|
|
1022
1127
|
/**
|
|
1023
1128
|
* @SINCE 1.48
|
|
1024
1129
|
*
|
|
1025
1130
|
* Sets a new value for property {@link #getCustomToolbar customToolbar}.
|
|
1026
1131
|
*
|
|
1027
1132
|
* Determines whether a Fiori Toolbar is used instead of the TinyMCE default toolbar one. It is applied
|
|
1028
|
-
* only when the EditorType is
|
|
1133
|
+
* only when the EditorType is TinyMCE5 or TinyMCE6 and sap.m library is loaded. **Note:** The `customToolbar`
|
|
1029
1134
|
* property will have effect only on initial loading. Changing it during runtime will not affect the initially
|
|
1030
1135
|
* loaded toolbar.
|
|
1031
1136
|
*
|
|
@@ -1079,15 +1184,16 @@ declare namespace sap {
|
|
|
1079
1184
|
*/
|
|
1080
1185
|
setEditorType(
|
|
1081
1186
|
/**
|
|
1082
|
-
* Which editor type to be used (currently only TinyMCE 4 and
|
|
1187
|
+
* Which editor type to be used (currently only TinyMCE 4, 5 and 6)
|
|
1083
1188
|
*/
|
|
1084
1189
|
sEditorType?: string
|
|
1085
|
-
):
|
|
1190
|
+
): sap.ui.richtexteditor.RichTextEditor;
|
|
1086
1191
|
/**
|
|
1087
1192
|
* Sets a new value for property {@link #getHeight height}.
|
|
1088
1193
|
*
|
|
1089
1194
|
* Height of RichTextEditor control in CSS units. **Note:** If the height property results in a value smaller
|
|
1090
|
-
* than 200px, the minimum height of 200px will be applied.
|
|
1195
|
+
* than 200px, the minimum height of 200px will be applied. **Note:** If the "autoresize" TinyMCE plugin
|
|
1196
|
+
* is used, the height property is not taken into account.
|
|
1091
1197
|
*
|
|
1092
1198
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1093
1199
|
*/
|
|
@@ -1105,7 +1211,7 @@ declare namespace sap {
|
|
|
1105
1211
|
* Array of names or objects containing the plugin information
|
|
1106
1212
|
*/
|
|
1107
1213
|
aPlugins?: any[]
|
|
1108
|
-
):
|
|
1214
|
+
): sap.ui.richtexteditor.RichTextEditor;
|
|
1109
1215
|
/**
|
|
1110
1216
|
* Sets a new value for property {@link #getRequired required}.
|
|
1111
1217
|
*
|
|
@@ -1142,7 +1248,9 @@ declare namespace sap {
|
|
|
1142
1248
|
* Sets a new value for property {@link #getShowGroupClipboard showGroupClipboard}.
|
|
1143
1249
|
*
|
|
1144
1250
|
* Determines whether the toolbar button group containing commands like Cut, Copy and Paste is available.
|
|
1145
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
1251
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
1252
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
1253
|
+
* are added on a later stage.
|
|
1146
1254
|
*
|
|
1147
1255
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1148
1256
|
*
|
|
@@ -1158,7 +1266,9 @@ declare namespace sap {
|
|
|
1158
1266
|
* Sets a new value for property {@link #getShowGroupFont showGroupFont}.
|
|
1159
1267
|
*
|
|
1160
1268
|
* Determines whether the toolbar button group containing commands like Font, Font Size and Colors is available.
|
|
1161
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
1269
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
1270
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
1271
|
+
* are added on a later stage.
|
|
1162
1272
|
*
|
|
1163
1273
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1164
1274
|
*
|
|
@@ -1174,7 +1284,9 @@ declare namespace sap {
|
|
|
1174
1284
|
* Sets a new value for property {@link #getShowGroupFontStyle showGroupFontStyle}.
|
|
1175
1285
|
*
|
|
1176
1286
|
* Determines whether the toolbar button group containing commands like Bold, Italic, Underline and Strikethrough
|
|
1177
|
-
* is available. Changing this after the initial rendering will result in some visible redrawing.
|
|
1287
|
+
* is available. Changing this after the initial rendering will result in some visible redrawing. Note:
|
|
1288
|
+
* This property will not be synchronized with group configuration provided via the buttonGroups property
|
|
1289
|
+
* or when groups are added on a later stage.
|
|
1178
1290
|
*
|
|
1179
1291
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1180
1292
|
*
|
|
@@ -1190,7 +1302,9 @@ declare namespace sap {
|
|
|
1190
1302
|
* Sets a new value for property {@link #getShowGroupInsert showGroupInsert}.
|
|
1191
1303
|
*
|
|
1192
1304
|
* Determines whether the toolbar button group containing commands like Insert Image and Insert Smiley is
|
|
1193
|
-
* available. Changing this after the initial rendering will result in some visible redrawing.
|
|
1305
|
+
* available. Changing this after the initial rendering will result in some visible redrawing. Note: This
|
|
1306
|
+
* property will not be synchronized with group configuration provided via the buttonGroups property or
|
|
1307
|
+
* when groups are added on a later stage.
|
|
1194
1308
|
*
|
|
1195
1309
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1196
1310
|
*
|
|
@@ -1206,7 +1320,9 @@ declare namespace sap {
|
|
|
1206
1320
|
* Sets a new value for property {@link #getShowGroupLink showGroupLink}.
|
|
1207
1321
|
*
|
|
1208
1322
|
* Determines whether the toolbar button group containing commands like Create Link and Remove Link is available.
|
|
1209
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
1323
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
1324
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
1325
|
+
* are added on a later stage.
|
|
1210
1326
|
*
|
|
1211
1327
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1212
1328
|
*
|
|
@@ -1222,7 +1338,9 @@ declare namespace sap {
|
|
|
1222
1338
|
* Sets a new value for property {@link #getShowGroupStructure showGroupStructure}.
|
|
1223
1339
|
*
|
|
1224
1340
|
* Determines whether the toolbar button group containing commands like Bullets and Indentation is available.
|
|
1225
|
-
* Changing this after the initial rendering will result in some visible redrawing.
|
|
1341
|
+
* Changing this after the initial rendering will result in some visible redrawing. Note: This property
|
|
1342
|
+
* will not be synchronized with group configuration provided via the buttonGroups property or when groups
|
|
1343
|
+
* are added on a later stage.
|
|
1226
1344
|
*
|
|
1227
1345
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1228
1346
|
*
|
|
@@ -1238,7 +1356,9 @@ declare namespace sap {
|
|
|
1238
1356
|
* Sets a new value for property {@link #getShowGroupTextAlign showGroupTextAlign}.
|
|
1239
1357
|
*
|
|
1240
1358
|
* Determines whether the toolbar button group containing text alignment commands is available. Changing
|
|
1241
|
-
* this after the initial rendering will result in some visible redrawing.
|
|
1359
|
+
* this after the initial rendering will result in some visible redrawing. Note: This property will not
|
|
1360
|
+
* be synchronized with group configuration provided via the buttonGroups property or when groups are added
|
|
1361
|
+
* on a later stage.
|
|
1242
1362
|
*
|
|
1243
1363
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1244
1364
|
*
|
|
@@ -1254,7 +1374,9 @@ declare namespace sap {
|
|
|
1254
1374
|
* Sets a new value for property {@link #getShowGroupUndo showGroupUndo}.
|
|
1255
1375
|
*
|
|
1256
1376
|
* Determines whether the toolbar button group containing commands like Undo and Redo is available. Changing
|
|
1257
|
-
* this after the initial rendering will result in some visible redrawing.
|
|
1377
|
+
* this after the initial rendering will result in some visible redrawing. Note: This property will not
|
|
1378
|
+
* be synchronized with group configuration provided via the buttonGroups property or when groups are added
|
|
1379
|
+
* on a later stage.
|
|
1258
1380
|
*
|
|
1259
1381
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1260
1382
|
*
|
|
@@ -1282,6 +1404,8 @@ declare namespace sap {
|
|
|
1282
1404
|
sTextDirection?: sap.ui.core.TextDirection
|
|
1283
1405
|
): this;
|
|
1284
1406
|
/**
|
|
1407
|
+
* @deprecated (since 1.96.27) - This property became obsolete after the deprecation of TinyMCE v3.
|
|
1408
|
+
*
|
|
1285
1409
|
* Sets a new value for property {@link #getUseLegacyTheme useLegacyTheme}.
|
|
1286
1410
|
*
|
|
1287
1411
|
* Determines whether or not to use the legacy theme for the toolbar buttons. If this is set to false, the
|
|
@@ -1355,14 +1479,14 @@ declare namespace sap {
|
|
|
1355
1479
|
* Uses TinyMCE version 4 as editor (default)
|
|
1356
1480
|
*/
|
|
1357
1481
|
TinyMCE = "TinyMCE",
|
|
1358
|
-
/**
|
|
1359
|
-
* Uses TinyMCE version 4 as editor
|
|
1360
|
-
*/
|
|
1361
|
-
TinyMCE4 = "TinyMCE4",
|
|
1362
1482
|
/**
|
|
1363
1483
|
* Uses TinyMCE version 5 as editor
|
|
1364
1484
|
*/
|
|
1365
1485
|
TinyMCE5 = "TinyMCE5",
|
|
1486
|
+
/**
|
|
1487
|
+
* Uses TinyMCE version 6 as editor
|
|
1488
|
+
*/
|
|
1489
|
+
TinyMCE6 = "TinyMCE6",
|
|
1366
1490
|
}
|
|
1367
1491
|
}
|
|
1368
1492
|
}
|
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.96.
|
|
1
|
+
// For Library Version: 1.96.26
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -238,7 +238,7 @@ declare namespace sap {
|
|
|
238
238
|
static getType(): string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
|
-
* @SINCE 1.96.
|
|
241
|
+
* @SINCE 1.96.26
|
|
242
242
|
*
|
|
243
243
|
* Defines the Audiences.
|
|
244
244
|
*/
|
|
@@ -257,7 +257,7 @@ declare namespace sap {
|
|
|
257
257
|
Internal = "Internal",
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
|
-
* @SINCE 1.96.
|
|
260
|
+
* @SINCE 1.96.26
|
|
261
261
|
*
|
|
262
262
|
* Issue Categories.
|
|
263
263
|
*/
|
|
@@ -312,7 +312,7 @@ declare namespace sap {
|
|
|
312
312
|
Usage = "Usage",
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
* @SINCE 1.96.
|
|
315
|
+
* @SINCE 1.96.26
|
|
316
316
|
*
|
|
317
317
|
* Analysis history formats.
|
|
318
318
|
*/
|
|
@@ -327,7 +327,7 @@ declare namespace sap {
|
|
|
327
327
|
String = "String",
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @SINCE 1.96.
|
|
330
|
+
* @SINCE 1.96.26
|
|
331
331
|
*
|
|
332
332
|
* Defines severity types.
|
|
333
333
|
*/
|
|
@@ -346,7 +346,7 @@ declare namespace sap {
|
|
|
346
346
|
Medium = "Medium",
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
* @SINCE 1.96.
|
|
349
|
+
* @SINCE 1.96.26
|
|
350
350
|
*
|
|
351
351
|
* Contains the available system presets.
|
|
352
352
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED