@sapui5/ts-types 1.112.3 → 1.114.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 (64) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +0 -1
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +59 -2
  5. package/types/sap.chart.d.ts +15 -1
  6. package/types/sap.collaboration.d.ts +33 -1
  7. package/types/sap.esh.search.ui.d.ts +449 -1
  8. package/types/sap.f.d.ts +125 -38
  9. package/types/sap.fe.core.d.ts +35 -5
  10. package/types/sap.fe.macros.d.ts +80 -72
  11. package/types/sap.fe.navigation.d.ts +2 -0
  12. package/types/sap.fe.templates.d.ts +6 -0
  13. package/types/sap.fe.test.d.ts +7 -1
  14. package/types/sap.feedback.ui.d.ts +2 -6
  15. package/types/sap.gantt.d.ts +238 -16
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +27 -1
  18. package/types/sap.m.d.ts +2306 -1028
  19. package/types/sap.makit.d.ts +13 -1
  20. package/types/sap.me.d.ts +17 -1
  21. package/types/sap.ndc.d.ts +10 -2
  22. package/types/sap.ovp.d.ts +7 -1
  23. package/types/sap.rules.ui.d.ts +9 -1
  24. package/types/sap.sac.df.d.ts +64 -551
  25. package/types/sap.suite.ui.commons.d.ts +276 -2
  26. package/types/sap.suite.ui.generic.template.d.ts +180 -1
  27. package/types/sap.suite.ui.microchart.d.ts +37 -1
  28. package/types/sap.tnt.d.ts +7 -1
  29. package/types/sap.ui.codeeditor.d.ts +5 -1
  30. package/types/sap.ui.commons.d.ts +197 -1
  31. package/types/sap.ui.comp.d.ts +706 -263
  32. package/types/sap.ui.core.d.ts +3117 -1641
  33. package/types/sap.ui.dt.d.ts +1 -1
  34. package/types/sap.ui.export.d.ts +1 -1
  35. package/types/sap.ui.fl.d.ts +13 -3
  36. package/types/sap.ui.generic.app.d.ts +21 -8
  37. package/types/sap.ui.generic.template.d.ts +1 -1
  38. package/types/sap.ui.integration.d.ts +158 -22
  39. package/types/sap.ui.layout.d.ts +43 -1
  40. package/types/sap.ui.mdc.d.ts +17 -7
  41. package/types/sap.ui.richtexteditor.d.ts +11 -1
  42. package/types/sap.ui.rta.d.ts +1 -1
  43. package/types/sap.ui.suite.d.ts +5 -1
  44. package/types/sap.ui.support.d.ts +1 -1
  45. package/types/sap.ui.table.d.ts +98 -7
  46. package/types/sap.ui.testrecorder.d.ts +1 -1
  47. package/types/sap.ui.unified.d.ts +433 -111
  48. package/types/sap.ui.ux3.d.ts +147 -1
  49. package/types/sap.ui.vbm.d.ts +122 -1
  50. package/types/sap.ui.vk.d.ts +414 -2
  51. package/types/sap.ui.vtm.d.ts +73 -1
  52. package/types/sap.ui.webc.common.d.ts +1 -1
  53. package/types/sap.ui.webc.fiori.d.ts +63 -1
  54. package/types/sap.ui.webc.main.d.ts +189 -5
  55. package/types/sap.uiext.inbox.d.ts +27 -1
  56. package/types/sap.ushell.d.ts +380 -84
  57. package/types/sap.ushell_abap.d.ts +1 -1
  58. package/types/sap.uxap.d.ts +26 -1
  59. package/types/sap.viz.d.ts +229 -1
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +1 -1
  62. package/types/sap.zen.crosstab.d.ts +1 -1
  63. package/types/sap.zen.dsh.d.ts +10 -1
  64. package/types/sap.sac.grid.d.ts +0 -760
@@ -82,67 +82,6 @@ declare namespace sap {
82
82
  }
83
83
  }
84
84
 
85
- namespace internal {
86
- interface $FilterBarSettings extends sap.ui.core.$ControlSettings {}
87
-
88
- interface $MicroChartSettings extends sap.ui.core.$ControlSettings {}
89
-
90
- interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
91
- /**
92
- * The identifier of the Paginator control.
93
- */
94
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
95
- }
96
-
97
- /**
98
- * @SINCE 1.94.0
99
- *
100
- * Building block for creating a FilterBar based on the metadata provided by OData V4.
101
- * Usage example:
102
- *
103
- * ```javascript
104
- *
105
- * <macro:FilterBar
106
- * id="SomeID"
107
- * showAdaptFiltersButton="true"
108
- * p13nMode=["Item","Value"]
109
- * listBindingNames = "sap.fe.tableBinding"
110
- * liveMode="true"
111
- * search=".handlers.onSearch"
112
- * filterChanged=".handlers.onFiltersChanged"
113
- * />
114
- * ```
115
- *
116
- *
117
- * Building block for creating a FilterBar based on the metadata provided by OData V4.
118
- */
119
- class FilterBar extends sap.ui.core.Control {
120
- constructor();
121
- }
122
- /**
123
- * @SINCE 1.93.0
124
- *
125
- * Building block used to create a MicroChart based on the metadata provided by OData V4.
126
- */
127
- class MicroChart extends sap.ui.core.Control {
128
- constructor();
129
- }
130
- /**
131
- * @SINCE 1.94.0
132
- *
133
- * Building block used to create a paginator control.
134
- * Usage example:
135
- *
136
- * ```javascript
137
- *
138
- * <macro:Paginator />
139
- * ```
140
- */
141
- class Paginator extends sap.ui.core.Control {
142
- constructor();
143
- }
144
- }
145
-
146
85
  namespace table {
147
86
  /**
148
87
  * Definition of a custom action to be used inside the table toolbar
@@ -221,7 +160,11 @@ declare namespace sap {
221
160
  */
222
161
  header: string;
223
162
  /**
224
- * Defines the column importance
163
+ * Aligns the header as well as the content horizontally
164
+ */
165
+ horizontalAlign: /* was: sap.fe.core.HorizontalAlign */ any;
166
+ /**
167
+ * Defines the column importance.
225
168
  * You can define which columns should be automatically moved to the pop-in area based on their importance
226
169
  */
227
170
  importance: string;
@@ -234,6 +177,11 @@ declare namespace sap {
234
177
  * Allowed values are `Before` and `After`
235
178
  */
236
179
  placement: string;
180
+ /**
181
+ * Defines the column's width.
182
+ * Allowed values are `auto`, `value` and `inherit` according to {@link sap.ui.core.CSSSize}
183
+ */
184
+ width: string;
237
185
  };
238
186
  }
239
187
 
@@ -308,7 +256,11 @@ declare namespace sap {
308
256
  /**
309
257
  * Aggregate actions of the chart.
310
258
  */
311
- actions?: sap.fe.macros.chart.Action;
259
+ actions?:
260
+ | sap.fe.macros.chart.Action[]
261
+ | sap.fe.macros.chart.Action
262
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
263
+ | `{${string}}`;
312
264
  }
313
265
 
314
266
  interface $FieldSettings extends sap.fe.macros.$MacroAPISettings {
@@ -413,12 +365,15 @@ declare namespace sap {
413
365
  | `{${string}}`;
414
366
  }
415
367
 
416
- interface $FormSettings extends sap.fe.macros.$MacroAPISettings {
368
+ interface $FormSettings extends sap.ui.core.$ControlSettings {
417
369
  /**
418
370
  * Defines the path of the context used in the current page or block.
419
371
  * This setting is defined by the framework.
420
372
  */
421
- contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
373
+ contextPath?:
374
+ | sap.ui.model.Context
375
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
376
+ | `{${string}}`;
422
377
 
423
378
  /**
424
379
  * The identifier of the form control.
@@ -428,7 +383,10 @@ declare namespace sap {
428
383
  /**
429
384
  * Defines the relative path of the property in the metamodel, based on the current contextPath.
430
385
  */
431
- metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
386
+ metaPath?:
387
+ | sap.ui.model.Context
388
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
389
+ | `{${string}}`;
432
390
 
433
391
  /**
434
392
  * The title of the form control.
@@ -479,6 +437,15 @@ declare namespace sap {
479
437
  fields?: sap.ui.core.Control;
480
438
  }
481
439
 
440
+ interface $MicroChartSettings extends sap.ui.core.$ControlSettings {}
441
+
442
+ interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
443
+ /**
444
+ * The identifier of the Paginator control.
445
+ */
446
+ id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
447
+ }
448
+
482
449
  interface $TableSettings extends sap.fe.macros.$MacroAPISettings {
483
450
  /**
484
451
  * An expression that allows you to control the 'busy' state of the table.
@@ -531,6 +498,15 @@ declare namespace sap {
531
498
  */
532
499
  filterBar?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
533
500
 
501
+ /**
502
+ * Number of columns that are fixed on the left. Only columns which are not fixed can be scrolled horizontally.
503
+ * This property is not relevant for Responsive tables
504
+ */
505
+ frozenColumnCount?:
506
+ | number
507
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
508
+ | `{${string}}`;
509
+
534
510
  /**
535
511
  * Specifies the header text that is shown in the table.
536
512
  */
@@ -630,12 +606,20 @@ declare namespace sap {
630
606
  /**
631
607
  * Aggregate actions of the table.
632
608
  */
633
- actions?: sap.fe.macros.table.Action;
609
+ actions?:
610
+ | sap.fe.macros.table.Action[]
611
+ | sap.fe.macros.table.Action
612
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
613
+ | `{${string}}`;
634
614
 
635
615
  /**
636
616
  * Aggregate columns of the table.
637
617
  */
638
- columns?: sap.fe.macros.table.Column;
618
+ columns?:
619
+ | sap.fe.macros.table.Column[]
620
+ | sap.fe.macros.table.Column
621
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
622
+ | `{${string}}`;
639
623
  }
640
624
 
641
625
  /**
@@ -775,6 +759,10 @@ declare namespace sap {
775
759
  */
776
760
  vValues?: boolean | boolean[] | number | number[] | string | string[]
777
761
  ): Promise<void>;
762
+ /**
763
+ * Triggers the API search on the filter bar.
764
+ */
765
+ triggerSearch(): Promise<void>;
778
766
  }
779
767
  /**
780
768
  * Building block for creating a Form based on the metadata provided by OData V4.
@@ -789,7 +777,7 @@ declare namespace sap {
789
777
  * <macro:Form id="MyForm" metaPath="@com.sap.vocabularies.UI.v1.FieldGroup#GeneralInformation" />
790
778
  * ```
791
779
  */
792
- class Form extends sap.fe.macros.MacroAPI {
780
+ class Form extends sap.ui.core.Control {
793
781
  constructor();
794
782
  }
795
783
  /**
@@ -800,6 +788,28 @@ declare namespace sap {
800
788
  class FormElement extends sap.ui.core.Control {
801
789
  constructor();
802
790
  }
791
+ /**
792
+ * @SINCE 1.93.0
793
+ *
794
+ * Building block used to create a MicroChart based on the metadata provided by OData V4.
795
+ */
796
+ class MicroChart extends sap.ui.core.Control {
797
+ constructor();
798
+ }
799
+ /**
800
+ * @SINCE 1.94.0
801
+ *
802
+ * Building block used to create a paginator control.
803
+ * Usage example:
804
+ *
805
+ * ```javascript
806
+ *
807
+ * <macro:Paginator />
808
+ * ```
809
+ */
810
+ class Paginator extends sap.ui.core.Control {
811
+ constructor();
812
+ }
803
813
  /**
804
814
  * Building block used to create a table based on the metadata provided by OData V4.
805
815
  *
@@ -967,11 +977,9 @@ declare namespace sap {
967
977
 
968
978
  "sap/fe/macros/field/TextAreaEx": undefined;
969
979
 
970
- "sap/fe/macros/filterBar/FilterBar.block": undefined;
971
-
972
980
  "sap/fe/macros/filterBar/FilterBarAPI": undefined;
973
981
 
974
- "sap/fe/macros/form/FormAPI": undefined;
982
+ "sap/fe/macros/form/Form.block": undefined;
975
983
 
976
984
  "sap/fe/macros/form/FormElement.block": undefined;
977
985
 
@@ -65,6 +65,8 @@ declare namespace sap {
65
65
  constructor();
66
66
 
67
67
  /**
68
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
69
+ *
68
70
  * The method creates a context url based on provided data. This context url can either be used as
69
71
  * {@link sap.fe.navigation.NavigationHandler#setParameterContextUrl ParameterContextUrl} or
70
72
  * {@link sap.fe.navigation.NavigationHandler#setFilterContextUrl FilterContextUrl}.
@@ -11,6 +11,9 @@ declare namespace sap {
11
11
  * @SINCE 1.79.0
12
12
  *
13
13
  * Extension API for list reports in SAP Fiori elements for OData V4.
14
+ * To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
15
+ * SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
16
+ * created by the SAP Fiori elements framework.
14
17
  */
15
18
  class ExtensionAPI
16
19
  /* was: sap.fe.templates.ExtensionAPI */ extends Object {
@@ -313,6 +316,9 @@ declare namespace sap {
313
316
  * @SINCE 1.79.0
314
317
  *
315
318
  * Extension API for object pages on SAP Fiori elements for OData V4.
319
+ * To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
320
+ * SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
321
+ * created by the SAP Fiori elements framework.
316
322
  */
317
323
  class ExtensionAPI
318
324
  /* was: sap.fe.templates.ExtensionAPI */ extends Object {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.112.0
1
+ // For Library Version: 1.114.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -2974,6 +2974,8 @@ declare namespace sap {
2974
2974
  oDefaultRunner: sap.fe.test.JourneyRunner
2975
2975
  ): void;
2976
2976
  /**
2977
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2978
+ *
2977
2979
  * Returns the base action instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
2978
2980
  * `actions` setting.
2979
2981
  *
@@ -2986,6 +2988,8 @@ declare namespace sap {
2986
2988
  */
2987
2989
  getBaseActions(): sap.ui.test.Opa;
2988
2990
  /**
2991
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2992
+ *
2989
2993
  * Returns the base arrangements instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
2990
2994
  * `arrangements` setting.
2991
2995
  *
@@ -3003,6 +3007,8 @@ declare namespace sap {
3003
3007
  mSettings: object
3004
3008
  ): sap.ui.test.Opa;
3005
3009
  /**
3010
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3011
+ *
3006
3012
  * Returns the base assertions instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
3007
3013
  * `assertions` setting.
3008
3014
  *
@@ -1,7 +1,3 @@
1
- // For Library Version: 1.112.0
1
+ // For Library Version: 1.114.0
2
2
 
3
- declare namespace sap {
4
- interface IUI5DefineDependencyNames {
5
- "sap/feedback/ui/library": undefined;
6
- }
7
- }
3
+ declare namespace sap {}