@sapui5/ts-types 1.131.0 → 1.132.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 (68) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  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 +1 -1
  6. package/types/sap.cux.home.d.ts +8 -0
  7. package/types/sap.esh.search.ui.d.ts +38 -1
  8. package/types/sap.f.d.ts +95 -187
  9. package/types/sap.fe.base.d.ts +1 -1
  10. package/types/sap.fe.controls.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +1 -1
  12. package/types/sap.fe.ina.d.ts +1 -1
  13. package/types/sap.fe.macros.d.ts +108 -101
  14. package/types/sap.fe.navigation.d.ts +1 -1
  15. package/types/sap.fe.placeholder.d.ts +1 -1
  16. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  17. package/types/sap.fe.templates.d.ts +1 -1
  18. package/types/sap.fe.test.d.ts +1 -1
  19. package/types/sap.fe.tools.d.ts +1 -1
  20. package/types/sap.feedback.ui.d.ts +1 -1
  21. package/types/sap.gantt.d.ts +1 -1
  22. package/types/sap.insights.d.ts +1 -1
  23. package/types/sap.m.d.ts +390 -47
  24. package/types/sap.makit.d.ts +1 -1
  25. package/types/sap.me.d.ts +1 -1
  26. package/types/sap.ndc.d.ts +1 -1
  27. package/types/sap.ovp.d.ts +7 -2
  28. package/types/sap.rules.ui.d.ts +84 -1
  29. package/types/sap.sac.df.d.ts +978 -623
  30. package/types/sap.suite.ui.commons.d.ts +1 -1
  31. package/types/sap.suite.ui.generic.template.d.ts +7 -7
  32. package/types/sap.suite.ui.microchart.d.ts +1 -1
  33. package/types/sap.tnt.d.ts +1 -1
  34. package/types/sap.ui.codeeditor.d.ts +1 -1
  35. package/types/sap.ui.commons.d.ts +1 -1
  36. package/types/sap.ui.comp.d.ts +59 -5
  37. package/types/sap.ui.core.d.ts +363 -282
  38. package/types/sap.ui.dt.d.ts +1 -1
  39. package/types/sap.ui.export.d.ts +1 -1
  40. package/types/sap.ui.fl.d.ts +7 -1
  41. package/types/sap.ui.generic.app.d.ts +5 -11
  42. package/types/sap.ui.generic.template.d.ts +1 -1
  43. package/types/sap.ui.integration.d.ts +1 -1
  44. package/types/sap.ui.layout.d.ts +1 -1
  45. package/types/sap.ui.mdc.d.ts +330 -229
  46. package/types/sap.ui.richtexteditor.d.ts +1 -1
  47. package/types/sap.ui.rta.d.ts +3 -1
  48. package/types/sap.ui.suite.d.ts +1 -1
  49. package/types/sap.ui.support.d.ts +1 -1
  50. package/types/sap.ui.table.d.ts +13 -1
  51. package/types/sap.ui.testrecorder.d.ts +1 -1
  52. package/types/sap.ui.unified.d.ts +25 -15
  53. package/types/sap.ui.ux3.d.ts +1 -1
  54. package/types/sap.ui.vbm.d.ts +1 -1
  55. package/types/sap.ui.vk.d.ts +100 -1
  56. package/types/sap.ui.vtm.d.ts +1 -1
  57. package/types/sap.ui.webc.common.d.ts +1 -1
  58. package/types/sap.ui.webc.fiori.d.ts +1 -1
  59. package/types/sap.ui.webc.main.d.ts +1 -1
  60. package/types/sap.uiext.inbox.d.ts +1 -1
  61. package/types/sap.ushell.d.ts +5 -1
  62. package/types/sap.ushell_abap.d.ts +1 -1
  63. package/types/sap.uxap.d.ts +1 -1
  64. package/types/sap.viz.d.ts +1 -1
  65. package/types/sap.webanalytics.core.d.ts +1 -1
  66. package/types/sap.zen.commons.d.ts +1 -1
  67. package/types/sap.zen.crosstab.d.ts +1 -1
  68. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -3019,6 +3019,18 @@ declare namespace sap {
3019
3019
  | `{${string}}`;
3020
3020
  }
3021
3021
 
3022
+ /**
3023
+ * Describes the settings that can be provided to the Paginator constructor.
3024
+ */
3025
+ interface $PaginatorSettings
3026
+ extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
3027
+ /**
3028
+ * Title of the object that is readout by screen readers when the next/previous item is loaded via keyboard
3029
+ * focus on the paginator button.
3030
+ */
3031
+ ariaTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3032
+ }
3033
+
3022
3034
  /**
3023
3035
  * Describes the settings that can be provided to the RichTextEditor constructor.
3024
3036
  */
@@ -3078,6 +3090,57 @@ declare namespace sap {
3078
3090
  | `{${string}}`;
3079
3091
  }
3080
3092
 
3093
+ /**
3094
+ * Describes the settings that can be provided to the RichTextEditorWithMetadata constructor.
3095
+ */
3096
+ interface $RichTextEditorWithMetadataSettings
3097
+ extends sap.fe.macros.$RichTextEditorSettings {
3098
+ /**
3099
+ * The context path of the property displayed
3100
+ */
3101
+ contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3102
+
3103
+ /**
3104
+ * The metaPath of the displayed property
3105
+ */
3106
+ metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3107
+ }
3108
+
3109
+ /**
3110
+ * Describes the settings that can be provided to the VariantManagement constructor.
3111
+ */
3112
+ interface $VariantManagementSettings
3113
+ extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
3114
+ /**
3115
+ * A list of control IDs to which the variant management is applied.
3116
+ */
3117
+ for?:
3118
+ | string[]
3119
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3120
+ | `{${string}}`;
3121
+
3122
+ /**
3123
+ * Header level for the variant management, determining its position or style.
3124
+ */
3125
+ headerLevel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3126
+
3127
+ /**
3128
+ * Identifier for the variant management control.
3129
+ */
3130
+ id?:
3131
+ | any
3132
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3133
+ | `{${string}}`;
3134
+
3135
+ /**
3136
+ * Whether the "Set as Default" option is visible.
3137
+ */
3138
+ showSetAsDefault?:
3139
+ | boolean
3140
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
3141
+ | `{${string}}`;
3142
+ }
3143
+
3081
3144
  /**
3082
3145
  * Describes the settings that can be provided to the FlexibleColumnLayoutActions constructor.
3083
3146
  */
@@ -3285,82 +3348,6 @@ declare namespace sap {
3285
3348
  size?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3286
3349
  }
3287
3350
 
3288
- /**
3289
- * Describes the settings that can be provided to the Paginator constructor.
3290
- */
3291
- interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
3292
- /**
3293
- * Title of the object that is readout by screen readers when the next/previous item is loaded via keyboard
3294
- * focus on the paginator button.
3295
- */
3296
- ariaTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3297
- }
3298
-
3299
- /**
3300
- * Describes the settings that can be provided to the RichTextEditorWithMetadata constructor.
3301
- */
3302
- interface $RichTextEditorWithMetadataSettings
3303
- extends sap.ui.core.$ControlSettings {
3304
- /**
3305
- * With the 'buttonGroups' attribute, you can customize the buttons that are displayed on the toolbar of
3306
- * the editor.
3307
- */
3308
- buttonGroups?:
3309
- | any[]
3310
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3311
- | `{${string}}`;
3312
-
3313
- /**
3314
- * The context path of the property displayed
3315
- */
3316
- contextPath?:
3317
- | sap.ui.model.Context
3318
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3319
- | `{${string}}`;
3320
-
3321
- /**
3322
- * With the 'excludeDefaultPlugins' you can ask to remove the plugins that will be added by default
3323
- * The default plugins are "emoticons" "directionality" "image" "table" "link" "powerpaste".
3324
- */
3325
- excludeDefaultPlugins?:
3326
- | boolean
3327
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3328
- | `{${string}}`;
3329
-
3330
- /**
3331
- * The metaPath of the displayed property
3332
- */
3333
- metaPath?:
3334
- | sap.ui.model.Context
3335
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3336
- | `{${string}}`;
3337
-
3338
- /**
3339
- * With the 'plugins' attribute you can customize the plugins that will be loaded by the editor.
3340
- */
3341
- plugins?:
3342
- | any[]
3343
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3344
- | `{${string}}`;
3345
-
3346
- /**
3347
- * Use the readOnly attribute to override the edit flow of the page.
3348
- * By setting 'readOnly' to true, a FormattedText is displayed instead of the editor.
3349
- */
3350
- readOnly?:
3351
- | boolean
3352
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3353
- | `{${string}}`;
3354
-
3355
- /**
3356
- * Use the 'required' attribute, to make sure that the editor is filled with some text.
3357
- */
3358
- required?:
3359
- | boolean
3360
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3361
- | `{${string}}`;
3362
- }
3363
-
3364
3351
  /**
3365
3352
  * Describes the settings that can be provided to the Share constructor.
3366
3353
  */
@@ -3993,6 +3980,7 @@ declare namespace sap {
3993
3980
 
3994
3981
  /**
3995
3982
  * Building block used to create a chart based on the metadata provided by OData V4.
3983
+ * {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/chart/chartDefault Overview of Building Blocks}
3996
3984
  *
3997
3985
  *
3998
3986
  * Usually, a contextPath and metaPath is expected.
@@ -4284,6 +4272,20 @@ declare namespace sap {
4284
4272
  * @experimental (since 1.118.0)
4285
4273
  */
4286
4274
  class MultiValueField extends sap.fe.core.buildingBlocks.BuildingBlock {}
4275
+ /**
4276
+ * Building block used to create a paginator control.
4277
+ * Usage example:
4278
+ *
4279
+ * ```javascript
4280
+ *
4281
+ * <macros:Paginator />
4282
+ * ```
4283
+ *
4284
+ *
4285
+ *
4286
+ * @since 1.94.0
4287
+ */
4288
+ class Paginator extends sap.fe.core.buildingBlocks.BuildingBlock {}
4287
4289
  /**
4288
4290
  * Building block that exposes the RichTextEditor UI5 control.
4289
4291
  * It's used to enter formatted text, and uses the third-party component called TinyMCE.
@@ -4292,6 +4294,28 @@ declare namespace sap {
4292
4294
  * @since 1.117.0
4293
4295
  */
4294
4296
  class RichTextEditor extends sap.fe.core.buildingBlocks.BuildingBlock {}
4297
+ /**
4298
+ * Metadata-driven building block that exposes the RichTextEditor UI5 control.
4299
+ * It's used to enter formatted text and uses the third-party component called TinyMCE.
4300
+ *
4301
+ *
4302
+ * @since 1.117.0
4303
+ */
4304
+ class RichTextEditorWithMetadata extends sap.fe.macros.RichTextEditor {}
4305
+ /**
4306
+ * Building block used to create a Variant Management based on the metadata provided by OData V4.
4307
+ * Usage example:
4308
+ *
4309
+ * ```javascript
4310
+ *
4311
+ * <macro:VariantManagement
4312
+ * id="SomeUniqueIdentifier"
4313
+ * for="{listOfControlIds>}"
4314
+ * />
4315
+ * ```
4316
+ */
4317
+ class VariantManagement extends sap.fe.core.buildingBlocks
4318
+ .BuildingBlock {}
4295
4319
  /**
4296
4320
  * Building block for adding overflow toolbar buttons to integrate into the flexible column layout support
4297
4321
  * from Fiori elements.
@@ -4321,6 +4345,8 @@ declare namespace sap {
4321
4345
  *
4322
4346
  * <macros:Field id="MyField" metaPath="MyProperty" />
4323
4347
  * ```
4348
+ *
4349
+ * Overview of Building Blocks
4324
4350
  */
4325
4351
  class Field extends sap.fe.macros.MacroAPI {
4326
4352
  /**
@@ -4581,32 +4607,11 @@ declare namespace sap {
4581
4607
  class FormElement extends sap.ui.core.Control {}
4582
4608
  /**
4583
4609
  * Building block used to create a MicroChart based on the metadata provided by OData V4.
4610
+ * {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/microchart/microChartDefault Overview of Building Blocks}
4584
4611
  *
4585
4612
  * @since 1.93.0
4586
4613
  */
4587
4614
  class MicroChart extends sap.ui.core.Control {}
4588
- /**
4589
- * Building block used to create a paginator control.
4590
- * Usage example:
4591
- *
4592
- * ```javascript
4593
- *
4594
- * <macros:Paginator />
4595
- * ```
4596
- *
4597
- *
4598
- *
4599
- * @since 1.94.0
4600
- */
4601
- class Paginator extends sap.ui.core.Control {}
4602
- /**
4603
- * Metadata-driven building block that exposes the RichTextEditor UI5 control.
4604
- * It's used to enter formatted text and uses the third-party component called TinyMCE.
4605
- *
4606
- *
4607
- * @since 1.117.0
4608
- */
4609
- class RichTextEditorWithMetadata extends sap.ui.core.Control {}
4610
4615
  /**
4611
4616
  * Building block used to create the ‘Share’ functionality.
4612
4617
  *
@@ -5136,7 +5141,7 @@ declare namespace sap {
5136
5141
 
5137
5142
  "sap/fe/macros/MultiValueField": undefined;
5138
5143
 
5139
- "sap/fe/macros/paginator/Paginator.block": undefined;
5144
+ "sap/fe/macros/Paginator": undefined;
5140
5145
 
5141
5146
  "sap/fe/macros/RichTextEditor": undefined;
5142
5147
 
@@ -5144,7 +5149,7 @@ declare namespace sap {
5144
5149
 
5145
5150
  "sap/fe/macros/richtexteditor/Plugin": undefined;
5146
5151
 
5147
- "sap/fe/macros/richtexteditor/RichTextEditorWithMetadata.block": undefined;
5152
+ "sap/fe/macros/RichTextEditorWithMetadata": undefined;
5148
5153
 
5149
5154
  "sap/fe/macros/share/Share.block": undefined;
5150
5155
 
@@ -5165,5 +5170,7 @@ declare namespace sap {
5165
5170
  "sap/fe/macros/table/TreeTable.block": undefined;
5166
5171
 
5167
5172
  "sap/fe/macros/table/TreeTableCreationOptions": undefined;
5173
+
5174
+ "sap/fe/macros/VariantManagement": undefined;
5168
5175
  }
5169
5176
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.131.0
1
+ // For Library Version: 1.132.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**