@openui5/ts-types 1.93.3 → 1.96.2
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.f.d.ts +314 -42
- package/types/sap.m.d.ts +931 -132
- package/types/sap.tnt.d.ts +11 -12
- package/types/sap.ui.codeeditor.d.ts +29 -31
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +873 -376
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.integration.d.ts +420 -15
- package/types/sap.ui.layout.d.ts +19 -1
- package/types/sap.ui.mdc.d.ts +51 -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 +6 -6
- package/types/sap.ui.table.d.ts +8 -5
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +142 -14
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1503 -353
- package/types/sap.ui.webc.main.d.ts +5815 -4373
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.96.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1465,17 +1465,16 @@ declare namespace sap {
|
|
|
1465
1465
|
* The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
|
|
1466
1466
|
* requirement. However, that's not a dark theme.
|
|
1467
1467
|
*
|
|
1468
|
-
* Only the following controls are supported:
|
|
1469
|
-
*
|
|
1470
|
-
*
|
|
1471
|
-
*
|
|
1472
|
-
*
|
|
1473
|
-
*
|
|
1474
|
-
*
|
|
1475
|
-
*
|
|
1476
|
-
*
|
|
1477
|
-
*
|
|
1478
|
-
* Should be used for triggering Mega menu. If there is no Mega menu, use Title (H6) instead.
|
|
1468
|
+
* Only the following controls are supported: Control name Supported
|
|
1469
|
+
* Not supported sap.m.Text Single line text, text truncation Wrapping
|
|
1470
|
+
* sap.m.Title Single line text, text truncation. Consider using title headings
|
|
1471
|
+
* of H4, H5, H6. Wrapping sap.m.Label Single line text, text truncation
|
|
1472
|
+
* Wrapping sap.m.ObjectStatus Labels, semantic colors Indication
|
|
1473
|
+
* colors sap.ui.core.Icon sap.ui.core.IconColor enumeration for both icons
|
|
1474
|
+
* and backgrounds. Interaction state colors sap.m.Button Buttons
|
|
1475
|
+
* in their Back, Default, Transparent and Up types. All four types are over-styled to look as transparent
|
|
1476
|
+
* buttons. - sap.m.MenuButton Emphasized button type. Should be used
|
|
1477
|
+
* for triggering Mega menu. If there is no Mega menu, use Title (H6) instead.
|
|
1479
1478
|
* Default (over-styled as Transparent) and Transparent types are used for standard menu representation.
|
|
1480
1479
|
* - sap.m.Select Default and IconOnly types. IconOnly looks like a button
|
|
1481
1480
|
* while Default looks is like an input. Semantic states sap.m.SearchField
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.96.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -10,12 +10,12 @@ declare namespace sap {
|
|
|
10
10
|
namespace codeeditor {
|
|
11
11
|
interface $CodeEditorSettings extends sap.ui.core.$ControlSettings {
|
|
12
12
|
/**
|
|
13
|
-
* The value displayed in the code editor
|
|
13
|
+
* The value displayed in the code editor.
|
|
14
14
|
*/
|
|
15
15
|
value?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
|
-
* The type of the code in the editor used for syntax highlighting Possible types are: abap, abc, actionscript,
|
|
18
|
+
* The type of the code in the editor used for syntax highlighting. Possible types are: abap, abc, actionscript,
|
|
19
19
|
* ada, apache_conf, applescript, asciidoc, assembly_x86, autohotkey, batchfile, bro, c9search, c_cpp, cirru,
|
|
20
20
|
* clojure, cobol, coffee, coldfusion, csharp, css, curly, d, dart, diff, django, dockerfile, dot, drools,
|
|
21
21
|
* eiffel, ejs, elixir, elm, erlang, forth, fortran, ftl, gcode, gherkin, gitignore, glsl, gobstones, golang,
|
|
@@ -27,12 +27,12 @@ declare namespace sap {
|
|
|
27
27
|
* rst, ruby, rust, sass, scad, scala, scheme, scss, sh, sjs, smarty, snippets, soy_template, space, sql,
|
|
28
28
|
* sqlserver, stylus, svg, swift, swig, tcl, tex, text, textile, toml, tsx, twig, typescript, vala, vbscript,
|
|
29
29
|
* velocity, verilog, vhdl, wollok, xml, xquery, yaml, terraform, slim, redshift, red, puppet, php_laravel_blade,
|
|
30
|
-
* mixal, jssm, fsharp, edifact, csp, cssound_score, cssound_orchestra, cssound_document
|
|
30
|
+
* mixal, jssm, fsharp, edifact, csp, cssound_score, cssound_orchestra, cssound_document
|
|
31
31
|
*/
|
|
32
32
|
type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
|
-
* The width of the code editor
|
|
35
|
+
* The width of the code editor.
|
|
36
36
|
*/
|
|
37
37
|
width?:
|
|
38
38
|
| sap.ui.core.CSSSize
|
|
@@ -47,17 +47,17 @@ declare namespace sap {
|
|
|
47
47
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
48
48
|
|
|
49
49
|
/**
|
|
50
|
-
* Sets whether the code in the editor can be changed by the user
|
|
50
|
+
* Sets whether the code in the editor can be changed by the user.
|
|
51
51
|
*/
|
|
52
52
|
editable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
53
53
|
|
|
54
54
|
/**
|
|
55
|
-
* Sets whether line numbers should be shown
|
|
55
|
+
* Sets whether line numbers should be shown.
|
|
56
56
|
*/
|
|
57
57
|
lineNumbers?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
* Sets whether the code is automatically selected if a value is set
|
|
60
|
+
* Sets whether the code is automatically selected if a value is set.
|
|
61
61
|
*/
|
|
62
62
|
valueSelection?:
|
|
63
63
|
| boolean
|
|
@@ -75,7 +75,7 @@ declare namespace sap {
|
|
|
75
75
|
maxLines?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
76
76
|
|
|
77
77
|
/**
|
|
78
|
-
* Sets the
|
|
78
|
+
* Sets the editor color theme. Possible values are: default, hcb, hcb_bright, hcb_blue, theme-ambiance,
|
|
79
79
|
* chaos, chrome, clouds, clouds_midnight, cobalt, crimson_editor, dawn, dreamweaver, eclipse, github, gob,
|
|
80
80
|
* gruvbox, idle_fingers, iplastic, katzenmilch, kr_theme, kuroir, merbivore, merbivore_soft, mono_industrial,
|
|
81
81
|
* monokai, pastel_on_dark, solarized_dark, solarized_light, sqlserver, terminal, textmate, tomorrow, tomorrow_night,
|
|
@@ -84,7 +84,7 @@ declare namespace sap {
|
|
|
84
84
|
colorTheme?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
* Sets whether to show syntax hints the editor. This flag is only available if line numbers are shown.
|
|
87
|
+
* Sets whether to show syntax hints in the editor. This flag is only available if line numbers are shown.
|
|
88
88
|
*/
|
|
89
89
|
syntaxHints?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
90
90
|
|
|
@@ -103,10 +103,8 @@ declare namespace sap {
|
|
|
103
103
|
* @SINCE 1.46
|
|
104
104
|
*
|
|
105
105
|
* Allows to visualize source code of various types with syntax highlighting, line numbers in editable and
|
|
106
|
-
* read only mode. Use this
|
|
107
|
-
* code. The control currently uses the third-party code editor Ace.
|
|
108
|
-
* CodeEditor won't work within IconTabBar on Internet Explorer. There is a way to achieve the same functionality
|
|
109
|
-
* - an example of IconTabHeader and a CodeEditor can be found in the CodeEditor's samples.
|
|
106
|
+
* read only mode. Use this control in scenarios where the user should be able to inspect and edit source
|
|
107
|
+
* code. The control currently uses the third-party code editor Ace.
|
|
110
108
|
*/
|
|
111
109
|
class CodeEditor extends sap.ui.core.Control {
|
|
112
110
|
/**
|
|
@@ -333,7 +331,7 @@ declare namespace sap {
|
|
|
333
331
|
/**
|
|
334
332
|
* Gets current value of property {@link #getColorTheme colorTheme}.
|
|
335
333
|
*
|
|
336
|
-
* Sets the
|
|
334
|
+
* Sets the editor color theme. Possible values are: default, hcb, hcb_bright, hcb_blue, theme-ambiance,
|
|
337
335
|
* chaos, chrome, clouds, clouds_midnight, cobalt, crimson_editor, dawn, dreamweaver, eclipse, github, gob,
|
|
338
336
|
* gruvbox, idle_fingers, iplastic, katzenmilch, kr_theme, kuroir, merbivore, merbivore_soft, mono_industrial,
|
|
339
337
|
* monokai, pastel_on_dark, solarized_dark, solarized_light, sqlserver, terminal, textmate, tomorrow, tomorrow_night,
|
|
@@ -349,7 +347,7 @@ declare namespace sap {
|
|
|
349
347
|
/**
|
|
350
348
|
* Gets current value of property {@link #getEditable editable}.
|
|
351
349
|
*
|
|
352
|
-
* Sets whether the code in the editor can be changed by the user
|
|
350
|
+
* Sets whether the code in the editor can be changed by the user.
|
|
353
351
|
*
|
|
354
352
|
* Default value is `true`.
|
|
355
353
|
*/
|
|
@@ -366,7 +364,7 @@ declare namespace sap {
|
|
|
366
364
|
/**
|
|
367
365
|
* Gets current value of property {@link #getLineNumbers lineNumbers}.
|
|
368
366
|
*
|
|
369
|
-
* Sets whether line numbers should be shown
|
|
367
|
+
* Sets whether line numbers should be shown.
|
|
370
368
|
*
|
|
371
369
|
* Default value is `true`.
|
|
372
370
|
*/
|
|
@@ -388,7 +386,7 @@ declare namespace sap {
|
|
|
388
386
|
/**
|
|
389
387
|
* Gets current value of property {@link #getSyntaxHints syntaxHints}.
|
|
390
388
|
*
|
|
391
|
-
* Sets whether to show syntax hints the editor. This flag is only available if line numbers are shown.
|
|
389
|
+
* Sets whether to show syntax hints in the editor. This flag is only available if line numbers are shown.
|
|
392
390
|
*
|
|
393
391
|
* Default value is `true`.
|
|
394
392
|
*/
|
|
@@ -396,7 +394,7 @@ declare namespace sap {
|
|
|
396
394
|
/**
|
|
397
395
|
* Gets current value of property {@link #getType type}.
|
|
398
396
|
*
|
|
399
|
-
* The type of the code in the editor used for syntax highlighting Possible types are: abap, abc, actionscript,
|
|
397
|
+
* The type of the code in the editor used for syntax highlighting. Possible types are: abap, abc, actionscript,
|
|
400
398
|
* ada, apache_conf, applescript, asciidoc, assembly_x86, autohotkey, batchfile, bro, c9search, c_cpp, cirru,
|
|
401
399
|
* clojure, cobol, coffee, coldfusion, csharp, css, curly, d, dart, diff, django, dockerfile, dot, drools,
|
|
402
400
|
* eiffel, ejs, elixir, elm, erlang, forth, fortran, ftl, gcode, gherkin, gitignore, glsl, gobstones, golang,
|
|
@@ -408,7 +406,7 @@ declare namespace sap {
|
|
|
408
406
|
* rst, ruby, rust, sass, scad, scala, scheme, scss, sh, sjs, smarty, snippets, soy_template, space, sql,
|
|
409
407
|
* sqlserver, stylus, svg, swift, swig, tcl, tex, text, textile, toml, tsx, twig, typescript, vala, vbscript,
|
|
410
408
|
* velocity, verilog, vhdl, wollok, xml, xquery, yaml, terraform, slim, redshift, red, puppet, php_laravel_blade,
|
|
411
|
-
* mixal, jssm, fsharp, edifact, csp, cssound_score, cssound_orchestra, cssound_document
|
|
409
|
+
* mixal, jssm, fsharp, edifact, csp, cssound_score, cssound_orchestra, cssound_document
|
|
412
410
|
*
|
|
413
411
|
* Default value is `"javascript"`.
|
|
414
412
|
*/
|
|
@@ -416,7 +414,7 @@ declare namespace sap {
|
|
|
416
414
|
/**
|
|
417
415
|
* Gets current value of property {@link #getValue value}.
|
|
418
416
|
*
|
|
419
|
-
* The value displayed in the code editor
|
|
417
|
+
* The value displayed in the code editor.
|
|
420
418
|
*
|
|
421
419
|
* Default value is `empty string`.
|
|
422
420
|
*/
|
|
@@ -424,7 +422,7 @@ declare namespace sap {
|
|
|
424
422
|
/**
|
|
425
423
|
* Gets current value of property {@link #getValueSelection valueSelection}.
|
|
426
424
|
*
|
|
427
|
-
* Sets whether the code is automatically selected if a value is set
|
|
425
|
+
* Sets whether the code is automatically selected if a value is set.
|
|
428
426
|
*
|
|
429
427
|
* Default value is `false`.
|
|
430
428
|
*/
|
|
@@ -432,7 +430,7 @@ declare namespace sap {
|
|
|
432
430
|
/**
|
|
433
431
|
* Gets current value of property {@link #getWidth width}.
|
|
434
432
|
*
|
|
435
|
-
* The width of the code editor
|
|
433
|
+
* The width of the code editor.
|
|
436
434
|
*
|
|
437
435
|
* Default value is `"100%"`.
|
|
438
436
|
*/
|
|
@@ -455,7 +453,7 @@ declare namespace sap {
|
|
|
455
453
|
/**
|
|
456
454
|
* Sets a new value for property {@link #getEditable editable}.
|
|
457
455
|
*
|
|
458
|
-
* Sets whether the code in the editor can be changed by the user
|
|
456
|
+
* Sets whether the code in the editor can be changed by the user.
|
|
459
457
|
*
|
|
460
458
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
461
459
|
*
|
|
@@ -486,7 +484,7 @@ declare namespace sap {
|
|
|
486
484
|
/**
|
|
487
485
|
* Sets a new value for property {@link #getLineNumbers lineNumbers}.
|
|
488
486
|
*
|
|
489
|
-
* Sets whether line numbers should be shown
|
|
487
|
+
* Sets whether line numbers should be shown.
|
|
490
488
|
*
|
|
491
489
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
492
490
|
*
|
|
@@ -522,7 +520,7 @@ declare namespace sap {
|
|
|
522
520
|
/**
|
|
523
521
|
* Sets a new value for property {@link #getSyntaxHints syntaxHints}.
|
|
524
522
|
*
|
|
525
|
-
* Sets whether to show syntax hints the editor. This flag is only available if line numbers are shown.
|
|
523
|
+
* Sets whether to show syntax hints in the editor. This flag is only available if line numbers are shown.
|
|
526
524
|
*
|
|
527
525
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
528
526
|
*
|
|
@@ -537,7 +535,7 @@ declare namespace sap {
|
|
|
537
535
|
/**
|
|
538
536
|
* Sets a new value for property {@link #getType type}.
|
|
539
537
|
*
|
|
540
|
-
* The type of the code in the editor used for syntax highlighting Possible types are: abap, abc, actionscript,
|
|
538
|
+
* The type of the code in the editor used for syntax highlighting. Possible types are: abap, abc, actionscript,
|
|
541
539
|
* ada, apache_conf, applescript, asciidoc, assembly_x86, autohotkey, batchfile, bro, c9search, c_cpp, cirru,
|
|
542
540
|
* clojure, cobol, coffee, coldfusion, csharp, css, curly, d, dart, diff, django, dockerfile, dot, drools,
|
|
543
541
|
* eiffel, ejs, elixir, elm, erlang, forth, fortran, ftl, gcode, gherkin, gitignore, glsl, gobstones, golang,
|
|
@@ -549,7 +547,7 @@ declare namespace sap {
|
|
|
549
547
|
* rst, ruby, rust, sass, scad, scala, scheme, scss, sh, sjs, smarty, snippets, soy_template, space, sql,
|
|
550
548
|
* sqlserver, stylus, svg, swift, swig, tcl, tex, text, textile, toml, tsx, twig, typescript, vala, vbscript,
|
|
551
549
|
* velocity, verilog, vhdl, wollok, xml, xquery, yaml, terraform, slim, redshift, red, puppet, php_laravel_blade,
|
|
552
|
-
* mixal, jssm, fsharp, edifact, csp, cssound_score, cssound_orchestra, cssound_document
|
|
550
|
+
* mixal, jssm, fsharp, edifact, csp, cssound_score, cssound_orchestra, cssound_document
|
|
553
551
|
*
|
|
554
552
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
555
553
|
*
|
|
@@ -564,7 +562,7 @@ declare namespace sap {
|
|
|
564
562
|
/**
|
|
565
563
|
* Sets a new value for property {@link #getValue value}.
|
|
566
564
|
*
|
|
567
|
-
* The value displayed in the code editor
|
|
565
|
+
* The value displayed in the code editor.
|
|
568
566
|
*
|
|
569
567
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
570
568
|
*
|
|
@@ -579,7 +577,7 @@ declare namespace sap {
|
|
|
579
577
|
/**
|
|
580
578
|
* Sets a new value for property {@link #getValueSelection valueSelection}.
|
|
581
579
|
*
|
|
582
|
-
* Sets whether the code is automatically selected if a value is set
|
|
580
|
+
* Sets whether the code is automatically selected if a value is set.
|
|
583
581
|
*
|
|
584
582
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
585
583
|
*
|
|
@@ -594,7 +592,7 @@ declare namespace sap {
|
|
|
594
592
|
/**
|
|
595
593
|
* Sets a new value for property {@link #getWidth width}.
|
|
596
594
|
*
|
|
597
|
-
* The width of the code editor
|
|
595
|
+
* The width of the code editor.
|
|
598
596
|
*
|
|
599
597
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
600
598
|
*
|