@sapui5/ts-types 1.93.3 → 1.96.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.
Files changed (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +3 -1
  3. package/types/sap.apf.d.ts +17 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +1 -1
  8. package/types/sap.f.d.ts +314 -42
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +154 -2
  11. package/types/sap.fe.macros.d.ts +38 -10
  12. package/types/sap.fe.navigation.d.ts +1 -1
  13. package/types/sap.fe.placeholder.d.ts +3 -0
  14. package/types/sap.fe.plugins.d.ts +1 -1
  15. package/types/sap.fe.semantics.d.ts +3 -0
  16. package/types/sap.fe.templates.d.ts +21 -8
  17. package/types/sap.fe.test.d.ts +78 -1
  18. package/types/sap.fe.tools.d.ts +1 -1
  19. package/types/sap.feedback.ui.d.ts +1 -1
  20. package/types/sap.gantt.d.ts +1148 -49
  21. package/types/sap.landvisz.d.ts +1 -1
  22. package/types/sap.m.d.ts +910 -132
  23. package/types/sap.makit.d.ts +1 -1
  24. package/types/sap.me.d.ts +1 -1
  25. package/types/sap.ndc.d.ts +2 -7
  26. package/types/sap.ovp.d.ts +1 -1
  27. package/types/sap.rules.ui.d.ts +1 -1
  28. package/types/sap.sac.grid.d.ts +635 -0
  29. package/types/sap.suite.ui.commons.d.ts +216 -7
  30. package/types/sap.suite.ui.generic.template.d.ts +49 -6
  31. package/types/sap.suite.ui.microchart.d.ts +1 -1
  32. package/types/sap.tnt.d.ts +11 -12
  33. package/types/sap.ui.codeeditor.d.ts +29 -31
  34. package/types/sap.ui.commons.d.ts +1 -1
  35. package/types/sap.ui.comp.d.ts +166 -27
  36. package/types/sap.ui.core.d.ts +873 -376
  37. package/types/sap.ui.dt.d.ts +1 -1
  38. package/types/sap.ui.export.d.ts +119 -69
  39. package/types/sap.ui.fl.d.ts +3 -1
  40. package/types/sap.ui.generic.app.d.ts +1 -18
  41. package/types/sap.ui.generic.template.d.ts +1 -1
  42. package/types/sap.ui.integration.d.ts +420 -15
  43. package/types/sap.ui.layout.d.ts +19 -1
  44. package/types/sap.ui.mdc.d.ts +51 -1
  45. package/types/sap.ui.richtexteditor.d.ts +1 -1
  46. package/types/sap.ui.rta.d.ts +1 -1
  47. package/types/sap.ui.suite.d.ts +1 -1
  48. package/types/sap.ui.support.d.ts +6 -6
  49. package/types/sap.ui.table.d.ts +8 -5
  50. package/types/sap.ui.testrecorder.d.ts +1 -1
  51. package/types/sap.ui.unified.d.ts +142 -14
  52. package/types/sap.ui.ux3.d.ts +1 -1
  53. package/types/sap.ui.vbm.d.ts +1 -1
  54. package/types/sap.ui.vk.d.ts +918 -127
  55. package/types/sap.ui.vtm.d.ts +1 -1
  56. package/types/sap.uiext.inbox.d.ts +2 -1
  57. package/types/sap.ushell.d.ts +140 -122
  58. package/types/sap.ushell_abap.d.ts +2 -2
  59. package/types/sap.uxap.d.ts +1 -1
  60. package/types/sap.viz.d.ts +1 -1
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +5 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +53 -34
  65. package/types/sap.fe.placeholder-1.93.1-d.ts +0 -3
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.93.2
1
+ // For Library Version: 1.96.0
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 editors color theme Possible values are: default, hcb, hcb_bright, hcb_blue, theme-ambiance,
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 controls 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. NOTE: There is a known limitation where
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 editors color theme Possible values are: default, hcb, hcb_bright, hcb_blue, theme-ambiance,
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
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.93.2
1
+ // For Library Version: 1.96.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.93.2
1
+ // For Library Version: 1.96.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -470,9 +470,12 @@ declare namespace sap {
470
470
  * in one column and organized in groups. The filter items of the `filterItems` aggregation are grouped
471
471
  * in the Basic group . Each filter can be marked as visible in the FilterBar by selecting Add to FilterBar.
472
472
  * In addition, the items in the `filterGroupItems` aggregation can be marked as part of the current variant.
473
- * The FilterBar also supports a different UI layout when used inside a value help dialog. In this case
474
- * the FilterBar consists of two logical areas, one containing the general search button and one the Advanced
475
- * Search area. The Advanced Search is a collapsible area displaying the advanced filters in two columns.
473
+ * The FilterBar also supports a different UI layout when used inside a value help dialog. In this case,
474
+ * the FilterBar consists of two logical areas, one containing the search field with Go button and one -
475
+ * the advanced area. The filters are aligned in a grid with labels above each. The number of items per
476
+ * row depends on the width of the value help dialog. By default, the filter bar will show up to 8 filters.
477
+ * If there are more than 8 filters, a new button 'Show All Filters' appears in the place of the 8th filter.
478
+ * Clicking on this button displays all filters.
476
479
  */
477
480
  class FilterBar extends sap.ui.layout.Grid {
478
481
  /**
@@ -483,6 +486,7 @@ declare namespace sap {
483
486
  * of the syntax of the settings object.
484
487
  * See:
485
488
  * {@link topic:2ae520a67c44495ab5dbc69668c47a7f Filter Bar}
489
+ * {@link fiori:https://experience.sap.com/fiori-design-web/filter-bar/ Filter Bar}
486
490
  */
487
491
  constructor(
488
492
  /**
@@ -498,6 +502,7 @@ declare namespace sap {
498
502
  * of the syntax of the settings object.
499
503
  * See:
500
504
  * {@link topic:2ae520a67c44495ab5dbc69668c47a7f Filter Bar}
505
+ * {@link fiori:https://experience.sap.com/fiori-design-web/filter-bar/ Filter Bar}
501
506
  */
502
507
  constructor(
503
508
  /**
@@ -2063,6 +2068,10 @@ declare namespace sap {
2063
2068
  * Default value is `empty string`.
2064
2069
  */
2065
2070
  getHeader(): string;
2071
+ /**
2072
+ * Returns promise which will be resolve when the initialized event is fired.
2073
+ */
2074
+ getInitializedPromise(): Promise<any>;
2066
2075
  /**
2067
2076
  * Gets current value of property {@link #getIsRunningInValueHelpDialog isRunningInValueHelpDialog}.
2068
2077
  *
@@ -3569,7 +3578,13 @@ declare namespace sap {
3569
3578
  *
3570
3579
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
3571
3580
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
3572
- * will be processed.
3581
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
3582
+ *
3583
+ * - {String} text: Text of the navigation intent
3584
+ * - {String} href: HREF of the navigation intent
3585
+ * - {String} originalId: ID of the control that fires the navigation intent
3586
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
3587
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
3573
3588
  */
3574
3589
  beforeNavigationCallback?:
3575
3590
  | Function
@@ -3704,7 +3719,13 @@ declare namespace sap {
3704
3719
  *
3705
3720
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
3706
3721
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
3707
- * will be processed.
3722
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
3723
+ *
3724
+ * - {String} text: Text of the navigation intent
3725
+ * - {String} href: HREF of the navigation intent
3726
+ * - {String} originalId: ID of the control that fires the navigation intent
3727
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
3728
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
3708
3729
  */
3709
3730
  beforeNavigationCallback?:
3710
3731
  | Function
@@ -3873,7 +3894,13 @@ declare namespace sap {
3873
3894
  *
3874
3895
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
3875
3896
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
3876
- * will be processed.
3897
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
3898
+ *
3899
+ * - {String} text: Text of the navigation intent
3900
+ * - {String} href: HREF of the navigation intent
3901
+ * - {String} originalId: ID of the control that fires the navigation intent
3902
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
3903
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
3877
3904
  */
3878
3905
  beforeNavigationCallback?:
3879
3906
  | Function
@@ -5295,7 +5322,13 @@ declare namespace sap {
5295
5322
  *
5296
5323
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
5297
5324
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
5298
- * will be processed.
5325
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
5326
+ *
5327
+ * - {String} text: Text of the navigation intent
5328
+ * - {String} href: HREF of the navigation intent
5329
+ * - {String} originalId: ID of the control that fires the navigation intent
5330
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
5331
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
5299
5332
  */
5300
5333
  getBeforeNavigationCallback(): Function;
5301
5334
  /**
@@ -5411,7 +5444,14 @@ declare namespace sap {
5411
5444
  *
5412
5445
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
5413
5446
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
5414
- * will be processed.
5447
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
5448
+ *
5449
+ * - {String} text: Text of the navigation intent
5450
+ * - {String} href: HREF of the navigation intent
5451
+ * - {String} originalId: ID of the control that fires the navigation intent
5452
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
5453
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
5454
+ *
5415
5455
  *
5416
5456
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5417
5457
  */
@@ -6083,7 +6123,13 @@ declare namespace sap {
6083
6123
  *
6084
6124
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
6085
6125
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
6086
- * will be processed.
6126
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
6127
+ *
6128
+ * - {String} text: Text of the navigation intent
6129
+ * - {String} href: HREF of the navigation intent
6130
+ * - {String} originalId: ID of the control that fires the navigation intent
6131
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
6132
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
6087
6133
  */
6088
6134
  getBeforeNavigationCallback(): Function;
6089
6135
  /**
@@ -6213,7 +6259,14 @@ declare namespace sap {
6213
6259
  *
6214
6260
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
6215
6261
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
6216
- * will be processed.
6262
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
6263
+ *
6264
+ * - {String} text: Text of the navigation intent
6265
+ * - {String} href: HREF of the navigation intent
6266
+ * - {String} originalId: ID of the control that fires the navigation intent
6267
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
6268
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
6269
+ *
6217
6270
  *
6218
6271
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6219
6272
  */
@@ -6838,7 +6891,13 @@ declare namespace sap {
6838
6891
  *
6839
6892
  * Function that is called before the actual navigation happens. This function has to return a promise resolving
6840
6893
  * into a Boolean value for which the navigation will wait. If the Boolean value is `true`, the navigation
6841
- * will be processed.
6894
+ * will be processed. The `beforeNavigationCallback(oNavigationInfo)` parameter contains the following data:
6895
+ *
6896
+ * - {String} text: Text of the navigation intent
6897
+ * - {String} href: HREF of the navigation intent
6898
+ * - {String} originalId: ID of the control that fires the navigation intent
6899
+ * - {String} semanticObject: Name of the `SemanticObject` of the navigation intent
6900
+ * - {Object} semanticAttributes: Object containing the `SemanticAttributes` of the navigation intent
6842
6901
  */
6843
6902
  getBeforeNavigationCallback(): Function;
6844
6903
  /**
@@ -7674,12 +7733,12 @@ declare namespace sap {
7674
7733
  *
7675
7734
  * This event is fired once the control has been initialized. **Note:** For compatibility reasons the sap.chart
7676
7735
  * library is loaded synchroniously as soon as a event handler for the `initialise` event has been attached.
7677
- * Please use event `intialized` instead.
7736
+ * Since this event does not fulfill CSP requirements, please use event `initialized` instead.
7678
7737
  */
7679
7738
  initialise?: (oEvent: sap.ui.base.Event) => void;
7680
7739
 
7681
7740
  /**
7682
- * New event, async successor of initialise
7741
+ * This event is fired once the control has been initialized, asynchronous successor of `initialise`.
7683
7742
  */
7684
7743
  initialized?: (oEvent: sap.ui.base.Event) => void;
7685
7744
 
@@ -8189,7 +8248,11 @@ declare namespace sap {
8189
8248
  oListener?: object
8190
8249
  ): this;
8191
8250
  /**
8251
+ * @deprecated (since 1.94) - replaced by {@link #event:initialized}
8252
+ *
8192
8253
  * Loads the chart lib synchronously before the event is attached. That is done for compatibility reasons.
8254
+ * **Note:** Attaching to this event causes the inner chart to load synchronously. This does not fulfill
8255
+ * CSP requirements. Please use event `initialized` instead.
8193
8256
  */
8194
8257
  attachInitialise(): void;
8195
8258
  /**
@@ -8198,7 +8261,7 @@ declare namespace sap {
8198
8261
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8199
8262
  * otherwise it will be bound to this `sap.ui.comp.smartchart.SmartChart` itself.
8200
8263
  *
8201
- * New event, async successor of initialise
8264
+ * This event is fired once the control has been initialized, asynchronous successor of `initialise`.
8202
8265
  */
8203
8266
  attachInitialized(
8204
8267
  /**
@@ -8221,7 +8284,7 @@ declare namespace sap {
8221
8284
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8222
8285
  * otherwise it will be bound to this `sap.ui.comp.smartchart.SmartChart` itself.
8223
8286
  *
8224
- * New event, async successor of initialise
8287
+ * This event is fired once the control has been initialized, asynchronous successor of `initialise`.
8225
8288
  */
8226
8289
  attachInitialized(
8227
8290
  /**
@@ -8698,13 +8761,15 @@ declare namespace sap {
8698
8761
  */
8699
8762
  getActivateTimeSeries(): boolean;
8700
8763
  /**
8701
- * @deprecated (since 1.57.0) - Please use `getChartAsync` instead.
8764
+ * @deprecated (since 1.57) - replaced by {@link #getChartAsync}
8702
8765
  *
8703
8766
  * Returns the chart object used internally.
8704
8767
  * **Note:** Direct changes made to the inner {@link sap.chart.Chart chart} object or its {@link sap.viz.ui5.controls.VizFrame
8705
8768
  * vizFrame} might lead to inconsistencies and side effects during runtime, as the `SmartChart` control
8706
8769
  * doesn't listen to all changes made to the inner {@link sap.chart.Chart chart} instance. To avoid this,
8707
- * please use the API provided by the `SmartChart` control itself.
8770
+ * please use the API provided by the `SmartChart` control itself. **Note:** Calling this method when the
8771
+ * chart is not yet initialized causes the inner chart to load synchronously. This does not fulfill CSP
8772
+ * requirements. Please use `getChartAsync` instead.
8708
8773
  */
8709
8774
  getChart(): object;
8710
8775
  /**
@@ -9572,15 +9637,6 @@ declare namespace sap {
9572
9637
  */
9573
9638
  oSmartVariant: sap.ui.core.ID | sap.ui.core.Control
9574
9639
  ): this;
9575
- /**
9576
- * Sets the aggregated {@link #getToolbar toolbar}.
9577
- */
9578
- setToolbar(
9579
- /**
9580
- * The toolbar to set
9581
- */
9582
- oToolbar: sap.m.Toolbar
9583
- ): this;
9584
9640
  /**
9585
9641
  * @SINCE 1.54
9586
9642
  *
@@ -10257,6 +10313,13 @@ declare namespace sap {
10257
10313
  */
10258
10314
  ariaLabelledBy?: Array<sap.ui.core.Control | string>;
10259
10315
 
10316
+ /**
10317
+ * @SINCE 1.96
10318
+ *
10319
+ * Association to controls / IDs that describe this control (see WAI-ARIA attribute `aria-describedby`).
10320
+ */
10321
+ ariaDescribedBy?: Array<sap.ui.core.Control | string>;
10322
+
10260
10323
  /**
10261
10324
  * The OData entity set is either derived from the control's binding context or from control's entity set
10262
10325
  * property, if a value for it is specified. In both cases this event is fired.
@@ -10828,6 +10891,7 @@ declare namespace sap {
10828
10891
  * of the syntax of the settings object.
10829
10892
  * See:
10830
10893
  * {@link topic:4864403f08c64ca08a2b0ee1fa9cb5e2 Smart Field}
10894
+ * {@link fiori:https://experience.sap.com/fiori-design-web/smart-field/ Smart Field}
10831
10895
  */
10832
10896
  constructor(
10833
10897
  /**
@@ -10843,6 +10907,7 @@ declare namespace sap {
10843
10907
  * of the syntax of the settings object.
10844
10908
  * See:
10845
10909
  * {@link topic:4864403f08c64ca08a2b0ee1fa9cb5e2 Smart Field}
10910
+ * {@link fiori:https://experience.sap.com/fiori-design-web/smart-field/ Smart Field}
10846
10911
  */
10847
10912
  constructor(
10848
10913
  /**
@@ -10901,6 +10966,17 @@ declare namespace sap {
10901
10966
  */
10902
10967
  bNavigationPathsOnly: boolean
10903
10968
  ): any[];
10969
+ /**
10970
+ * @SINCE 1.96
10971
+ *
10972
+ * Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
10973
+ */
10974
+ addAriaDescribedBy(
10975
+ /**
10976
+ * The ariaDescribedBy to add; if empty, nothing is inserted
10977
+ */
10978
+ vAriaDescribedBy: sap.ui.core.ID | sap.ui.core.Control
10979
+ ): this;
10904
10980
  /**
10905
10981
  * @SINCE 1.34.2
10906
10982
  *
@@ -11819,6 +11895,13 @@ declare namespace sap {
11819
11895
  visible?: boolean;
11820
11896
  }
11821
11897
  ): this;
11898
+ /**
11899
+ * @SINCE 1.96
11900
+ *
11901
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
11902
+ * ariaDescribedBy}.
11903
+ */
11904
+ getAriaDescribedBy(): sap.ui.core.ID[];
11822
11905
  /**
11823
11906
  * @SINCE 1.34.2
11824
11907
  *
@@ -12436,12 +12519,29 @@ declare namespace sap {
12436
12519
  * Default value is `true`.
12437
12520
  */
12438
12521
  getWrapping(): boolean;
12522
+ /**
12523
+ * @SINCE 1.96
12524
+ *
12525
+ * Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
12526
+ */
12527
+ removeAllAriaDescribedBy(): sap.ui.core.ID[];
12439
12528
  /**
12440
12529
  * @SINCE 1.34.2
12441
12530
  *
12442
12531
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
12443
12532
  */
12444
12533
  removeAllAriaLabelledBy(): sap.ui.core.ID[];
12534
+ /**
12535
+ * @SINCE 1.96
12536
+ *
12537
+ * Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
12538
+ */
12539
+ removeAriaDescribedBy(
12540
+ /**
12541
+ * The ariaDescribedBy to be removed or its index or ID
12542
+ */
12543
+ vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
12544
+ ): sap.ui.core.ID;
12445
12545
  /**
12446
12546
  * @SINCE 1.34.2
12447
12547
  *
@@ -14833,6 +14933,8 @@ declare namespace sap {
14833
14933
  * of the syntax of the settings object.
14834
14934
  * See:
14835
14935
  * {@link topic:7bcdffc056a94731b4341db73251e32b Smart Filter Bar}
14936
+ * {@link fiori:https://experience.sap.com/fiori-design-web/smart-filter-bar-annotations/ Smart Filter
14937
+ * Bar}
14836
14938
  */
14837
14939
  constructor(
14838
14940
  /**
@@ -14848,6 +14950,8 @@ declare namespace sap {
14848
14950
  * of the syntax of the settings object.
14849
14951
  * See:
14850
14952
  * {@link topic:7bcdffc056a94731b4341db73251e32b Smart Filter Bar}
14953
+ * {@link fiori:https://experience.sap.com/fiori-design-web/smart-filter-bar-annotations/ Smart Filter
14954
+ * Bar}
14851
14955
  */
14852
14956
  constructor(
14853
14957
  /**
@@ -15410,6 +15514,11 @@ declare namespace sap {
15410
15514
  | string
15411
15515
  | sap.ui.comp.smartfilterbar.GroupConfiguration
15412
15516
  ): sap.ui.comp.smartfilterbar.GroupConfiguration;
15517
+ /**
15518
+ * Resumes calls to the `search` method. If it was called during the suspension, the search will be triggered
15519
+ * once regardless of how many times it was called during suspension.
15520
+ */
15521
+ resumeSelection(): void;
15413
15522
  /**
15414
15523
  * Overwrites method from base class. Called when user clicks the search button of the FilterBar. The search
15415
15524
  * is executed asynchronously per default, but can be forced to synchronously execution by providing the
@@ -15699,6 +15808,10 @@ declare namespace sap {
15699
15808
  */
15700
15809
  bUseProvidedNavigationProperties?: boolean
15701
15810
  ): this;
15811
+ /**
15812
+ * Suspends calls to the `search` method when not called with the `bSync` parameter.
15813
+ */
15814
+ suspendSelection(): void;
15702
15815
  /**
15703
15816
  * Verify if all mandatory filters or parameters have values.
15704
15817
  */
@@ -23311,6 +23424,13 @@ declare namespace sap {
23311
23424
  | boolean
23312
23425
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
23313
23426
 
23427
+ /**
23428
+ * @SINCE 1.96
23429
+ *
23430
+ * Determines whether the Paste button is enabled.
23431
+ */
23432
+ enablePaste?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
23433
+
23314
23434
  /**
23315
23435
  * @SINCE 1.26.0
23316
23436
  *
@@ -24895,6 +25015,16 @@ declare namespace sap {
24895
25015
  * Default value is `true`.
24896
25016
  */
24897
25017
  getEnableCustomFilter(): boolean;
25018
+ /**
25019
+ * @SINCE 1.96
25020
+ *
25021
+ * Gets current value of property {@link #getEnablePaste enablePaste}.
25022
+ *
25023
+ * Determines whether the Paste button is enabled.
25024
+ *
25025
+ * Default value is `true`.
25026
+ */
25027
+ getEnablePaste(): boolean;
24898
25028
  /**
24899
25029
  * @SINCE 1.26.0
24900
25030
  *
@@ -25563,6 +25693,15 @@ declare namespace sap {
25563
25693
  */
25564
25694
  bEnableCustomFilter?: boolean
25565
25695
  ): this;
25696
+ /**
25697
+ * Sets a new value for the `enablePaste` property.
25698
+ */
25699
+ setEnablePaste(
25700
+ /**
25701
+ * New value for property enablePaste
25702
+ */
25703
+ bValue: boolean
25704
+ ): sap.ui.comp.smarttable.SmartTable;
25566
25705
  /**
25567
25706
  * The entity set name from OData metadata, with which the table should be bound to
25568
25707
  */