@sapui5/ts-types 1.131.1 → 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 (69) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +7 -7
  3. package/types/sap.apf.d.ts +1 -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.cux.home.d.ts +8 -0
  8. package/types/sap.esh.search.ui.d.ts +38 -1
  9. package/types/sap.f.d.ts +95 -187
  10. package/types/sap.fe.base.d.ts +1 -1
  11. package/types/sap.fe.controls.d.ts +1 -1
  12. package/types/sap.fe.core.d.ts +1 -1
  13. package/types/sap.fe.ina.d.ts +1 -1
  14. package/types/sap.fe.macros.d.ts +108 -101
  15. package/types/sap.fe.navigation.d.ts +1 -1
  16. package/types/sap.fe.placeholder.d.ts +1 -1
  17. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  18. package/types/sap.fe.templates.d.ts +1 -1
  19. package/types/sap.fe.test.d.ts +1 -1
  20. package/types/sap.fe.tools.d.ts +1 -1
  21. package/types/sap.feedback.ui.d.ts +1 -1
  22. package/types/sap.gantt.d.ts +1 -1
  23. package/types/sap.insights.d.ts +1 -1
  24. package/types/{mobile-1.131.0-d.ts → sap.m.d.ts} +390 -47
  25. package/types/sap.makit.d.ts +1 -1
  26. package/types/sap.me.d.ts +1 -1
  27. package/types/sap.ndc.d.ts +1 -1
  28. package/types/sap.ovp.d.ts +7 -2
  29. package/types/sap.rules.ui.d.ts +84 -1
  30. package/types/sap.sac.df.d.ts +978 -623
  31. package/types/sap.suite.ui.commons.d.ts +1 -1
  32. package/types/sap.suite.ui.generic.template.d.ts +7 -7
  33. package/types/sap.suite.ui.microchart.d.ts +1 -1
  34. package/types/{tnt-1.131.0-d.ts → sap.tnt.d.ts} +1 -1
  35. package/types/sap.ui.codeeditor.d.ts +1 -1
  36. package/types/{commons-1.131.0-d.ts → sap.ui.commons.d.ts} +1 -1
  37. package/types/sap.ui.comp.d.ts +59 -5
  38. package/types/{core-1.131.0-d.ts → sap.ui.core.d.ts} +363 -282
  39. package/types/{dt-1.131.0-d.ts → sap.ui.dt.d.ts} +1 -1
  40. package/types/sap.ui.export.d.ts +1 -1
  41. package/types/sap.ui.fl.d.ts +7 -1
  42. package/types/sap.ui.generic.app.d.ts +5 -11
  43. package/types/sap.ui.generic.template.d.ts +1 -1
  44. package/types/sap.ui.integration.d.ts +1 -1
  45. package/types/sap.ui.layout.d.ts +1 -1
  46. package/types/{mdc-1.131.0-d.ts → sap.ui.mdc.d.ts} +330 -229
  47. package/types/sap.ui.richtexteditor.d.ts +1 -1
  48. package/types/sap.ui.rta.d.ts +3 -1
  49. package/types/sap.ui.suite.d.ts +1 -1
  50. package/types/sap.ui.support.d.ts +1 -1
  51. package/types/sap.ui.table.d.ts +13 -1
  52. package/types/sap.ui.testrecorder.d.ts +1 -1
  53. package/types/sap.ui.unified.d.ts +25 -15
  54. package/types/{ux3-1.131.0-d.ts → sap.ui.ux3.d.ts} +1 -1
  55. package/types/sap.ui.vbm.d.ts +1 -1
  56. package/types/sap.ui.vk.d.ts +100 -1
  57. package/types/sap.ui.vtm.d.ts +1 -1
  58. package/types/sap.ui.webc.common.d.ts +1 -1
  59. package/types/sap.ui.webc.fiori.d.ts +1 -1
  60. package/types/sap.ui.webc.main.d.ts +1 -1
  61. package/types/sap.uiext.inbox.d.ts +1 -1
  62. package/types/sap.ushell.d.ts +5 -1
  63. package/types/sap.ushell_abap.d.ts +1 -1
  64. package/types/sap.uxap.d.ts +1 -1
  65. package/types/sap.viz.d.ts +1 -1
  66. package/types/sap.webanalytics.core.d.ts +1 -1
  67. package/types/sap.zen.commons.d.ts +1 -1
  68. package/types/sap.zen.crosstab.d.ts +1 -1
  69. 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 sac {
@@ -87,6 +87,367 @@ declare namespace sap {
87
87
  }
88
88
 
89
89
  namespace model {
90
+ namespace visualization {
91
+ namespace Grid {
92
+ /**
93
+ * AxesLayout object type.
94
+ */
95
+ type AxesLayout = {
96
+ /**
97
+ * dimensions on column axis
98
+ */
99
+ Columns: string[];
100
+ /**
101
+ * dimensions on row axis
102
+ */
103
+ Rows: string[];
104
+ };
105
+ }
106
+
107
+ /**
108
+ * Documents manager object
109
+ *
110
+ * **Structure of Exposed Data:**
111
+ * ```javascript
112
+ *
113
+ * "ActiveDocumentsDirectory": "",
114
+ * "DocumentsSupportType": ""
115
+ * "IsBasedOnCDSView": ""
116
+ * ```
117
+ *
118
+ *
119
+ * @since 1.119
120
+ * @experimental (since 1.119)
121
+ */
122
+ class Documents extends sap.ui.base.Object {
123
+ /**
124
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
125
+ */
126
+ protected constructor();
127
+
128
+ ActiveDocumentsDirectory: undefined;
129
+
130
+ DocumentsSupportType: undefined;
131
+
132
+ IsBasedOnCDSView: undefined;
133
+
134
+ /**
135
+ * Creates a new subclass of class sap.sac.df.model.visualization.Documents with name `sClassName` and enriches
136
+ * it with the information contained in `oClassInfo`.
137
+ *
138
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
139
+ *
140
+ *
141
+ * @returns Created class / constructor function
142
+ */
143
+ static extend<T extends Record<string, unknown>>(
144
+ /**
145
+ * Name of the class being created
146
+ */
147
+ sClassName: string,
148
+ /**
149
+ * Object literal with information about the class
150
+ */
151
+ oClassInfo?: sap.ClassInfo<
152
+ T,
153
+ sap.sac.df.model.visualization.Documents
154
+ >,
155
+ /**
156
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
157
+ * used by this class
158
+ */
159
+ FNMetaImpl?: Function
160
+ ): Function;
161
+ /**
162
+ * Returns a metadata object for class sap.sac.df.model.visualization.Documents.
163
+ *
164
+ *
165
+ * @returns Metadata object describing this class
166
+ */
167
+ static getMetadata(): sap.ui.base.Metadata;
168
+ /**
169
+ * Create and retrieve document in the document store
170
+ *
171
+ *
172
+ * @returns a promise which resolves with the newly created document.
173
+ */
174
+ createAndRetrieveDocument(
175
+ /**
176
+ * the document ID
177
+ */
178
+ sDocumentId: undefined,
179
+ /**
180
+ * the content of the document
181
+ */
182
+ sContent: undefined,
183
+ /**
184
+ * properties (ideally as key-value-pair)
185
+ */
186
+ oProperties: undefined
187
+ ): Promise<object>;
188
+ /**
189
+ * Create a document in the document store
190
+ *
191
+ *
192
+ * @returns a promise which resolves to true if create operation is successful, otherwise false.
193
+ */
194
+ createDocument(
195
+ /**
196
+ * the document ID
197
+ */
198
+ sDocumentId: undefined,
199
+ /**
200
+ * the content of the document
201
+ */
202
+ sContent: undefined,
203
+ /**
204
+ * properties (ideally as key-value-pair)
205
+ */
206
+ oProperties: undefined
207
+ ): Promise<boolean>;
208
+ /**
209
+ * Creates a document ID for a data cell in the result set
210
+ *
211
+ *
212
+ * @returns a promise which resolves with the newly created document ID
213
+ */
214
+ createDocumentId(
215
+ /**
216
+ * the row index
217
+ */
218
+ nRowIndex: int,
219
+ /**
220
+ * the column index
221
+ */
222
+ nColumnIndex: int
223
+ ): Promise<String>;
224
+ /**
225
+ * Delete a document in the document store
226
+ *
227
+ *
228
+ * @returns a promise which resolves to true if delete operation is successful, otherwise false.
229
+ */
230
+ deleteDocument(
231
+ /**
232
+ * the document ID
233
+ */
234
+ sDocumentId: undefined
235
+ ): Promise<boolean>;
236
+ /**
237
+ * Delete a document ID for a data cell in the result set
238
+ *
239
+ *
240
+ * @returns a promise which resolves to true if the delete operation is successful, otherwise false.
241
+ */
242
+ deleteDocumentId(
243
+ /**
244
+ * the row index
245
+ */
246
+ nRowIndex: int,
247
+ /**
248
+ * the column index
249
+ */
250
+ nColumnIndex: int
251
+ ): Promise<boolean>;
252
+ /**
253
+ * Get a document ID of a data cell in the result set
254
+ *
255
+ *
256
+ * @returns a promise which resolves with the document ID
257
+ */
258
+ getDocumentId(
259
+ /**
260
+ * the row index
261
+ */
262
+ nRowIndex: int,
263
+ /**
264
+ * the column index
265
+ */
266
+ nColumnIndex: int
267
+ ): Promise<String>;
268
+ /**
269
+ * Get the type of documents support.
270
+ *
271
+ *
272
+ * @returns documents support type
273
+ */
274
+ getDocumentsSupportType(): sap.sac.df.types.DocumentsSupportType;
275
+ /**
276
+ * Retrieves a document from the document store
277
+ *
278
+ *
279
+ * @returns a promise which resolves with the version(s) of the document.
280
+ */
281
+ retrieveDocument(
282
+ /**
283
+ * the document ID
284
+ */
285
+ sDocumentId: undefined,
286
+ /**
287
+ * the version of the document - if version is not supplied, returns all versions.
288
+ */
289
+ sVersion: undefined
290
+ ): Promise<object>;
291
+ /**
292
+ * Retrieve multiple documents from the document store
293
+ *
294
+ *
295
+ * @returns a promise which resolves with all documents and its versions.
296
+ */
297
+ retrieveMultipleDocuments(
298
+ /**
299
+ * the array of document IDs
300
+ */
301
+ aDocumentIds: undefined
302
+ ): Promise<object>;
303
+ /**
304
+ * Is document storage supporting delete access
305
+ *
306
+ *
307
+ * @returns if delete access is supported
308
+ */
309
+ supportsDelete(): boolean;
310
+ /**
311
+ * Is document storage supporting read access
312
+ *
313
+ *
314
+ * @returns if read access is supported
315
+ */
316
+ supportsRead(): boolean;
317
+ /**
318
+ * Is document storage supporting write (create and change) access
319
+ *
320
+ *
321
+ * @returns if write (create and change) access is supported
322
+ */
323
+ supportsWrite(): boolean;
324
+ }
325
+ /**
326
+ * Grid Visualization Object
327
+ *
328
+ * @since 1.132
329
+ * @experimental (since 1.132)
330
+ */
331
+ class Grid extends sap.ui.base.Object {
332
+ /**
333
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
334
+ */
335
+ protected constructor();
336
+
337
+ /**
338
+ * Creates a new subclass of class sap.sac.df.model.visualization.Grid with name `sClassName` and enriches
339
+ * it with the information contained in `oClassInfo`.
340
+ *
341
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
342
+ *
343
+ *
344
+ * @returns Created class / constructor function
345
+ */
346
+ static extend<T extends Record<string, unknown>>(
347
+ /**
348
+ * Name of the class being created
349
+ */
350
+ sClassName: string,
351
+ /**
352
+ * Object literal with information about the class
353
+ */
354
+ oClassInfo?: sap.ClassInfo<
355
+ T,
356
+ sap.sac.df.model.visualization.Grid
357
+ >,
358
+ /**
359
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
360
+ * used by this class
361
+ */
362
+ FNMetaImpl?: Function
363
+ ): Function;
364
+ /**
365
+ * Returns a metadata object for class sap.sac.df.model.visualization.Grid.
366
+ *
367
+ *
368
+ * @returns Metadata object describing this class
369
+ */
370
+ static getMetadata(): sap.ui.base.Metadata;
371
+ /**
372
+ * Active styling template
373
+ *
374
+ *
375
+ * @returns resolving to the visualization object
376
+ */
377
+ activateStylingTemplate(
378
+ /**
379
+ * styling template name
380
+ */
381
+ sStylingTemplateName: string
382
+ ): Promise<any>;
383
+ /**
384
+ * Get the current axes layout for rows and columns
385
+ *
386
+ *
387
+ * @returns columns and rows axes layout object
388
+ */
389
+ getAxesLayout(): sap.sac.df.model.visualization.Grid.AxesLayout;
390
+ /**
391
+ * Gets the cell context for a data cell in the result set
392
+ *
393
+ *
394
+ * @returns a promise which resolves with the retrieved cell context
395
+ */
396
+ getCellContext(
397
+ /**
398
+ * the row index
399
+ */
400
+ nRowIndex: int,
401
+ /**
402
+ * the column index
403
+ */
404
+ nColumnIndex: int
405
+ ): Promise<Object>;
406
+ /**
407
+ * Get the list of the jump targets associated to a cell defined via the Report-To-Report Interface.
408
+ *
409
+ *
410
+ * @returns resolving to the List of jump targets.
411
+ */
412
+ getRRITargets(
413
+ /**
414
+ * Row of the data cell
415
+ */
416
+ iRowIndex: int,
417
+ /**
418
+ * Column of the data cell
419
+ */
420
+ iColumnIndex: int
421
+ ): Promise<any>;
422
+ /**
423
+ * Get the data of the visualization
424
+ * ```javascript
425
+ *
426
+ * "Cells": [],
427
+ * "TotalColumns": Integer,
428
+ * "TotalRows": Integer
429
+ * ```
430
+ *
431
+ *
432
+ *
433
+ * @returns a promise which resolves with the visualization data
434
+ */
435
+ getVisualizationData(): Promise<Object>;
436
+ /**
437
+ * Set the dimensions on row and column axis
438
+ *
439
+ *
440
+ * @returns resolving to the axes layout object to allow chaining
441
+ */
442
+ setAxesLayout(
443
+ /**
444
+ * an object containing the names of the dimensions on row and column axis. The order of the dimensions
445
+ * control the position on the axis.
446
+ */
447
+ oAxisLayout: sap.sac.df.model.visualization.Grid.AxesLayout
448
+ ): sap.sac.df.model.visualization.Grid;
449
+ }
450
+ }
90
451
  /**
91
452
  * Parameters of the DataProvider#dataUpdated event.
92
453
  */
@@ -144,6 +505,7 @@ declare namespace sap {
144
505
  *
145
506
  *
146
507
  * @since 1.119
508
+ * @deprecated (since 1.132) - Replaced by {@link sap.sac.df.model.visualization.Grid Grid}.
147
509
  * @experimental (since 1.119)
148
510
  */
149
511
  class AxesLayout extends sap.ui.base.Object {
@@ -202,6 +564,182 @@ declare namespace sap {
202
564
  aDimensionOnColumnsAxis: string[]
203
565
  ): sap.sac.df.model.AxesLayout;
204
566
  }
567
+ /**
568
+ * Configuration of the multidimensional model and its components
569
+ *
570
+ * @since 1.132
571
+ * @experimental (since 1.132)
572
+ */
573
+ class Configuration extends sap.ui.base.Object {
574
+ /**
575
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
576
+ */
577
+ protected constructor();
578
+
579
+ /**
580
+ * Creates a new subclass of class sap.sac.df.model.Configuration with name `sClassName` and enriches it
581
+ * with the information contained in `oClassInfo`.
582
+ *
583
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
584
+ *
585
+ *
586
+ * @returns Created class / constructor function
587
+ */
588
+ static extend<T extends Record<string, unknown>>(
589
+ /**
590
+ * Name of the class being created
591
+ */
592
+ sClassName: string,
593
+ /**
594
+ * Object literal with information about the class
595
+ */
596
+ oClassInfo?: sap.ClassInfo<T, sap.sac.df.model.Configuration>,
597
+ /**
598
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
599
+ * used by this class
600
+ */
601
+ FNMetaImpl?: Function
602
+ ): Function;
603
+ /**
604
+ * Returns a metadata object for class sap.sac.df.model.Configuration.
605
+ *
606
+ *
607
+ * @returns Metadata object describing this class
608
+ */
609
+ static getMetadata(): sap.ui.base.Metadata;
610
+ /**
611
+ * Gets current value of property {@link #getCalculations Calculations}.
612
+ *
613
+ * Calculations
614
+ *
615
+ * Default value is `true`.
616
+ *
617
+ * @since 1.132
618
+ * @experimental (since 1.132)
619
+ *
620
+ * @returns Value of property `Calculations`
621
+ */
622
+ getCalculations(): boolean;
623
+ /**
624
+ * Gets current value of property {@link #getCommenting Commenting}.
625
+ *
626
+ * Commenting
627
+ *
628
+ * Default value is `false`.
629
+ *
630
+ * @since 1.132
631
+ * @experimental (since 1.132)
632
+ *
633
+ * @returns Value of property `Commenting`
634
+ */
635
+ getCommenting(): boolean;
636
+ /**
637
+ * Gets current value of property {@link #getContextMenuVariant ContextMenuVariant}.
638
+ *
639
+ * Variant of context menu configuration
640
+ *
641
+ * Default value is `sapui5`.
642
+ *
643
+ * @since 1.132
644
+ * @experimental (since 1.132)
645
+ *
646
+ * @returns Value of property `ContextMenuVariant`
647
+ */
648
+ getContextMenuVariant(): /* was: sap.sac.df.types.configuration.ContextMenuVariant */ any;
649
+ /**
650
+ * Gets current value of property {@link #getStylingPanelItems StylingPanelItems}.
651
+ *
652
+ * Styling Panel Items
653
+ *
654
+ * Default value is `[TableProperties, NumberFormatting]`.
655
+ *
656
+ * @since 1.132
657
+ * @experimental (since 1.132)
658
+ *
659
+ * @returns Value of property `StylingPanelItems`
660
+ */
661
+ getStylingPanelItems(): sap.sac.df.types.configuration.StylingPanelItem[];
662
+ /**
663
+ * Sets a new value for property {@link #getCalculations Calculations}.
664
+ *
665
+ * Calculations
666
+ *
667
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
668
+ *
669
+ * Default value is `true`.
670
+ *
671
+ * @since 1.132
672
+ * @experimental (since 1.132)
673
+ *
674
+ * @returns Reference to `this` in order to allow method chaining
675
+ */
676
+ setCalculations(
677
+ /**
678
+ * New value for property `Calculations`
679
+ */
680
+ bCalculations?: boolean
681
+ ): this;
682
+ /**
683
+ * Sets a new value for property {@link #getCommenting Commenting}.
684
+ *
685
+ * Commenting
686
+ *
687
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
688
+ *
689
+ * Default value is `false`.
690
+ *
691
+ * @since 1.132
692
+ * @experimental (since 1.132)
693
+ *
694
+ * @returns Reference to `this` in order to allow method chaining
695
+ */
696
+ setCommenting(
697
+ /**
698
+ * New value for property `Commenting`
699
+ */
700
+ bCommenting?: boolean
701
+ ): this;
702
+ /**
703
+ * Sets a new value for property {@link #getContextMenuVariant ContextMenuVariant}.
704
+ *
705
+ * Variant of context menu configuration
706
+ *
707
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
708
+ *
709
+ * Default value is `sapui5`.
710
+ *
711
+ * @since 1.132
712
+ * @experimental (since 1.132)
713
+ *
714
+ * @returns Reference to `this` in order to allow method chaining
715
+ */
716
+ setContextMenuVariant(
717
+ /**
718
+ * New value for property `ContextMenuVariant`
719
+ */
720
+ sContextMenuVariant?: /* was: sap.sac.df.types.configuration.ContextMenuVariant */ any
721
+ ): this;
722
+ /**
723
+ * Sets a new value for property {@link #getStylingPanelItems StylingPanelItems}.
724
+ *
725
+ * Styling Panel Items
726
+ *
727
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
728
+ *
729
+ * Default value is `[TableProperties, NumberFormatting]`.
730
+ *
731
+ * @since 1.132
732
+ * @experimental (since 1.132)
733
+ *
734
+ * @returns Reference to `this` in order to allow method chaining
735
+ */
736
+ setStylingPanelItems(
737
+ /**
738
+ * New value for property `StylingPanelItems`
739
+ */
740
+ sStylingPanelItems?: sap.sac.df.types.configuration.StylingPanelItem[]
741
+ ): this;
742
+ }
205
743
  /**
206
744
  * A data provider is an analytical query exposed via an analytical engine and accessed via InA protocol.
207
745
  * It represents a navigable query manager and allows to access and change data. Instances of this class
@@ -215,11 +753,6 @@ declare namespace sap {
215
753
  * "Variables": { }
216
754
  * "Dimensions": { },
217
755
  * "Measures": [ ],
218
- * "AxesLayout": {
219
- * "Columns": [],
220
- * "Rows": []
221
- * },
222
- * "Grid": { },
223
756
  * "Messages": [ ]
224
757
  * "AutoFetchEnabled": ""
225
758
  * ```
@@ -253,11 +786,6 @@ declare namespace sap {
253
786
  */
254
787
  Dimensions: Record<string, sap.sac.df.model.Dimension>;
255
788
 
256
- /**
257
- * Grid
258
- */
259
- Grid: sap.sac.df.model.Grid;
260
-
261
789
  /**
262
790
  * Measures
263
791
  */
@@ -271,7 +799,10 @@ declare namespace sap {
271
799
  /**
272
800
  * Visualizations
273
801
  */
274
- Visualizations: Record<string, sap.sac.df.model.Visualization>;
802
+ Visualizations: Record<
803
+ string,
804
+ /* was: sap.sac.df.model.Visualization */ any
805
+ >;
275
806
 
276
807
  /**
277
808
  * Creates a new subclass of class sap.sac.df.model.DataProvider with name `sClassName` and enriches it
@@ -642,301 +1173,6 @@ declare namespace sap {
642
1173
  */
643
1174
  toRows(): this;
644
1175
  }
645
- /**
646
- * Documents manager object
647
- *
648
- * **Structure of Exposed Data:**
649
- * ```javascript
650
- *
651
- * "ActiveDocumentsDirectory": "",
652
- * "DocumentsSupportType": ""
653
- * "IsBasedOnCDSView": ""
654
- * ```
655
- *
656
- *
657
- * @since 1.119
658
- * @experimental (since 1.119)
659
- */
660
- class Documents extends sap.ui.base.Object {
661
- /**
662
- * @ui5-protected Do not call from applications (only from related classes in the framework)
663
- */
664
- protected constructor();
665
-
666
- ActiveDocumentsDirectory: undefined;
667
-
668
- DocumentsSupportType: undefined;
669
-
670
- IsBasedOnCDSView: undefined;
671
-
672
- /**
673
- * Creates a new subclass of class sap.sac.df.model.Documents with name `sClassName` and enriches it with
674
- * the information contained in `oClassInfo`.
675
- *
676
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
677
- *
678
- *
679
- * @returns Created class / constructor function
680
- */
681
- static extend<T extends Record<string, unknown>>(
682
- /**
683
- * Name of the class being created
684
- */
685
- sClassName: string,
686
- /**
687
- * Object literal with information about the class
688
- */
689
- oClassInfo?: sap.ClassInfo<T, sap.sac.df.model.Documents>,
690
- /**
691
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
692
- * used by this class
693
- */
694
- FNMetaImpl?: Function
695
- ): Function;
696
- /**
697
- * Returns a metadata object for class sap.sac.df.model.Documents.
698
- *
699
- *
700
- * @returns Metadata object describing this class
701
- */
702
- static getMetadata(): sap.ui.base.Metadata;
703
- /**
704
- * Create and retrieve document in the document store
705
- *
706
- *
707
- * @returns a promise which resolves with the newly created document.
708
- */
709
- createAndRetrieveDocument(
710
- /**
711
- * the document ID
712
- */
713
- sDocumentId: undefined,
714
- /**
715
- * the content of the document
716
- */
717
- sContent: undefined,
718
- /**
719
- * properties (ideally as key-value-pair)
720
- */
721
- oProperties: undefined
722
- ): Promise<object>;
723
- /**
724
- * Create a document in the document store
725
- *
726
- *
727
- * @returns a promise which resolves to true if create operation is successful, otherwise false.
728
- */
729
- createDocument(
730
- /**
731
- * the document ID
732
- */
733
- sDocumentId: undefined,
734
- /**
735
- * the content of the document
736
- */
737
- sContent: undefined,
738
- /**
739
- * properties (ideally as key-value-pair)
740
- */
741
- oProperties: undefined
742
- ): Promise<boolean>;
743
- /**
744
- * Creates a document ID for a data cell in the result set
745
- *
746
- *
747
- * @returns a promise which resolves with the newly created document ID
748
- */
749
- createDocumentId(
750
- /**
751
- * the row index
752
- */
753
- nRowIndex: int,
754
- /**
755
- * the column index
756
- */
757
- nColumnIndex: int
758
- ): Promise<String>;
759
- /**
760
- * Delete a document in the document store
761
- *
762
- *
763
- * @returns a promise which resolves to true if delete operation is successful, otherwise false.
764
- */
765
- deleteDocument(
766
- /**
767
- * the document ID
768
- */
769
- sDocumentId: undefined
770
- ): Promise<boolean>;
771
- /**
772
- * Delete a document ID for a data cell in the result set
773
- *
774
- *
775
- * @returns a promise which resolves to true if the delete operation is successful, otherwise false.
776
- */
777
- deleteDocumentId(
778
- /**
779
- * the row index
780
- */
781
- nRowIndex: int,
782
- /**
783
- * the column index
784
- */
785
- nColumnIndex: int
786
- ): Promise<boolean>;
787
- /**
788
- * Get a document ID of a data cell in the result set
789
- *
790
- *
791
- * @returns a promise which resolves with the document ID
792
- */
793
- getDocumentId(
794
- /**
795
- * the row index
796
- */
797
- nRowIndex: int,
798
- /**
799
- * the column index
800
- */
801
- nColumnIndex: int
802
- ): Promise<String>;
803
- /**
804
- * Get the type of documents support.
805
- *
806
- *
807
- * @returns documents support type
808
- */
809
- getDocumentsSupportType(): sap.sac.df.types.DocumentsSupportType;
810
- /**
811
- * Retrieves a document from the document store
812
- *
813
- *
814
- * @returns a promise which resolves with the version(s) of the document.
815
- */
816
- retrieveDocument(
817
- /**
818
- * the document ID
819
- */
820
- sDocumentId: undefined,
821
- /**
822
- * the version of the document - if version is not supplied, returns all versions.
823
- */
824
- sVersion: undefined
825
- ): Promise<object>;
826
- /**
827
- * Retrieve multiple documents from the document store
828
- *
829
- *
830
- * @returns a promise which resolves with all documents and its versions.
831
- */
832
- retrieveMultipleDocuments(
833
- /**
834
- * the array of document IDs
835
- */
836
- aDocumentIds: undefined
837
- ): Promise<object>;
838
- /**
839
- * Is document storage supporting delete access
840
- *
841
- *
842
- * @returns if delete access is supported
843
- */
844
- supportsDelete(): boolean;
845
- /**
846
- * Is document storage supporting read access
847
- *
848
- *
849
- * @returns if read access is supported
850
- */
851
- supportsRead(): boolean;
852
- /**
853
- * Is document storage supporting write (create and change) access
854
- *
855
- *
856
- * @returns if write (create and change) access is supported
857
- */
858
- supportsWrite(): boolean;
859
- }
860
- /**
861
- * Grid Object
862
- *
863
- * @since 1.119
864
- * @experimental (since 1.119)
865
- */
866
- class Grid extends sap.ui.base.Object {
867
- /**
868
- * @ui5-protected Do not call from applications (only from related classes in the framework)
869
- */
870
- protected constructor();
871
- /**
872
- * Documents
873
- */
874
- Documents: sap.sac.df.model.Documents;
875
-
876
- /**
877
- * Creates a new subclass of class sap.sac.df.model.Grid with name `sClassName` and enriches it with the
878
- * information contained in `oClassInfo`.
879
- *
880
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
881
- *
882
- *
883
- * @returns Created class / constructor function
884
- */
885
- static extend<T extends Record<string, unknown>>(
886
- /**
887
- * Name of the class being created
888
- */
889
- sClassName: string,
890
- /**
891
- * Object literal with information about the class
892
- */
893
- oClassInfo?: sap.ClassInfo<T, sap.sac.df.model.Grid>,
894
- /**
895
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
896
- * used by this class
897
- */
898
- FNMetaImpl?: Function
899
- ): Function;
900
- /**
901
- * Returns a metadata object for class sap.sac.df.model.Grid.
902
- *
903
- *
904
- * @returns Metadata object describing this class
905
- */
906
- static getMetadata(): sap.ui.base.Metadata;
907
- /**
908
- * Gets the cell context for a data cell in the result set
909
- *
910
- *
911
- * @returns a promise which resolves with the retrieved cell context
912
- */
913
- getCellContext(
914
- /**
915
- * the row index
916
- */
917
- nRowIndex: int,
918
- /**
919
- * the column index
920
- */
921
- nColumnIndex: int
922
- ): Promise<Object>;
923
- /**
924
- * Get the list of the jump targets associated to a cell defined via the Report-To-Report Interface.
925
- *
926
- *
927
- * @returns resolving to the List of jump targets.
928
- */
929
- getRRITargets(
930
- /**
931
- * Row of the data cell
932
- */
933
- iRowIndex: int,
934
- /**
935
- * Column of the data cell
936
- */
937
- iColumnIndex: int
938
- ): Promise<any>;
939
- }
940
1176
  /**
941
1177
  * The multidimensional model allows to access and change data accessed via the InA Protocol. The multidimensional
942
1178
  * model populate it's exposed data in JSON format via binding to controls.
@@ -970,10 +1206,7 @@ declare namespace sap {
970
1206
  /**
971
1207
  * Configuration
972
1208
  */
973
- Configuration: Record<
974
- string,
975
- /* was: sap.sac.df.model.Configuration */ any
976
- >;
1209
+ Configuration: Record<string, sap.sac.df.model.Configuration>;
977
1210
 
978
1211
  /**
979
1212
  * Data Providers
@@ -1045,52 +1278,24 @@ declare namespace sap {
1045
1278
  */
1046
1279
  sPackage?: string,
1047
1280
  /**
1048
- * Schema name
1049
- */
1050
- sSchema?: string,
1051
- /**
1052
- * Data source type
1053
- */
1054
- sDataSourceType?: sap.sac.df.types.DataSourceType,
1055
- /**
1056
- * if the data should be fetched automatically
1057
- */
1058
- bAutoFetchEnabled?: boolean
1059
- ): Promise<sap.sac.df.model.DataProvider>;
1060
- /**
1061
- * Creates a new variable group and attaches it to the model.
1062
- *
1063
- * A variable group defines which variables of the underlying data providers should behave as the same variable.
1064
- * The group is defined by a name and a rule. The first added variable becomes automatically the `MergedVariable`.
1065
- *
1066
- * @deprecated (since 1.124) - Replaced by {@link sap.sac.df.model.MultiDimModel#setVariableGroups setAutoFetchEnabled }
1067
- * API to set the variables.
1068
- *
1069
- * @returns Promise which resolves the created variable group
1070
- */
1071
- addVariableGroup(
1072
- /**
1073
- * Variable group name
1281
+ * Schema name
1074
1282
  */
1075
- sVariableGroupName: string,
1283
+ sSchema?: string,
1076
1284
  /**
1077
- * Rule is a function which accept the variable definition and decides if the variable has to be part of
1078
- * te group.
1285
+ * Data source type
1079
1286
  */
1080
- fnRule: Function,
1287
+ sDataSourceType?: sap.sac.df.types.DataSourceType,
1081
1288
  /**
1082
- * Additional properties
1289
+ * if the data should be fetched automatically
1083
1290
  */
1084
- oProperties: Object
1085
- ): Promise<sap.sac.df.model.VariableGroup>;
1291
+ bAutoFetchEnabled?: boolean
1292
+ ): Promise<sap.sac.df.model.DataProvider>;
1086
1293
  /**
1087
1294
  * Creates a new variable group and attaches it to the model.
1088
1295
  *
1089
1296
  * A variable group defines which variables of the underlying data providers should behave as the same variable.
1090
1297
  * The group is defined by a name and a rule. The first added variable becomes automatically the `MergedVariable`.
1091
1298
  *
1092
- * @deprecated (since 1.124) - Replaced by {@link sap.sac.df.model.MultiDimModel#setVariableGroups setAutoFetchEnabled }
1093
- * API to set the variables.
1094
1299
  *
1095
1300
  * @returns created variable group
1096
1301
  */
@@ -1174,12 +1379,12 @@ declare namespace sap {
1174
1379
  oParameters?: object
1175
1380
  ): this;
1176
1381
  /**
1177
- * Get configuration
1382
+ * Get context menu provider registry
1178
1383
  *
1179
1384
  *
1180
- * @returns Configuration object
1385
+ * @returns sap.sac.df.model.extentsions.contextMenu.ContextMenuProviderRegistry
1181
1386
  */
1182
- getConfiguration(): /* was: sap.sac.df.model.Configuration */ any;
1387
+ getContextMenuProviderRegistry(): undefined;
1183
1388
  /**
1184
1389
  * Get a data provider
1185
1390
  *
@@ -1199,6 +1404,13 @@ declare namespace sap {
1199
1404
  * @returns Object of all data providers
1200
1405
  */
1201
1406
  getDataProviders(): Record<string, sap.sac.df.model.DataProvider>;
1407
+ /**
1408
+ * Get grid styling template registry
1409
+ *
1410
+ *
1411
+ * @returns sap.sac.df.model.extentsions.styling.GridStylingTemplateRegistry
1412
+ */
1413
+ getGridStylingTemplateRegistry(): undefined;
1202
1414
  /**
1203
1415
  * Get all messages
1204
1416
  *
@@ -1244,20 +1456,6 @@ declare namespace sap {
1244
1456
  */
1245
1457
  sDataProviderName: string
1246
1458
  ): Promise<void>;
1247
- /**
1248
- * Remove a variable group from the model
1249
- *
1250
- * @deprecated (since 1.124) - Replaced by {@link sap.sac.df.model.MultiDimModel#setVariableGroups setAutoFetchEnabled }
1251
- * API to set the variables.
1252
- *
1253
- * @returns Promise which resolves when the removing s finished
1254
- */
1255
- removeVariableGroup(
1256
- /**
1257
- * Variable group name
1258
- */
1259
- sVariableGroupName: string
1260
- ): Promise<void>;
1261
1459
  /**
1262
1460
  * Reset the model to the initial state
1263
1461
  *
@@ -1616,50 +1814,6 @@ declare namespace sap {
1616
1814
  sKey: string
1617
1815
  ): this;
1618
1816
  }
1619
- /**
1620
- * Visualization Object
1621
- *
1622
- * @since 1.125
1623
- * @experimental (since 1.125)
1624
- */
1625
- class Visualization extends sap.ui.base.Object {
1626
- /**
1627
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1628
- */
1629
- protected constructor();
1630
-
1631
- /**
1632
- * Creates a new subclass of class sap.sac.df.model.Visualization with name `sClassName` and enriches it
1633
- * with the information contained in `oClassInfo`.
1634
- *
1635
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
1636
- *
1637
- *
1638
- * @returns Created class / constructor function
1639
- */
1640
- static extend<T extends Record<string, unknown>>(
1641
- /**
1642
- * Name of the class being created
1643
- */
1644
- sClassName: string,
1645
- /**
1646
- * Object literal with information about the class
1647
- */
1648
- oClassInfo?: sap.ClassInfo<T, sap.sac.df.model.Visualization>,
1649
- /**
1650
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1651
- * used by this class
1652
- */
1653
- FNMetaImpl?: Function
1654
- ): Function;
1655
- /**
1656
- * Returns a metadata object for class sap.sac.df.model.Visualization.
1657
- *
1658
- *
1659
- * @returns Metadata object describing this class
1660
- */
1661
- static getMetadata(): sap.ui.base.Metadata;
1662
- }
1663
1817
 
1664
1818
  /**
1665
1819
  * Event object of the DataProvider#dataUpdated event.
@@ -1735,6 +1889,48 @@ declare namespace sap {
1735
1889
  }
1736
1890
 
1737
1891
  namespace types {
1892
+ namespace configuration {
1893
+ /**
1894
+ * Item of the styling panel
1895
+ *
1896
+ * @since 1.132
1897
+ * @experimental (since 1.132)
1898
+ */
1899
+ enum StylingPanelItem {}
1900
+ }
1901
+
1902
+ /**
1903
+ * Axis of a multidimensional Result Set
1904
+ */
1905
+ enum Axis {
1906
+ /**
1907
+ * Columns axis (horizontal direction in a Grid)
1908
+ */
1909
+ Columns = "Columns",
1910
+ /**
1911
+ * Free axis (contains all dimensions that can be placed on the row/column axis)
1912
+ */
1913
+ Free = "Free",
1914
+ /**
1915
+ * Row axis (vertical direction in a Grid)
1916
+ */
1917
+ Rows = "Rows",
1918
+ }
1919
+ /**
1920
+ * DataAnalyzer Panels
1921
+ *
1922
+ * @experimental (since 1.132)
1923
+ */
1924
+ enum DataAnalyzerPanelName {
1925
+ /**
1926
+ * Designer Panel
1927
+ */
1928
+ Designer = "OlapDesignerDocument",
1929
+ /**
1930
+ * Styling Panel
1931
+ */
1932
+ Styling = "StylingPanelDocument",
1933
+ }
1738
1934
  /**
1739
1935
  * Type of a data source
1740
1936
  *
@@ -1851,6 +2047,34 @@ declare namespace sap {
1851
2047
  HANA = "HANA",
1852
2048
  }
1853
2049
  }
2050
+ /**
2051
+ * Describes the settings that can be provided to the DataAnalyzer constructor.
2052
+ *
2053
+ * @experimental (since 1.132)
2054
+ */
2055
+ interface $DataAnalyzerSettings extends sap.ui.core.$ControlSettings {
2056
+ /**
2057
+ * Defines the relative path to the data provider in the multidimensional model.
2058
+ */
2059
+ metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
2060
+
2061
+ /**
2062
+ * Selected panel item
2063
+ */
2064
+ selectedPanel?:
2065
+ | sap.sac.df.types.DataAnalyzerPanelName
2066
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2067
+ | `{${string}}`;
2068
+
2069
+ /**
2070
+ * Show visualization type
2071
+ */
2072
+ showVisualizationType?:
2073
+ | boolean
2074
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2075
+ | `{${string}}`;
2076
+ }
2077
+
1854
2078
  /**
1855
2079
  * Describes the settings that can be provided to the DesignerPanel constructor.
1856
2080
  *
@@ -1872,9 +2096,9 @@ declare namespace sap {
1872
2096
  | `{${string}}`;
1873
2097
 
1874
2098
  /**
1875
- * Hide 'Available Objects' pane upon initial load
2099
+ * Show available objects panel
1876
2100
  */
1877
- hideAvailableObjects?:
2101
+ showAvailableObjects?:
1878
2102
  | boolean
1879
2103
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1880
2104
  | `{${string}}`;
@@ -1907,6 +2131,7 @@ declare namespace sap {
1907
2131
  /**
1908
2132
  * Describes the settings that can be provided to the FlexAnalysis constructor.
1909
2133
  *
2134
+ * @deprecated (since 1.132) - Replaced by {@link sap.sac.df.DataAnalyzer DataAnalyzer} or {@link sap.sac.df.Grid Grid}.
1910
2135
  * @experimental
1911
2136
  */
1912
2137
  interface $FlexAnalysisSettings extends sap.ui.core.$ControlSettings {
@@ -2118,10 +2343,13 @@ declare namespace sap {
2118
2343
 
2119
2344
  /**
2120
2345
  * Custom panels for the flexible analysis control
2346
+ *
2347
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
2348
+ * provider.
2121
2349
  */
2122
2350
  customPanels?:
2123
- | sap.sac.df.FlexAnalysisPanel[]
2124
- | sap.sac.df.FlexAnalysisPanel
2351
+ | sap.ui.core.Control[]
2352
+ | sap.ui.core.Control
2125
2353
  | sap.ui.base.ManagedObject.AggregationBindingInfo
2126
2354
  | `{${string}}`;
2127
2355
 
@@ -2131,43 +2359,17 @@ declare namespace sap {
2131
2359
  onCellClick?: (oEvent: FlexAnalysis$OnCellClickEvent) => void;
2132
2360
  }
2133
2361
 
2134
- /**
2135
- * Describes the settings that can be provided to the FlexAnalysisPanel constructor.
2136
- *
2137
- * @experimental
2138
- */
2139
- interface $FlexAnalysisPanelSettings
2140
- extends sap.ui.core.$ElementSettings {
2141
- /**
2142
- * The description of the panel, displayed as tooltip on the side navigation item.
2143
- */
2144
- description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
2145
-
2146
- /**
2147
- * The title of the panel header.
2148
- */
2149
- title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
2150
-
2151
- /**
2152
- * The icon of the panel, displayed on the side navigation item and the panel header.
2153
- */
2154
- icon?:
2155
- | sap.ui.core.URI
2156
- | sap.ui.base.ManagedObject.PropertyBindingInfo
2157
- | `{${string}}`;
2158
-
2159
- /**
2160
- * The content of this panel
2161
- */
2162
- content?: sap.ui.core.Control;
2163
- }
2164
-
2165
2362
  /**
2166
2363
  * Describes the settings that can be provided to the Grid constructor.
2167
2364
  *
2168
2365
  * @experimental (since 1.129)
2169
2366
  */
2170
2367
  interface $GridSettings extends sap.ui.core.$ControlSettings {
2368
+ /**
2369
+ * Defines the relative path to the data provider in the multidimensional model.
2370
+ */
2371
+ metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
2372
+
2171
2373
  /**
2172
2374
  * Show / hide status bar
2173
2375
  */
@@ -2189,6 +2391,16 @@ declare namespace sap {
2189
2391
  */
2190
2392
  title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
2191
2393
 
2394
+ /**
2395
+ * Fires on cell click event
2396
+ */
2397
+ onCellClick?: (oEvent: Grid$OnCellClickEvent) => void;
2398
+ }
2399
+
2400
+ /**
2401
+ * Describes the settings that can be provided to the StylingPanel constructor.
2402
+ */
2403
+ interface $StylingPanelSettings extends sap.ui.core.$ControlSettings {
2192
2404
  /**
2193
2405
  * Defines the relative path to the data provider in the multidimensional model.
2194
2406
  */
@@ -2205,6 +2417,138 @@ declare namespace sap {
2205
2417
  cellContext?: object;
2206
2418
  }
2207
2419
 
2420
+ /**
2421
+ * Parameters of the Grid#onCellClick event.
2422
+ */
2423
+ interface Grid$OnCellClickEventParameters {
2424
+ /**
2425
+ * Cell context
2426
+ */
2427
+ cellContext?: object;
2428
+ }
2429
+
2430
+ /**
2431
+ * FlexAnalysis A control to display multi-dimensional data
2432
+ *
2433
+ * @experimental (since 1.132)
2434
+ */
2435
+ class DataAnalyzer extends sap.ui.core.Control {
2436
+ /**
2437
+ * Constructor for a new `DataAnalyzer` control.
2438
+ *
2439
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
2440
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
2441
+ * of the syntax of the settings object.
2442
+ */
2443
+ constructor();
2444
+
2445
+ /**
2446
+ * Creates a new subclass of class sap.sac.df.DataAnalyzer with name `sClassName` and enriches it with the
2447
+ * information contained in `oClassInfo`.
2448
+ *
2449
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2450
+ *
2451
+ *
2452
+ * @returns Created class / constructor function
2453
+ */
2454
+ static extend<T extends Record<string, unknown>>(
2455
+ /**
2456
+ * Name of the class being created
2457
+ */
2458
+ sClassName: string,
2459
+ /**
2460
+ * Object literal with information about the class
2461
+ */
2462
+ oClassInfo?: sap.ClassInfo<T, sap.sac.df.DataAnalyzer>,
2463
+ /**
2464
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2465
+ * used by this class
2466
+ */
2467
+ FNMetaImpl?: Function
2468
+ ): Function;
2469
+ /**
2470
+ * Returns a metadata object for class sap.sac.df.DataAnalyzer.
2471
+ *
2472
+ *
2473
+ * @returns Metadata object describing this class
2474
+ */
2475
+ static getMetadata(): sap.ui.core.ElementMetadata;
2476
+ /**
2477
+ * Gets current value of property {@link #getMetaPath metaPath}.
2478
+ *
2479
+ * Defines the relative path to the data provider in the multidimensional model.
2480
+ *
2481
+ *
2482
+ * @returns Value of property `metaPath`
2483
+ */
2484
+ getMetaPath(): string;
2485
+ /**
2486
+ * Gets current value of property {@link #getSelectedPanel selectedPanel}.
2487
+ *
2488
+ * Selected panel item
2489
+ *
2490
+ *
2491
+ * @returns Value of property `selectedPanel`
2492
+ */
2493
+ getSelectedPanel(): sap.sac.df.types.DataAnalyzerPanelName;
2494
+ /**
2495
+ * Gets current value of property {@link #getShowVisualizationType showVisualizationType}.
2496
+ *
2497
+ * Show visualization type
2498
+ *
2499
+ *
2500
+ * @returns Value of property `showVisualizationType`
2501
+ */
2502
+ getShowVisualizationType(): boolean;
2503
+ /**
2504
+ * Sets a new value for property {@link #getMetaPath metaPath}.
2505
+ *
2506
+ * Defines the relative path to the data provider in the multidimensional model.
2507
+ *
2508
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2509
+ *
2510
+ *
2511
+ * @returns Reference to `this` in order to allow method chaining
2512
+ */
2513
+ setMetaPath(
2514
+ /**
2515
+ * New value for property `metaPath`
2516
+ */
2517
+ sMetaPath: string
2518
+ ): this;
2519
+ /**
2520
+ * Sets a new value for property {@link #getSelectedPanel selectedPanel}.
2521
+ *
2522
+ * Selected panel item
2523
+ *
2524
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2525
+ *
2526
+ *
2527
+ * @returns Reference to `this` in order to allow method chaining
2528
+ */
2529
+ setSelectedPanel(
2530
+ /**
2531
+ * New value for property `selectedPanel`
2532
+ */
2533
+ sSelectedPanel: sap.sac.df.types.DataAnalyzerPanelName
2534
+ ): this;
2535
+ /**
2536
+ * Sets a new value for property {@link #getShowVisualizationType showVisualizationType}.
2537
+ *
2538
+ * Show visualization type
2539
+ *
2540
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2541
+ *
2542
+ *
2543
+ * @returns Reference to `this` in order to allow method chaining
2544
+ */
2545
+ setShowVisualizationType(
2546
+ /**
2547
+ * New value for property `showVisualizationType`
2548
+ */
2549
+ bShowVisualizationType: boolean
2550
+ ): this;
2551
+ }
2208
2552
  /**
2209
2553
  * DesignerPanel A panel control to design layouts / visualizations
2210
2554
  *
@@ -2251,17 +2595,6 @@ declare namespace sap {
2251
2595
  * @returns Metadata object describing this class
2252
2596
  */
2253
2597
  static getMetadata(): sap.ui.core.ElementMetadata;
2254
- /**
2255
- * Gets current value of property {@link #getHideAvailableObjects hideAvailableObjects}.
2256
- *
2257
- * Hide 'Available Objects' pane upon initial load
2258
- *
2259
- * Default value is `false`.
2260
- *
2261
- *
2262
- * @returns Value of property `hideAvailableObjects`
2263
- */
2264
- getHideAvailableObjects(): boolean;
2265
2598
  /**
2266
2599
  * Gets current value of property {@link #getMetaPath metaPath}.
2267
2600
  *
@@ -2272,6 +2605,17 @@ declare namespace sap {
2272
2605
  * @returns Value of property `metaPath`
2273
2606
  */
2274
2607
  getMetaPath(): string;
2608
+ /**
2609
+ * Gets current value of property {@link #getShowAvailableObjects showAvailableObjects}.
2610
+ *
2611
+ * Show available objects panel
2612
+ *
2613
+ * Default value is `true`.
2614
+ *
2615
+ *
2616
+ * @returns Value of property `showAvailableObjects`
2617
+ */
2618
+ getShowAvailableObjects(): boolean;
2275
2619
  /**
2276
2620
  * Gets current value of property {@link #getShowVisualizationType showVisualizationType}.
2277
2621
  *
@@ -2284,39 +2628,39 @@ declare namespace sap {
2284
2628
  */
2285
2629
  getShowVisualizationType(): boolean;
2286
2630
  /**
2287
- * Sets a new value for property {@link #getHideAvailableObjects hideAvailableObjects}.
2631
+ * Sets a new value for property {@link #getMetaPath metaPath}.
2288
2632
  *
2289
- * Hide 'Available Objects' pane upon initial load
2633
+ * Defines the relative path to visualization of the corresponding data provider in the multidimensional
2634
+ * model.
2290
2635
  *
2291
2636
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2292
2637
  *
2293
- * Default value is `false`.
2294
- *
2295
2638
  *
2296
2639
  * @returns Reference to `this` in order to allow method chaining
2297
2640
  */
2298
- setHideAvailableObjects(
2641
+ setMetaPath(
2299
2642
  /**
2300
- * New value for property `hideAvailableObjects`
2643
+ * New value for property `metaPath`
2301
2644
  */
2302
- bHideAvailableObjects?: boolean
2645
+ sMetaPath: string
2303
2646
  ): this;
2304
2647
  /**
2305
- * Sets a new value for property {@link #getMetaPath metaPath}.
2648
+ * Sets a new value for property {@link #getShowAvailableObjects showAvailableObjects}.
2306
2649
  *
2307
- * Defines the relative path to visualization of the corresponding data provider in the multidimensional
2308
- * model.
2650
+ * Show available objects panel
2309
2651
  *
2310
2652
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2311
2653
  *
2654
+ * Default value is `true`.
2655
+ *
2312
2656
  *
2313
2657
  * @returns Reference to `this` in order to allow method chaining
2314
2658
  */
2315
- setMetaPath(
2659
+ setShowAvailableObjects(
2316
2660
  /**
2317
- * New value for property `metaPath`
2661
+ * New value for property `showAvailableObjects`
2318
2662
  */
2319
- sMetaPath: string
2663
+ bShowAvailableObjects?: boolean
2320
2664
  ): this;
2321
2665
  /**
2322
2666
  * Sets a new value for property {@link #getShowVisualizationType showVisualizationType}.
@@ -2613,6 +2957,7 @@ declare namespace sap {
2613
2957
  * The user can view the data in a Table, navigate in the data via a context menu or builder panels The
2614
2958
  * data source that the FlexAnalysis consumes or renders has to be provided as a property value.
2615
2959
  *
2960
+ * @deprecated (since 1.132) - Replaced by {@link sap.sac.df.DataAnalyzer DataAnalyzer} or {@link sap.sac.df.Grid Grid}.
2616
2961
  * @experimental
2617
2962
  */
2618
2963
  class FlexAnalysis extends sap.ui.core.Control {
@@ -2664,6 +3009,8 @@ declare namespace sap {
2664
3009
  /**
2665
3010
  * Adds some customPanel to the aggregation {@link #getCustomPanels customPanels}.
2666
3011
  *
3012
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
3013
+ * provider.
2667
3014
  *
2668
3015
  * @returns Reference to `this` in order to allow method chaining
2669
3016
  */
@@ -2671,7 +3018,7 @@ declare namespace sap {
2671
3018
  /**
2672
3019
  * The customPanel to add; if empty, nothing is inserted
2673
3020
  */
2674
- oCustomPanel: sap.sac.df.FlexAnalysisPanel
3021
+ oCustomPanel: sap.ui.core.Control
2675
3022
  ): this;
2676
3023
  /**
2677
3024
  * Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.FlexAnalysis`.
@@ -2739,6 +3086,8 @@ declare namespace sap {
2739
3086
  /**
2740
3087
  * Destroys all the customPanels in the aggregation {@link #getCustomPanels customPanels}.
2741
3088
  *
3089
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
3090
+ * provider.
2742
3091
  *
2743
3092
  * @returns Reference to `this` in order to allow method chaining
2744
3093
  */
@@ -2828,8 +3177,11 @@ declare namespace sap {
2828
3177
  * Gets content of aggregation {@link #getCustomPanels customPanels}.
2829
3178
  *
2830
3179
  * Custom panels for the flexible analysis control
3180
+ *
3181
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
3182
+ * provider.
2831
3183
  */
2832
- getCustomPanels(): sap.sac.df.FlexAnalysisPanel[];
3184
+ getCustomPanels(): sap.ui.core.Control[];
2833
3185
  /**
2834
3186
  * Gets current value of property {@link #getDataProvider dataProvider}.
2835
3187
  *
@@ -3059,9 +3411,11 @@ declare namespace sap {
3059
3411
  */
3060
3412
  getWidth(): sap.ui.core.CSSSize;
3061
3413
  /**
3062
- * Checks for the provided `sap.sac.df.FlexAnalysisPanel` in the aggregation {@link #getCustomPanels customPanels}.
3414
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCustomPanels customPanels}.
3063
3415
  * and returns its index if found or -1 otherwise.
3064
3416
  *
3417
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
3418
+ * provider.
3065
3419
  *
3066
3420
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3067
3421
  */
@@ -3069,11 +3423,13 @@ declare namespace sap {
3069
3423
  /**
3070
3424
  * The customPanel whose index is looked for
3071
3425
  */
3072
- oCustomPanel: sap.sac.df.FlexAnalysisPanel
3426
+ oCustomPanel: sap.ui.core.Control
3073
3427
  ): int;
3074
3428
  /**
3075
3429
  * Inserts a customPanel into the aggregation {@link #getCustomPanels customPanels}.
3076
3430
  *
3431
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
3432
+ * provider.
3077
3433
  *
3078
3434
  * @returns Reference to `this` in order to allow method chaining
3079
3435
  */
@@ -3081,7 +3437,7 @@ declare namespace sap {
3081
3437
  /**
3082
3438
  * The customPanel to insert; if empty, nothing is inserted
3083
3439
  */
3084
- oCustomPanel: sap.sac.df.FlexAnalysisPanel,
3440
+ oCustomPanel: sap.ui.core.Control,
3085
3441
  /**
3086
3442
  * The `0`-based index the customPanel should be inserted at; for a negative value of `iIndex`, the customPanel
3087
3443
  * is inserted at position 0; for a value greater than the current size of the aggregation, the customPanel
@@ -3094,13 +3450,17 @@ declare namespace sap {
3094
3450
  *
3095
3451
  * Additionally, it unregisters them from the hosting UIArea.
3096
3452
  *
3453
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
3454
+ * provider.
3097
3455
  *
3098
3456
  * @returns An array of the removed elements (might be empty)
3099
3457
  */
3100
- removeAllCustomPanels(): sap.sac.df.FlexAnalysisPanel[];
3458
+ removeAllCustomPanels(): sap.ui.core.Control[];
3101
3459
  /**
3102
3460
  * Removes a customPanel from the aggregation {@link #getCustomPanels customPanels}.
3103
3461
  *
3462
+ * @deprecated (since 1.132) - the concept has been discarded. Refreshing the data is handled by the data
3463
+ * provider.
3104
3464
  *
3105
3465
  * @returns The removed customPanel or `null`
3106
3466
  */
@@ -3108,8 +3468,8 @@ declare namespace sap {
3108
3468
  /**
3109
3469
  * The customPanel to remove or its index or id
3110
3470
  */
3111
- vCustomPanel: int | string | sap.sac.df.FlexAnalysisPanel
3112
- ): sap.sac.df.FlexAnalysisPanel | null;
3471
+ vCustomPanel: int | string | sap.ui.core.Control
3472
+ ): sap.ui.core.Control | null;
3113
3473
  /**
3114
3474
  * Sets a new value for property {@link #getAutoUpdate autoUpdate}.
3115
3475
  *
@@ -3580,47 +3940,25 @@ declare namespace sap {
3580
3940
  unbindDataProvider(): this;
3581
3941
  }
3582
3942
  /**
3583
- * A panel to be added into FlexAnalysis control
3943
+ * Grid A grid control for displaying multi-dimensional data
3584
3944
  *
3585
- * @experimental
3945
+ * @experimental (since 1.129)
3586
3946
  */
3587
- class FlexAnalysisPanel extends sap.ui.core.Element {
3588
- /**
3589
- * Constructor for a new Flexible Analysis Panel.
3590
- *
3591
- * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
3592
- * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3593
- * of the syntax of the settings object.
3594
- */
3595
- constructor(
3596
- /**
3597
- * initial settings for the new control
3598
- */
3599
- mSettings?: sap.sac.df.$FlexAnalysisPanelSettings
3600
- );
3947
+ class Grid extends sap.ui.core.Control {
3601
3948
  /**
3602
- * Constructor for a new Flexible Analysis Panel.
3949
+ * Constructor for a new `Grid` control.
3603
3950
  *
3604
3951
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
3605
3952
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3606
3953
  * of the syntax of the settings object.
3607
3954
  */
3608
- constructor(
3609
- /**
3610
- * id for the new control, generated automatically if no id is given
3611
- */
3612
- sId?: string,
3613
- /**
3614
- * initial settings for the new control
3615
- */
3616
- mSettings?: sap.sac.df.$FlexAnalysisPanelSettings
3617
- );
3955
+ constructor();
3618
3956
 
3619
3957
  /**
3620
- * Creates a new subclass of class sap.sac.df.FlexAnalysisPanel with name `sClassName` and enriches it with
3621
- * the information contained in `oClassInfo`.
3958
+ * Creates a new subclass of class sap.sac.df.Grid with name `sClassName` and enriches it with the information
3959
+ * contained in `oClassInfo`.
3622
3960
  *
3623
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3961
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3624
3962
  *
3625
3963
  *
3626
3964
  * @returns Created class / constructor function
@@ -3633,7 +3971,7 @@ declare namespace sap {
3633
3971
  /**
3634
3972
  * Object literal with information about the class
3635
3973
  */
3636
- oClassInfo?: sap.ClassInfo<T, sap.sac.df.FlexAnalysisPanel>,
3974
+ oClassInfo?: sap.ClassInfo<T, sap.sac.df.Grid>,
3637
3975
  /**
3638
3976
  * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3639
3977
  * used by this class
@@ -3641,159 +3979,90 @@ declare namespace sap {
3641
3979
  FNMetaImpl?: Function
3642
3980
  ): Function;
3643
3981
  /**
3644
- * Returns a metadata object for class sap.sac.df.FlexAnalysisPanel.
3982
+ * Returns a metadata object for class sap.sac.df.Grid.
3645
3983
  *
3646
3984
  *
3647
3985
  * @returns Metadata object describing this class
3648
3986
  */
3649
3987
  static getMetadata(): sap.ui.core.ElementMetadata;
3650
3988
  /**
3651
- * Destroys the content in the aggregation {@link #getContent content}.
3652
- *
3653
- *
3654
- * @returns Reference to `this` in order to allow method chaining
3655
- */
3656
- destroyContent(): this;
3657
- /**
3658
- * Gets content of aggregation {@link #getContent content}.
3659
- *
3660
- * The content of this panel
3661
- */
3662
- getContent(): sap.ui.core.Control;
3663
- /**
3664
- * Gets current value of property {@link #getDescription description}.
3665
- *
3666
- * The description of the panel, displayed as tooltip on the side navigation item.
3667
- *
3668
- *
3669
- * @returns Value of property `description`
3670
- */
3671
- getDescription(): string;
3672
- /**
3673
- * Gets current value of property {@link #getIcon icon}.
3674
- *
3675
- * The icon of the panel, displayed on the side navigation item and the panel header.
3676
- *
3677
- *
3678
- * @returns Value of property `icon`
3679
- */
3680
- getIcon(): sap.ui.core.URI;
3681
- /**
3682
- * Gets current value of property {@link #getTitle title}.
3683
- *
3684
- * The title of the panel header.
3989
+ * Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
3685
3990
  *
3991
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
3992
+ * otherwise it will be bound to this `sap.sac.df.Grid` itself.
3686
3993
  *
3687
- * @returns Value of property `title`
3688
- */
3689
- getTitle(): string;
3690
- /**
3691
- * Sets the aggregated {@link #getContent content}.
3994
+ * Fires on cell click event
3692
3995
  *
3693
3996
  *
3694
3997
  * @returns Reference to `this` in order to allow method chaining
3695
3998
  */
3696
- setContent(
3999
+ attachOnCellClick(
4000
+ /**
4001
+ * An application-specific payload object that will be passed to the event handler along with the event
4002
+ * object when firing the event
4003
+ */
4004
+ oData: object,
3697
4005
  /**
3698
- * The content to set
4006
+ * The function to be called when the event occurs
3699
4007
  */
3700
- oContent: sap.ui.core.Control
3701
- ): this;
3702
- /**
3703
- * Sets a new value for property {@link #getDescription description}.
3704
- *
3705
- * The description of the panel, displayed as tooltip on the side navigation item.
3706
- *
3707
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3708
- *
3709
- *
3710
- * @returns Reference to `this` in order to allow method chaining
3711
- */
3712
- setDescription(
4008
+ fnFunction: (p1: Grid$OnCellClickEvent) => void,
3713
4009
  /**
3714
- * New value for property `description`
4010
+ * Context object to call the event handler with. Defaults to this `sap.sac.df.Grid` itself
3715
4011
  */
3716
- sDescription: string
4012
+ oListener?: object
3717
4013
  ): this;
3718
4014
  /**
3719
- * Sets a new value for property {@link #getIcon icon}.
4015
+ * Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
3720
4016
  *
3721
- * The icon of the panel, displayed on the side navigation item and the panel header.
4017
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
4018
+ * otherwise it will be bound to this `sap.sac.df.Grid` itself.
3722
4019
  *
3723
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4020
+ * Fires on cell click event
3724
4021
  *
3725
4022
  *
3726
4023
  * @returns Reference to `this` in order to allow method chaining
3727
4024
  */
3728
- setIcon(
4025
+ attachOnCellClick(
3729
4026
  /**
3730
- * New value for property `icon`
4027
+ * The function to be called when the event occurs
3731
4028
  */
3732
- sIcon: sap.ui.core.URI
3733
- ): this;
3734
- /**
3735
- * Sets a new value for property {@link #getTitle title}.
3736
- *
3737
- * The title of the panel header.
3738
- *
3739
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3740
- *
3741
- *
3742
- * @returns Reference to `this` in order to allow method chaining
3743
- */
3744
- setTitle(
4029
+ fnFunction: (p1: Grid$OnCellClickEvent) => void,
3745
4030
  /**
3746
- * New value for property `title`
4031
+ * Context object to call the event handler with. Defaults to this `sap.sac.df.Grid` itself
3747
4032
  */
3748
- sTitle: string
4033
+ oListener?: object
3749
4034
  ): this;
3750
- }
3751
- /**
3752
- * Grid A grid control for displaying multi-dimensional data
3753
- *
3754
- * @experimental (since 1.129)
3755
- */
3756
- class Grid extends sap.ui.core.Control {
3757
- /**
3758
- * Constructor for a new `Grid` control.
3759
- *
3760
- * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
3761
- * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3762
- * of the syntax of the settings object.
3763
- */
3764
- constructor();
3765
-
3766
4035
  /**
3767
- * Creates a new subclass of class sap.sac.df.Grid with name `sClassName` and enriches it with the information
3768
- * contained in `oClassInfo`.
4036
+ * Detaches event handler `fnFunction` from the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
3769
4037
  *
3770
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4038
+ * The passed function and listener object must match the ones used for event registration.
3771
4039
  *
3772
4040
  *
3773
- * @returns Created class / constructor function
4041
+ * @returns Reference to `this` in order to allow method chaining
3774
4042
  */
3775
- static extend<T extends Record<string, unknown>>(
3776
- /**
3777
- * Name of the class being created
3778
- */
3779
- sClassName: string,
4043
+ detachOnCellClick(
3780
4044
  /**
3781
- * Object literal with information about the class
4045
+ * The function to be called, when the event occurs
3782
4046
  */
3783
- oClassInfo?: sap.ClassInfo<T, sap.sac.df.Grid>,
4047
+ fnFunction: (p1: Grid$OnCellClickEvent) => void,
3784
4048
  /**
3785
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3786
- * used by this class
4049
+ * Context object on which the given function had to be called
3787
4050
  */
3788
- FNMetaImpl?: Function
3789
- ): Function;
4051
+ oListener?: object
4052
+ ): this;
3790
4053
  /**
3791
- * Returns a metadata object for class sap.sac.df.Grid.
4054
+ * Fires event {@link #event:onCellClick onCellClick} to attached listeners.
3792
4055
  *
4056
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3793
4057
  *
3794
- * @returns Metadata object describing this class
4058
+ * @returns Reference to `this` in order to allow method chaining
3795
4059
  */
3796
- static getMetadata(): sap.ui.core.ElementMetadata;
4060
+ fireOnCellClick(
4061
+ /**
4062
+ * Parameters to pass along with the event
4063
+ */
4064
+ mParameters?: sap.sac.df.Grid$OnCellClickEventParameters
4065
+ ): this;
3797
4066
  /**
3798
4067
  * Gets current value of property {@link #getMetaPath metaPath}.
3799
4068
  *
@@ -3903,6 +4172,76 @@ declare namespace sap {
3903
4172
  sTitle: string
3904
4173
  ): this;
3905
4174
  }
4175
+ /**
4176
+ * StylingPanel A panel control to format the data being displayed.
4177
+ */
4178
+ class StylingPanel extends sap.ui.core.Control {
4179
+ /**
4180
+ * Constructor for a new `StylingPanel` control.
4181
+ *
4182
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
4183
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4184
+ * of the syntax of the settings object.
4185
+ */
4186
+ constructor();
4187
+
4188
+ /**
4189
+ * Creates a new subclass of class sap.sac.df.StylingPanel with name `sClassName` and enriches it with the
4190
+ * information contained in `oClassInfo`.
4191
+ *
4192
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4193
+ *
4194
+ *
4195
+ * @returns Created class / constructor function
4196
+ */
4197
+ static extend<T extends Record<string, unknown>>(
4198
+ /**
4199
+ * Name of the class being created
4200
+ */
4201
+ sClassName: string,
4202
+ /**
4203
+ * Object literal with information about the class
4204
+ */
4205
+ oClassInfo?: sap.ClassInfo<T, sap.sac.df.StylingPanel>,
4206
+ /**
4207
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4208
+ * used by this class
4209
+ */
4210
+ FNMetaImpl?: Function
4211
+ ): Function;
4212
+ /**
4213
+ * Returns a metadata object for class sap.sac.df.StylingPanel.
4214
+ *
4215
+ *
4216
+ * @returns Metadata object describing this class
4217
+ */
4218
+ static getMetadata(): sap.ui.core.ElementMetadata;
4219
+ /**
4220
+ * Gets current value of property {@link #getMetaPath metaPath}.
4221
+ *
4222
+ * Defines the relative path to the data provider in the multidimensional model.
4223
+ *
4224
+ *
4225
+ * @returns Value of property `metaPath`
4226
+ */
4227
+ getMetaPath(): string;
4228
+ /**
4229
+ * Sets a new value for property {@link #getMetaPath metaPath}.
4230
+ *
4231
+ * Defines the relative path to the data provider in the multidimensional model.
4232
+ *
4233
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4234
+ *
4235
+ *
4236
+ * @returns Reference to `this` in order to allow method chaining
4237
+ */
4238
+ setMetaPath(
4239
+ /**
4240
+ * New value for property `metaPath`
4241
+ */
4242
+ sMetaPath: string
4243
+ ): this;
4244
+ }
3906
4245
 
3907
4246
  /**
3908
4247
  * Event object of the FlexAnalysis#onCellClick event.
@@ -3911,12 +4250,22 @@ declare namespace sap {
3911
4250
  FlexAnalysis$OnCellClickEventParameters,
3912
4251
  FlexAnalysis
3913
4252
  >;
4253
+
4254
+ /**
4255
+ * Event object of the Grid#onCellClick event.
4256
+ */
4257
+ type Grid$OnCellClickEvent = sap.ui.base.Event<
4258
+ Grid$OnCellClickEventParameters,
4259
+ Grid
4260
+ >;
3914
4261
  }
3915
4262
  }
3916
4263
 
3917
4264
  interface IUI5DefineDependencyNames {
3918
4265
  "sap/sac/df/changeHandler/MultiDimModelChangeHandler": undefined;
3919
4266
 
4267
+ "sap/sac/df/DataAnalyzer": undefined;
4268
+
3920
4269
  "sap/sac/df/DesignerPanel": undefined;
3921
4270
 
3922
4271
  "sap/sac/df/FilterBar": undefined;
@@ -3927,31 +4276,37 @@ declare namespace sap {
3927
4276
 
3928
4277
  "sap/sac/df/FlexAnalysis": undefined;
3929
4278
 
3930
- "sap/sac/df/FlexAnalysisPanel": undefined;
3931
-
3932
4279
  "sap/sac/df/Grid": undefined;
3933
4280
 
3934
4281
  "sap/sac/df/library": undefined;
3935
4282
 
3936
4283
  "sap/sac/df/model/AxesLayout": undefined;
3937
4284
 
4285
+ "sap/sac/df/model/Configuration": undefined;
4286
+
3938
4287
  "sap/sac/df/model/DataProvider": undefined;
3939
4288
 
3940
4289
  "sap/sac/df/model/DataSourceInfo": undefined;
3941
4290
 
3942
4291
  "sap/sac/df/model/Dimension": undefined;
3943
4292
 
3944
- "sap/sac/df/model/Documents": undefined;
3945
-
3946
- "sap/sac/df/model/Grid": undefined;
3947
-
3948
4293
  "sap/sac/df/model/MultiDimModel": undefined;
3949
4294
 
3950
4295
  "sap/sac/df/model/Variable": undefined;
3951
4296
 
3952
4297
  "sap/sac/df/model/VariableGroup": undefined;
3953
4298
 
3954
- "sap/sac/df/model/Visualization": undefined;
4299
+ "sap/sac/df/model/visualization/Documents": undefined;
4300
+
4301
+ "sap/sac/df/model/visualization/Grid": undefined;
4302
+
4303
+ "sap/sac/df/StylingPanel": undefined;
4304
+
4305
+ "sap/sac/df/types/Axis": undefined;
4306
+
4307
+ "sap/sac/df/types/configuration/StylingPanelItem": undefined;
4308
+
4309
+ "sap/sac/df/types/DataAnalyzerPanelName": undefined;
3955
4310
 
3956
4311
  "sap/sac/df/types/DataSourceType": undefined;
3957
4312