@sapui5/ts-types 1.113.0 → 1.114.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) 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 +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +45 -1
  8. package/types/sap.f.d.ts +51 -1
  9. package/types/sap.fe.core.d.ts +10 -6
  10. package/types/sap.fe.macros.d.ts +28 -3
  11. package/types/sap.fe.templates.d.ts +6 -6
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.feedback.ui.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +56 -3
  15. package/types/sap.insights.d.ts +1 -1
  16. package/types/sap.landvisz.d.ts +1 -1
  17. package/types/sap.m.d.ts +499 -992
  18. package/types/sap.makit.d.ts +1 -1
  19. package/types/sap.me.d.ts +1 -1
  20. package/types/sap.ndc.d.ts +1 -1
  21. package/types/sap.ovp.d.ts +1 -1
  22. package/types/sap.rules.ui.d.ts +1 -1
  23. package/types/sap.sac.df.d.ts +29 -577
  24. package/types/sap.suite.ui.commons.d.ts +74 -5
  25. package/types/sap.suite.ui.generic.template.d.ts +2 -2
  26. package/types/sap.suite.ui.microchart.d.ts +1 -1
  27. package/types/sap.tnt.d.ts +1 -1
  28. package/types/sap.ui.codeeditor.d.ts +1 -1
  29. package/types/sap.ui.commons.d.ts +1 -1
  30. package/types/sap.ui.comp.d.ts +393 -257
  31. package/types/sap.ui.core.d.ts +1342 -856
  32. package/types/sap.ui.dt.d.ts +1 -1
  33. package/types/sap.ui.export.d.ts +1 -1
  34. package/types/sap.ui.fl.d.ts +3 -3
  35. package/types/sap.ui.generic.app.d.ts +2 -2
  36. package/types/sap.ui.generic.template.d.ts +1 -1
  37. package/types/sap.ui.integration.d.ts +107 -4
  38. package/types/sap.ui.layout.d.ts +1 -1
  39. package/types/sap.ui.mdc.d.ts +17 -7
  40. package/types/sap.ui.richtexteditor.d.ts +1 -1
  41. package/types/sap.ui.rta.d.ts +1 -1
  42. package/types/sap.ui.suite.d.ts +1 -1
  43. package/types/sap.ui.support.d.ts +1 -1
  44. package/types/sap.ui.table.d.ts +36 -1
  45. package/types/sap.ui.testrecorder.d.ts +1 -1
  46. package/types/sap.ui.unified.d.ts +159 -141
  47. package/types/sap.ui.ux3.d.ts +1 -1
  48. package/types/sap.ui.vbm.d.ts +1 -1
  49. package/types/sap.ui.vk.d.ts +40 -1
  50. package/types/sap.ui.vtm.d.ts +1 -1
  51. package/types/sap.ui.webc.common.d.ts +1 -1
  52. package/types/sap.ui.webc.fiori.d.ts +1 -1
  53. package/types/sap.ui.webc.main.d.ts +1 -1
  54. package/types/sap.uiext.inbox.d.ts +1 -1
  55. package/types/sap.ushell.d.ts +9 -6
  56. package/types/sap.ushell_abap.d.ts +1 -1
  57. package/types/sap.uxap.d.ts +1 -1
  58. package/types/sap.viz.d.ts +1 -1
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +1 -1
  61. package/types/sap.zen.crosstab.d.ts +1 -1
  62. package/types/sap.zen.dsh.d.ts +1 -1
  63. package/types/sap.sac.grid.d.ts +0 -760
@@ -1,760 +0,0 @@
1
- // For Library Version: 1.113.0
2
-
3
- declare namespace sap {
4
- namespace sac {
5
- /**
6
- * @deprecated (since 1.112) - use sap.sac.df.FlexAnalysis instead
7
- *
8
- * The sac UI5 library
9
- */
10
- namespace grid {
11
- interface $CellSettings extends sap.ui.core.$ElementSettings {
12
- /**
13
- * The alert level (intensitiy of emphasis)
14
- */
15
- alertLevel?:
16
- | sap.sac.grid.AlertLevel
17
- | sap.ui.base.ManagedObject.PropertyBindingInfo
18
- | `{${string}}`;
19
-
20
- /**
21
- * The value that is displayed in the cell
22
- */
23
- displayValue?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
24
-
25
- /**
26
- * The celltype of the cell. (HEADER, TITLE, RESULT, ...)
27
- */
28
- cellType?:
29
- | sap.sac.grid.CellType
30
- | sap.ui.base.ManagedObject.PropertyBindingInfo
31
- | `{${string}}`;
32
-
33
- /**
34
- * The Column of the `Cell`
35
- */
36
- column?:
37
- | int
38
- | sap.ui.base.ManagedObject.PropertyBindingInfo
39
- | `{${string}}`;
40
-
41
- /**
42
- * The Icon to be displayed in the `Cell`
43
- */
44
- icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
45
-
46
- /**
47
- * The Help Id of the `Cell`. Intended to be used by WebAssist/Enable Now.
48
- */
49
- helpId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
50
-
51
- /**
52
- * The context the `Cell`. Used for tagging a cell by the PivotTable.
53
- */
54
- context?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
55
-
56
- /**
57
- * The value state of the `Cell`. This property is used for entry ready cells.
58
- */
59
- valueState?:
60
- | sap.ui.core.ValueState
61
- | sap.ui.base.ManagedObject.PropertyBindingInfo
62
- | `{${string}}`;
63
-
64
- /**
65
- * The row of the `Cell`.
66
- */
67
- row?:
68
- | int
69
- | sap.ui.base.ManagedObject.PropertyBindingInfo
70
- | `{${string}}`;
71
-
72
- /**
73
- * The indent level of the `Cell`.
74
- */
75
- displayLevel?:
76
- | int
77
- | sap.ui.base.ManagedObject.PropertyBindingInfo
78
- | `{${string}}`;
79
-
80
- /**
81
- * The semantic class of the Cell. The css class associated to the class is put into the cells td.
82
- */
83
- semanticClass?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
84
-
85
- /**
86
- * Indicates whether the `Cell` is input enabled.
87
- */
88
- inputEnabled?:
89
- | boolean
90
- | sap.ui.base.ManagedObject.PropertyBindingInfo
91
- | `{${string}}`;
92
-
93
- /**
94
- * The Document Id of the `Cell`.
95
- */
96
- documentId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
97
- }
98
-
99
- interface $SemanticStyleSettings extends sap.ui.core.$ElementSettings {
100
- /**
101
- * The value that is displayed in the cell
102
- */
103
- member?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
104
-
105
- /**
106
- * The associated css class
107
- */
108
- class?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
109
- }
110
-
111
- /**
112
- * @SINCE 1.0.0
113
- * @deprecated (since 1.112) - use sap.sac.df.FlexAnalysis instead
114
- * @EXPERIMENTAL
115
- *
116
- * Cell of a Grid.
117
- */
118
- class Cell extends sap.ui.core.Element {
119
- /**
120
- * Creates and initializes a new Cell. settings.
121
- *
122
- * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
123
- * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
124
- * of the syntax of the settings object.
125
- */
126
- constructor(
127
- /**
128
- * Initial settings for the new element
129
- */
130
- mSettings?: sap.sac.grid.$CellSettings
131
- );
132
- /**
133
- * Creates and initializes a new Cell. settings.
134
- *
135
- * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
136
- * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
137
- * of the syntax of the settings object.
138
- */
139
- constructor(
140
- /**
141
- * ID for the new control, generated automatically if no ID is given
142
- */
143
- sId?: string,
144
- /**
145
- * Initial settings for the new element
146
- */
147
- mSettings?: sap.sac.grid.$CellSettings
148
- );
149
-
150
- /**
151
- * Creates a new subclass of class sap.sac.grid.Cell with name `sClassName` and enriches it with the information
152
- * contained in `oClassInfo`.
153
- *
154
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
155
- *
156
- * @returns Created class / constructor function
157
- */
158
- static extend<T extends Record<string, unknown>>(
159
- /**
160
- * Name of the class being created
161
- */
162
- sClassName: string,
163
- /**
164
- * Object literal with information about the class
165
- */
166
- oClassInfo?: sap.ClassInfo<T, sap.sac.grid.Cell>,
167
- /**
168
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
169
- * used by this class
170
- */
171
- FNMetaImpl?: Function
172
- ): Function;
173
- /**
174
- * Returns a metadata object for class sap.sac.grid.Cell.
175
- *
176
- * @returns Metadata object describing this class
177
- */
178
- static getMetadata(): sap.ui.core.ElementMetadata;
179
- /**
180
- * Gets current value of property {@link #getAlertLevel alertLevel}.
181
- *
182
- * The alert level (intensitiy of emphasis)
183
- *
184
- * @returns Value of property `alertLevel`
185
- */
186
- getAlertLevel(): sap.sac.grid.AlertLevel;
187
- /**
188
- * Gets current value of property {@link #getCellType cellType}.
189
- *
190
- * The celltype of the cell. (HEADER, TITLE, RESULT, ...)
191
- *
192
- * @returns Value of property `cellType`
193
- */
194
- getCellType(): sap.sac.grid.CellType;
195
- /**
196
- * Gets current value of property {@link #getColumn column}.
197
- *
198
- * The Column of the `Cell`
199
- *
200
- * Default value is `0`.
201
- *
202
- * @returns Value of property `column`
203
- */
204
- getColumn(): int;
205
- /**
206
- * Gets current value of property {@link #getContext context}.
207
- *
208
- * The context the `Cell`. Used for tagging a cell by the PivotTable.
209
- *
210
- * @returns Value of property `context`
211
- */
212
- getContext(): string;
213
- /**
214
- * Gets current value of property {@link #getDisplayLevel displayLevel}.
215
- *
216
- * The indent level of the `Cell`.
217
- *
218
- * @returns Value of property `displayLevel`
219
- */
220
- getDisplayLevel(): int;
221
- /**
222
- * Gets current value of property {@link #getDisplayValue displayValue}.
223
- *
224
- * The value that is displayed in the cell
225
- *
226
- * @returns Value of property `displayValue`
227
- */
228
- getDisplayValue(): string;
229
- /**
230
- * Gets current value of property {@link #getDocumentId documentId}.
231
- *
232
- * The Document Id of the `Cell`.
233
- *
234
- * @returns Value of property `documentId`
235
- */
236
- getDocumentId(): string;
237
- /**
238
- * Gets current value of property {@link #getHelpId helpId}.
239
- *
240
- * The Help Id of the `Cell`. Intended to be used by WebAssist/Enable Now.
241
- *
242
- * @returns Value of property `helpId`
243
- */
244
- getHelpId(): string;
245
- /**
246
- * Gets current value of property {@link #getIcon icon}.
247
- *
248
- * The Icon to be displayed in the `Cell`
249
- *
250
- * @returns Value of property `icon`
251
- */
252
- getIcon(): string;
253
- /**
254
- * Gets current value of property {@link #getInputEnabled inputEnabled}.
255
- *
256
- * Indicates whether the `Cell` is input enabled.
257
- *
258
- * @returns Value of property `inputEnabled`
259
- */
260
- getInputEnabled(): boolean;
261
- /**
262
- * Gets current value of property {@link #getRow row}.
263
- *
264
- * The row of the `Cell`.
265
- *
266
- * Default value is `0`.
267
- *
268
- * @returns Value of property `row`
269
- */
270
- getRow(): int;
271
- /**
272
- * Gets current value of property {@link #getSemanticClass semanticClass}.
273
- *
274
- * The semantic class of the Cell. The css class associated to the class is put into the cells td.
275
- *
276
- * @returns Value of property `semanticClass`
277
- */
278
- getSemanticClass(): string;
279
- /**
280
- * Gets current value of property {@link #getValueState valueState}.
281
- *
282
- * The value state of the `Cell`. This property is used for entry ready cells.
283
- *
284
- * @returns Value of property `valueState`
285
- */
286
- getValueState(): sap.ui.core.ValueState;
287
- /**
288
- * Sets a new value for property {@link #getAlertLevel alertLevel}.
289
- *
290
- * The alert level (intensitiy of emphasis)
291
- *
292
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
293
- *
294
- * @returns Reference to `this` in order to allow method chaining
295
- */
296
- setAlertLevel(
297
- /**
298
- * New value for property `alertLevel`
299
- */
300
- sAlertLevel: sap.sac.grid.AlertLevel
301
- ): this;
302
- /**
303
- * Sets a new value for property {@link #getCellType cellType}.
304
- *
305
- * The celltype of the cell. (HEADER, TITLE, RESULT, ...)
306
- *
307
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
308
- *
309
- * @returns Reference to `this` in order to allow method chaining
310
- */
311
- setCellType(
312
- /**
313
- * New value for property `cellType`
314
- */
315
- sCellType: sap.sac.grid.CellType
316
- ): this;
317
- /**
318
- * Sets a new value for property {@link #getColumn column}.
319
- *
320
- * The Column of the `Cell`
321
- *
322
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
323
- *
324
- * Default value is `0`.
325
- *
326
- * @returns Reference to `this` in order to allow method chaining
327
- */
328
- setColumn(
329
- /**
330
- * New value for property `column`
331
- */
332
- iColumn?: int
333
- ): this;
334
- /**
335
- * Sets a new value for property {@link #getContext context}.
336
- *
337
- * The context the `Cell`. Used for tagging a cell by the PivotTable.
338
- *
339
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
340
- *
341
- * @returns Reference to `this` in order to allow method chaining
342
- */
343
- setContext(
344
- /**
345
- * New value for property `context`
346
- */
347
- sContext: string
348
- ): this;
349
- /**
350
- * Sets a new value for property {@link #getDisplayLevel displayLevel}.
351
- *
352
- * The indent level of the `Cell`.
353
- *
354
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
355
- *
356
- * @returns Reference to `this` in order to allow method chaining
357
- */
358
- setDisplayLevel(
359
- /**
360
- * New value for property `displayLevel`
361
- */
362
- iDisplayLevel: int
363
- ): this;
364
- /**
365
- * Sets a new value for property {@link #getDisplayValue displayValue}.
366
- *
367
- * The value that is displayed in the cell
368
- *
369
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
370
- *
371
- * @returns Reference to `this` in order to allow method chaining
372
- */
373
- setDisplayValue(
374
- /**
375
- * New value for property `displayValue`
376
- */
377
- sDisplayValue: string
378
- ): this;
379
- /**
380
- * Sets a new value for property {@link #getDocumentId documentId}.
381
- *
382
- * The Document Id of the `Cell`.
383
- *
384
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
385
- *
386
- * @returns Reference to `this` in order to allow method chaining
387
- */
388
- setDocumentId(
389
- /**
390
- * New value for property `documentId`
391
- */
392
- sDocumentId: string
393
- ): this;
394
- /**
395
- * Sets a new value for property {@link #getHelpId helpId}.
396
- *
397
- * The Help Id of the `Cell`. Intended to be used by WebAssist/Enable Now.
398
- *
399
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
400
- *
401
- * @returns Reference to `this` in order to allow method chaining
402
- */
403
- setHelpId(
404
- /**
405
- * New value for property `helpId`
406
- */
407
- sHelpId: string
408
- ): this;
409
- /**
410
- * Sets a new value for property {@link #getIcon icon}.
411
- *
412
- * The Icon to be displayed in the `Cell`
413
- *
414
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
415
- *
416
- * @returns Reference to `this` in order to allow method chaining
417
- */
418
- setIcon(
419
- /**
420
- * New value for property `icon`
421
- */
422
- sIcon: string
423
- ): this;
424
- /**
425
- * Sets a new value for property {@link #getInputEnabled inputEnabled}.
426
- *
427
- * Indicates whether the `Cell` is input enabled.
428
- *
429
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
430
- *
431
- * @returns Reference to `this` in order to allow method chaining
432
- */
433
- setInputEnabled(
434
- /**
435
- * New value for property `inputEnabled`
436
- */
437
- bInputEnabled: boolean
438
- ): this;
439
- /**
440
- * Sets a new value for property {@link #getRow row}.
441
- *
442
- * The row of the `Cell`.
443
- *
444
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
445
- *
446
- * Default value is `0`.
447
- *
448
- * @returns Reference to `this` in order to allow method chaining
449
- */
450
- setRow(
451
- /**
452
- * New value for property `row`
453
- */
454
- iRow?: int
455
- ): this;
456
- /**
457
- * Sets a new value for property {@link #getSemanticClass semanticClass}.
458
- *
459
- * The semantic class of the Cell. The css class associated to the class is put into the cells td.
460
- *
461
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
462
- *
463
- * @returns Reference to `this` in order to allow method chaining
464
- */
465
- setSemanticClass(
466
- /**
467
- * New value for property `semanticClass`
468
- */
469
- sSemanticClass: string
470
- ): this;
471
- /**
472
- * Sets a new value for property {@link #getValueState valueState}.
473
- *
474
- * The value state of the `Cell`. This property is used for entry ready cells.
475
- *
476
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
477
- *
478
- * @returns Reference to `this` in order to allow method chaining
479
- */
480
- setValueState(
481
- /**
482
- * New value for property `valueState`
483
- */
484
- sValueState: sap.ui.core.ValueState
485
- ): this;
486
- }
487
- /**
488
- * @SINCE 1.0.0
489
- * @deprecated (since 1.112) - use sap.sac.df.FlexAnalysis instead
490
- * @EXPERIMENTAL
491
- *
492
- * Cell of a Pivot Table.
493
- */
494
- class SemanticStyle extends sap.ui.core.Element {
495
- /**
496
- * Creates and initializes a new Semantic style. settings.
497
- *
498
- * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
499
- * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
500
- * of the syntax of the settings object.
501
- */
502
- constructor();
503
-
504
- /**
505
- * Creates a new subclass of class sap.sac.grid.SemanticStyle with name `sClassName` and enriches it with
506
- * the information contained in `oClassInfo`.
507
- *
508
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
509
- *
510
- * @returns Created class / constructor function
511
- */
512
- static extend<T extends Record<string, unknown>>(
513
- /**
514
- * Name of the class being created
515
- */
516
- sClassName: string,
517
- /**
518
- * Object literal with information about the class
519
- */
520
- oClassInfo?: sap.ClassInfo<T, sap.sac.grid.SemanticStyle>,
521
- /**
522
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
523
- * used by this class
524
- */
525
- FNMetaImpl?: Function
526
- ): Function;
527
- /**
528
- * Returns a metadata object for class sap.sac.grid.SemanticStyle.
529
- *
530
- * @returns Metadata object describing this class
531
- */
532
- static getMetadata(): sap.ui.core.ElementMetadata;
533
- /**
534
- * Gets current value of property {@link #getClass class}.
535
- *
536
- * The associated css class
537
- *
538
- * @returns Value of property `class`
539
- */
540
- getClass(): string;
541
- /**
542
- * Gets current value of property {@link #getMember member}.
543
- *
544
- * The value that is displayed in the cell
545
- *
546
- * @returns Value of property `member`
547
- */
548
- getMember(): string;
549
- /**
550
- * Sets a new value for property {@link #getClass class}.
551
- *
552
- * The associated css class
553
- *
554
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
555
- *
556
- * @returns Reference to `this` in order to allow method chaining
557
- */
558
- setClass(
559
- /**
560
- * New value for property `class`
561
- */
562
- sClass: string
563
- ): this;
564
- /**
565
- * Sets a new value for property {@link #getMember member}.
566
- *
567
- * The value that is displayed in the cell
568
- *
569
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
570
- *
571
- * @returns Reference to `this` in order to allow method chaining
572
- */
573
- setMember(
574
- /**
575
- * New value for property `member`
576
- */
577
- sMember: string
578
- ): this;
579
- }
580
- /**
581
- * @deprecated (since 1.112) - use sap.sac.df.FlexAnalysis instead
582
- * @EXPERIMENTAL
583
- *
584
- * Alert Level.
585
- */
586
- enum AlertLevel {
587
- /**
588
- * Bad 1
589
- */
590
- BAD_1 = "7",
591
- /**
592
- * Bad 2
593
- */
594
- BAD_2 = "8",
595
- /**
596
- * Bad 3
597
- */
598
- BAD_3 = "9",
599
- /**
600
- * Critical 1
601
- */
602
- CRITICAL_1 = "4",
603
- /**
604
- * Critical 2
605
- */
606
- CRITICAL_2 = "5",
607
- /**
608
- * Critical 3
609
- */
610
- CRITICAL_3 = "6",
611
- /**
612
- * Good 1
613
- */
614
- GOOD_1 = "1",
615
- /**
616
- * Good 2
617
- */
618
- GOOD_2 = "2",
619
- /**
620
- * Good 3
621
- */
622
- GOOD_3 = "3",
623
- /**
624
- * Normal
625
- */
626
- NORMAL = "0",
627
- }
628
- /**
629
- * @deprecated (since 1.112) - use sap.sac.df.FlexAnalysis instead
630
- * @EXPERIMENTAL
631
- *
632
- * Part of the grid in which a `cell` resides.
633
- */
634
- enum CellGridPart {
635
- /**
636
- * Cell is rendered in the columns section (header/title)
637
- */
638
- Columns = "Columns",
639
- /**
640
- * Cell is rendered in the data section
641
- */
642
- Data = "Data",
643
- /**
644
- * Cell is in the empty section
645
- */
646
- Empty = "Empty",
647
- /**
648
- * Cell is rendered in the intersection between row titles and column titles section
649
- */
650
- Mixed = "Mixed",
651
- /**
652
- * Cell is rendered in the rows section (header/title)
653
- */
654
- Rows = "Rows",
655
- }
656
- /**
657
- * @deprecated (since 1.112) - use sap.sac.df.FlexAnalysis instead
658
- * @EXPERIMENTAL
659
- *
660
- * Types of a grid cell.
661
- */
662
- enum CellType {
663
- /**
664
- * A data cell, representing value with a critical flavour
665
- */
666
- CRITICAL = "Critical",
667
- /**
668
- * An empty data cell
669
- */
670
- EMPTY = "Empty",
671
- /**
672
- * A header cell, representing a member of a (virtual) dimension
673
- */
674
- HEADER = "Header",
675
- /**
676
- * A data cell, representing value with a negative flavour
677
- */
678
- NEGATIVE = "Negative",
679
- /**
680
- * A data cell, representing value with a positive flavour
681
- */
682
- POSITIVE = "Positive",
683
- /**
684
- * A result cell, representing an aggregated value
685
- */
686
- RESULT = "Result",
687
- /**
688
- * A result cell, representing an aggregated value with a critical flavour
689
- */
690
- RESULT_CRITICAL = "ResultCritical",
691
- /**
692
- * A virtual member of a dimension indicating an aggregation of members
693
- */
694
- RESULT_HEADER = "ResultHeader",
695
- /**
696
- * A result cell, representing an aggregated value with a negative flavour
697
- */
698
- RESULT_NEGATIVE = "ResultNegative",
699
- /**
700
- * A result cell, representing an aggregated value with a positive flavour
701
- */
702
- RESULT_POSITIVE = "ResultPositive",
703
- /**
704
- * A data cell, representing value
705
- */
706
- STANDARD = "Standard",
707
- /**
708
- * A title cell, representing a dimension
709
- */
710
- TITLE = "Title",
711
- }
712
- /**
713
- * @deprecated (since 1.112) - use sap.sac.df.FlexAnalysis instead
714
- * @EXPERIMENTAL
715
- *
716
- * Format to be applied to a `Grid`
717
- */
718
- enum Format {
719
- /**
720
- * Basic grid format
721
- */
722
- Basic = "Basic",
723
- /**
724
- * business style
725
- */
726
- BusinessStyle = "BusinessStyle",
727
- /**
728
- * busines formular style
729
- */
730
- BusinessStyleFormular = "BusinessStyleFormular",
731
- /**
732
- * custom style
733
- */
734
- CustomStyle = "CustomStyle",
735
- /**
736
- * mimicking spreadsheet
737
- */
738
- ExcelStyle = "ExcelStyle",
739
- }
740
- }
741
- }
742
-
743
- interface IUI5DefineDependencyNames {
744
- "sap/sac/grid/AlertLevel": undefined;
745
-
746
- "sap/sac/grid/Cell": undefined;
747
-
748
- "sap/sac/grid/CellGridPart": undefined;
749
-
750
- "sap/sac/grid/CellType": undefined;
751
-
752
- "sap/sac/grid/Format": undefined;
753
-
754
- "sap/sac/grid/Grid": undefined;
755
-
756
- "sap/sac/grid/library": undefined;
757
-
758
- "sap/sac/grid/SemanticStyle": undefined;
759
- }
760
- }