@sapui5/ts-types 1.107.1 → 1.108.1

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 (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +8 -8
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +3 -2
  6. package/types/sap.esh.search.ui.d.ts +1 -1
  7. package/types/sap.f.d.ts +111 -44
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +64 -3
  10. package/types/sap.fe.macros.d.ts +32 -24
  11. package/types/sap.fe.navigation.d.ts +16 -897
  12. package/types/sap.fe.templates.d.ts +30 -4
  13. package/types/sap.fe.test.d.ts +30 -2
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +171 -47
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +1 -1
  18. package/types/sap.m.d.ts +200 -97
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +4 -4
  21. package/types/sap.ndc.d.ts +4 -1
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.df.d.ts +11 -8
  25. package/types/sap.sac.grid.d.ts +10 -2
  26. package/types/sap.suite.ui.commons.d.ts +40 -17
  27. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  28. package/types/sap.suite.ui.microchart.d.ts +1 -1
  29. package/types/sap.tnt.d.ts +1 -1
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +12 -2
  32. package/types/sap.ui.comp.d.ts +68 -32
  33. package/types/sap.ui.core.d.ts +306 -103
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +1 -1
  36. package/types/sap.ui.fl.d.ts +1 -1
  37. package/types/sap.ui.generic.app.d.ts +1 -1
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +104 -58
  40. package/types/sap.ui.layout.d.ts +2 -2
  41. package/types/sap.ui.mdc.d.ts +1 -1
  42. package/types/sap.ui.richtexteditor.d.ts +1 -1
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +8 -3
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +28 -20
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +198 -24
  49. package/types/sap.ui.ux3.d.ts +18 -9
  50. package/types/sap.ui.vbm.d.ts +9 -5
  51. package/types/sap.ui.vk.d.ts +78 -22
  52. package/types/sap.ui.vtm.d.ts +108 -59
  53. package/types/sap.ui.webc.common.d.ts +3 -3
  54. package/types/sap.ui.webc.fiori.d.ts +58 -58
  55. package/types/sap.ui.webc.main.d.ts +129 -129
  56. package/types/sap.uiext.inbox.d.ts +5 -5
  57. package/types/sap.ushell.d.ts +124 -1701
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +1 -1
  60. package/types/sap.viz.d.ts +132 -132
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +4 -4
  64. package/types/sap.zen.dsh.d.ts +2 -2
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.107.1
1
+ // For Library Version: 1.108.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -81,7 +81,7 @@ declare namespace sap {
81
81
  };
82
82
  }
83
83
 
84
- interface $MacroAPISettings extends sap.ui.core.$ControlSettings {
84
+ interface $MacroAPISettings extends sap.ui.core.$ElementSettings {
85
85
  /**
86
86
  * Defines the path of the context used in the current page or block.
87
87
  * This setting is defined by the framework.
@@ -185,10 +185,26 @@ declare namespace sap {
185
185
  */
186
186
  id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
187
187
 
188
+ /**
189
+ * If true, the search is triggered automatically when a filter value is changed.
190
+ */
191
+ liveMode?:
192
+ | boolean
193
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
194
+ | `{${string}}`;
195
+
188
196
  /**
189
197
  * Defines the relative path of the property in the metamodel, based on the current contextPath.
190
198
  */
191
199
  metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
200
+
201
+ /**
202
+ * Parameter which sets the visibility of the FilterBar building block
203
+ */
204
+ visible?:
205
+ | boolean
206
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
207
+ | `{${string}}`;
192
208
  }
193
209
 
194
210
  interface $FormSettings extends sap.fe.macros.$MacroAPISettings {
@@ -351,12 +367,12 @@ declare namespace sap {
351
367
 
352
368
  /**
353
369
  * Controls the kind of variant management that should be enabled for the table.
354
- * Allowed values are `Page`, `Control` and `None`.
370
+ * Allowed value is `Control`.
355
371
  *
356
- * If the table is used within a SAP Fiori elements template, the default value will be taken from the current
357
- * page variant management.
372
+ * If set with value `Control`, a variant management control is seen within the table and the table is linked
373
+ * to this.
358
374
  *
359
- * Otherwise it's `None`.
375
+ * If not set with any value, control level variant management is not available for this table.
360
376
  */
361
377
  variantManagement?:
362
378
  | string
@@ -429,7 +445,7 @@ declare namespace sap {
429
445
  /**
430
446
  * Base API control for macros.
431
447
  */
432
- class MacroAPI extends sap.ui.core.Control {
448
+ class MacroAPI extends sap.ui.core.Element {
433
449
  constructor();
434
450
  }
435
451
  /**
@@ -492,7 +508,7 @@ declare namespace sap {
492
508
  }
493
509
  ): string;
494
510
  /**
495
- * Retrieves the current value of the Field.
511
+ * Retrieves the current value of the field.
496
512
  *
497
513
  * @returns The current value of the field
498
514
  */
@@ -528,6 +544,13 @@ declare namespace sap {
528
544
  * @returns Active filters summary as text
529
545
  */
530
546
  getActiveFiltersText(): any;
547
+ /**
548
+ * Provides all the filters that are currently active
549
+ * along with the search expression.
550
+ *
551
+ * @returns An array of active filters and the search expression.
552
+ */
553
+ getFilters(): object;
531
554
  /**
532
555
  * Set the filter values for the given property in the filter bar.
533
556
  * The filter values can be either a single value or an array of values.
@@ -547,14 +570,7 @@ declare namespace sap {
547
570
  /**
548
571
  * The values to be applied
549
572
  */
550
- vValues:
551
- | undefined
552
- | string
553
- | number
554
- | boolean
555
- | string[]
556
- | number[]
557
- | boolean[]
573
+ vValues?: string | number | boolean | string[] | number[] | boolean[]
558
574
  ): Promise<any>;
559
575
  }
560
576
  /**
@@ -689,10 +705,6 @@ declare namespace sap {
689
705
  * The text that will be displayed for this FilterField
690
706
  */
691
707
  label: string;
692
- /**
693
- * If set, the search is triggered automatically when a filter value is changed.
694
- */
695
- liveMode: boolean;
696
708
  /**
697
709
  * Defines where this filter should be placed relative to the defined anchor
698
710
  * Allowed values are `Before` and `After`
@@ -702,10 +714,6 @@ declare namespace sap {
702
714
  * If set, possible errors that occur during the search will be displayed in a message box.
703
715
  */
704
716
  showMessages: boolean;
705
- /**
706
- * Parameter which sets the visibility of the FilterBar building block
707
- */
708
- visible: boolean;
709
717
  };
710
718
  }
711
719
  }