@sapui5/types 1.113.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 (66) hide show
  1. package/LICENSE.txt +35 -0
  2. package/README.md +35 -0
  3. package/package.json +23 -0
  4. package/types/index.d.ts +67 -0
  5. package/types/sap.apf.d.ts +1026 -0
  6. package/types/sap.ca.ui.d.ts +14005 -0
  7. package/types/sap.chart.d.ts +4815 -0
  8. package/types/sap.collaboration.d.ts +2704 -0
  9. package/types/sap.esh.search.ui.d.ts +1595 -0
  10. package/types/sap.f.d.ts +20085 -0
  11. package/types/sap.fe.core.d.ts +1508 -0
  12. package/types/sap.fe.macros.d.ts +975 -0
  13. package/types/sap.fe.navigation.d.ts +917 -0
  14. package/types/sap.fe.templates.d.ts +522 -0
  15. package/types/sap.fe.test.d.ts +3533 -0
  16. package/types/sap.feedback.ui.d.ts +3 -0
  17. package/types/sap.gantt.d.ts +51684 -0
  18. package/types/sap.insights.d.ts +23 -0
  19. package/types/sap.landvisz.d.ts +7952 -0
  20. package/types/sap.m.d.ts +147796 -0
  21. package/types/sap.makit.d.ts +4533 -0
  22. package/types/sap.me.d.ts +3665 -0
  23. package/types/sap.ndc.d.ts +774 -0
  24. package/types/sap.ovp.d.ts +176 -0
  25. package/types/sap.rules.ui.d.ts +1471 -0
  26. package/types/sap.sac.df.d.ts +2292 -0
  27. package/types/sap.sac.grid.d.ts +774 -0
  28. package/types/sap.suite.ui.commons.d.ts +46971 -0
  29. package/types/sap.suite.ui.generic.template.d.ts +3431 -0
  30. package/types/sap.suite.ui.microchart.d.ts +12652 -0
  31. package/types/sap.tnt.d.ts +2227 -0
  32. package/types/sap.ui.codeeditor.d.ts +693 -0
  33. package/types/sap.ui.commons.d.ts +30235 -0
  34. package/types/sap.ui.comp.d.ts +37411 -0
  35. package/types/sap.ui.core.d.ts +78872 -0
  36. package/types/sap.ui.dt.d.ts +3 -0
  37. package/types/sap.ui.export.d.ts +843 -0
  38. package/types/sap.ui.fl.d.ts +1663 -0
  39. package/types/sap.ui.generic.app.d.ts +2683 -0
  40. package/types/sap.ui.generic.template.d.ts +3 -0
  41. package/types/sap.ui.integration.d.ts +4032 -0
  42. package/types/sap.ui.layout.d.ts +14472 -0
  43. package/types/sap.ui.mdc.d.ts +476 -0
  44. package/types/sap.ui.richtexteditor.d.ts +1666 -0
  45. package/types/sap.ui.rta.d.ts +124 -0
  46. package/types/sap.ui.suite.d.ts +685 -0
  47. package/types/sap.ui.support.d.ts +453 -0
  48. package/types/sap.ui.table.d.ts +9325 -0
  49. package/types/sap.ui.testrecorder.d.ts +9 -0
  50. package/types/sap.ui.unified.d.ts +20640 -0
  51. package/types/sap.ui.ux3.d.ts +18288 -0
  52. package/types/sap.ui.vbm.d.ts +17251 -0
  53. package/types/sap.ui.vk.d.ts +42381 -0
  54. package/types/sap.ui.vtm.d.ts +10547 -0
  55. package/types/sap.ui.webc.common.d.ts +113 -0
  56. package/types/sap.ui.webc.fiori.d.ts +13850 -0
  57. package/types/sap.ui.webc.main.d.ts +40833 -0
  58. package/types/sap.uiext.inbox.d.ts +4079 -0
  59. package/types/sap.ushell.d.ts +10255 -0
  60. package/types/sap.ushell_abap.d.ts +9 -0
  61. package/types/sap.uxap.d.ts +7636 -0
  62. package/types/sap.viz.d.ts +51209 -0
  63. package/types/sap.webanalytics.core.d.ts +3 -0
  64. package/types/sap.zen.commons.d.ts +1542 -0
  65. package/types/sap.zen.crosstab.d.ts +1159 -0
  66. package/types/sap.zen.dsh.d.ts +2132 -0
@@ -0,0 +1,1159 @@
1
+ // For Library Version: 1.113.0
2
+
3
+ declare module "sap/zen/crosstab/library" {}
4
+
5
+ declare module "sap/zen/crosstab/Crosstab" {
6
+ import { default as Control, $ControlSettings } from "sap/ui/core/Control";
7
+
8
+ import { CSSSize } from "sap/ui/core/library";
9
+
10
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
11
+
12
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
13
+
14
+ /**
15
+ * @deprecated (since 1.89.0)
16
+ *
17
+ * Add your documentation for the new Crosstab
18
+ */
19
+ export default class Crosstab extends Control {
20
+ /**
21
+ * Constructor for a new Crosstab.
22
+ *
23
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
24
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
25
+ * of the syntax of the settings object.
26
+ */
27
+ constructor(
28
+ /**
29
+ * initial settings for the new control
30
+ */
31
+ mSettings?: $CrosstabSettings
32
+ );
33
+ /**
34
+ * Constructor for a new Crosstab.
35
+ *
36
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
37
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
38
+ * of the syntax of the settings object.
39
+ */
40
+ constructor(
41
+ /**
42
+ * id for the new control, generated automatically if no id is given
43
+ */
44
+ sId?: string,
45
+ /**
46
+ * initial settings for the new control
47
+ */
48
+ mSettings?: $CrosstabSettings
49
+ );
50
+
51
+ /**
52
+ * Creates a new subclass of class sap.zen.crosstab.Crosstab with name `sClassName` and enriches it with
53
+ * the information contained in `oClassInfo`.
54
+ *
55
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
56
+ *
57
+ * @returns Created class / constructor function
58
+ */
59
+ static extend<T extends Record<string, unknown>>(
60
+ /**
61
+ * Name of the class being created
62
+ */
63
+ sClassName: string,
64
+ /**
65
+ * Object literal with information about the class
66
+ */
67
+ oClassInfo?: sap.ClassInfo<T, Crosstab>,
68
+ /**
69
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
70
+ * used by this class
71
+ */
72
+ FNMetaImpl?: Function
73
+ ): Function;
74
+ /**
75
+ * Returns a metadata object for class sap.zen.crosstab.Crosstab.
76
+ *
77
+ * @returns Metadata object describing this class
78
+ */
79
+ static getMetadata(): ElementMetadata;
80
+ /**
81
+ * Gets current value of property {@link #getHeight height}.
82
+ *
83
+ * Height of the Crosstab.
84
+ *
85
+ * @returns Value of property `height`
86
+ */
87
+ getHeight(): CSSSize;
88
+ /**
89
+ * Gets current value of property {@link #getWidth width}.
90
+ *
91
+ * Width of the Crosstab.
92
+ *
93
+ * @returns Value of property `width`
94
+ */
95
+ getWidth(): CSSSize;
96
+ /**
97
+ * Sets a new value for property {@link #getHeight height}.
98
+ *
99
+ * Height of the Crosstab.
100
+ *
101
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
102
+ *
103
+ * @returns Reference to `this` in order to allow method chaining
104
+ */
105
+ setHeight(
106
+ /**
107
+ * New value for property `height`
108
+ */
109
+ sHeight?: CSSSize
110
+ ): this;
111
+ /**
112
+ * Sets a new value for property {@link #getWidth width}.
113
+ *
114
+ * Width of the Crosstab.
115
+ *
116
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
117
+ *
118
+ * @returns Reference to `this` in order to allow method chaining
119
+ */
120
+ setWidth(
121
+ /**
122
+ * New value for property `width`
123
+ */
124
+ sWidth?: CSSSize
125
+ ): this;
126
+ }
127
+
128
+ export interface $CrosstabSettings extends $ControlSettings {
129
+ /**
130
+ * Width of the Crosstab.
131
+ */
132
+ width?: CSSSize | PropertyBindingInfo | `{${string}}`;
133
+
134
+ /**
135
+ * Height of the Crosstab.
136
+ */
137
+ height?: CSSSize | PropertyBindingInfo | `{${string}}`;
138
+ }
139
+ }
140
+
141
+ declare module "sap/zen/crosstab/DataCell" {
142
+ import { default as Control, $ControlSettings } from "sap/ui/core/Control";
143
+
144
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
145
+
146
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
147
+
148
+ /**
149
+ * @deprecated (since 1.89.0)
150
+ *
151
+ * Add your documentation for the new DataCell
152
+ */
153
+ export default class DataCell extends Control {
154
+ /**
155
+ * Constructor for a new DataCell.
156
+ *
157
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
158
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
159
+ * of the syntax of the settings object.
160
+ */
161
+ constructor(
162
+ /**
163
+ * initial settings for the new control
164
+ */
165
+ mSettings?: $DataCellSettings
166
+ );
167
+ /**
168
+ * Constructor for a new DataCell.
169
+ *
170
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
171
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
172
+ * of the syntax of the settings object.
173
+ */
174
+ constructor(
175
+ /**
176
+ * id for the new control, generated automatically if no id is given
177
+ */
178
+ sId?: string,
179
+ /**
180
+ * initial settings for the new control
181
+ */
182
+ mSettings?: $DataCellSettings
183
+ );
184
+
185
+ /**
186
+ * Creates a new subclass of class sap.zen.crosstab.DataCell with name `sClassName` and enriches it with
187
+ * the information contained in `oClassInfo`.
188
+ *
189
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
190
+ *
191
+ * @returns Created class / constructor function
192
+ */
193
+ static extend<T extends Record<string, unknown>>(
194
+ /**
195
+ * Name of the class being created
196
+ */
197
+ sClassName: string,
198
+ /**
199
+ * Object literal with information about the class
200
+ */
201
+ oClassInfo?: sap.ClassInfo<T, DataCell>,
202
+ /**
203
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
204
+ * used by this class
205
+ */
206
+ FNMetaImpl?: Function
207
+ ): Function;
208
+ /**
209
+ * Returns a metadata object for class sap.zen.crosstab.DataCell.
210
+ *
211
+ * @returns Metadata object describing this class
212
+ */
213
+ static getMetadata(): ElementMetadata;
214
+
215
+ addStyle(sSStyle: string): void;
216
+ /**
217
+ * Gets current value of property {@link #getArea area}.
218
+ *
219
+ * the area of the data cell
220
+ *
221
+ * @returns Value of property `area`
222
+ */
223
+ getArea(): object;
224
+ /**
225
+ * Gets current value of property {@link #getCol col}.
226
+ *
227
+ * the column of the data cell
228
+ *
229
+ * @returns Value of property `col`
230
+ */
231
+ getCol(): int;
232
+ /**
233
+ * Gets current value of property {@link #getRow row}.
234
+ *
235
+ * the row of the data cell
236
+ *
237
+ * @returns Value of property `row`
238
+ */
239
+ getRow(): int;
240
+ /**
241
+ * Gets current value of property {@link #getTableCol tableCol}.
242
+ *
243
+ * the table column of the data cell
244
+ *
245
+ * @returns Value of property `tableCol`
246
+ */
247
+ getTableCol(): int;
248
+ /**
249
+ * Gets current value of property {@link #getTableRow tableRow}.
250
+ *
251
+ * the table row of the data cell
252
+ *
253
+ * @returns Value of property `tableRow`
254
+ */
255
+ getTableRow(): int;
256
+ /**
257
+ * Gets current value of property {@link #getText text}.
258
+ *
259
+ * the text of the data cell
260
+ *
261
+ * @returns Value of property `text`
262
+ */
263
+ getText(): string;
264
+ /**
265
+ * Sets a new value for property {@link #getArea area}.
266
+ *
267
+ * the area of the data cell
268
+ *
269
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
270
+ *
271
+ * @returns Reference to `this` in order to allow method chaining
272
+ */
273
+ setArea(
274
+ /**
275
+ * New value for property `area`
276
+ */
277
+ oArea?: object
278
+ ): this;
279
+ /**
280
+ * Sets a new value for property {@link #getCol col}.
281
+ *
282
+ * the column of the data cell
283
+ *
284
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
285
+ *
286
+ * @returns Reference to `this` in order to allow method chaining
287
+ */
288
+ setCol(
289
+ /**
290
+ * New value for property `col`
291
+ */
292
+ iCol?: int
293
+ ): this;
294
+ /**
295
+ * Sets a new value for property {@link #getRow row}.
296
+ *
297
+ * the row of the data cell
298
+ *
299
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
300
+ *
301
+ * @returns Reference to `this` in order to allow method chaining
302
+ */
303
+ setRow(
304
+ /**
305
+ * New value for property `row`
306
+ */
307
+ iRow?: int
308
+ ): this;
309
+ /**
310
+ * Sets a new value for property {@link #getTableCol tableCol}.
311
+ *
312
+ * the table column of the data cell
313
+ *
314
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
315
+ *
316
+ * @returns Reference to `this` in order to allow method chaining
317
+ */
318
+ setTableCol(
319
+ /**
320
+ * New value for property `tableCol`
321
+ */
322
+ iTableCol?: int
323
+ ): this;
324
+ /**
325
+ * Sets a new value for property {@link #getTableRow tableRow}.
326
+ *
327
+ * the table row of the data cell
328
+ *
329
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
330
+ *
331
+ * @returns Reference to `this` in order to allow method chaining
332
+ */
333
+ setTableRow(
334
+ /**
335
+ * New value for property `tableRow`
336
+ */
337
+ iTableRow?: int
338
+ ): this;
339
+ /**
340
+ * Sets a new value for property {@link #getText text}.
341
+ *
342
+ * the text of the data cell
343
+ *
344
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
345
+ *
346
+ * @returns Reference to `this` in order to allow method chaining
347
+ */
348
+ setText(
349
+ /**
350
+ * New value for property `text`
351
+ */
352
+ sText?: string
353
+ ): this;
354
+ }
355
+
356
+ export interface $DataCellSettings extends $ControlSettings {
357
+ /**
358
+ * the text of the data cell
359
+ */
360
+ text?: string | PropertyBindingInfo;
361
+
362
+ /**
363
+ * the area of the data cell
364
+ */
365
+ area?: object | PropertyBindingInfo | `{${string}}`;
366
+
367
+ /**
368
+ * the row of the data cell
369
+ */
370
+ row?: int | PropertyBindingInfo | `{${string}}`;
371
+
372
+ /**
373
+ * the column of the data cell
374
+ */
375
+ col?: int | PropertyBindingInfo | `{${string}}`;
376
+
377
+ /**
378
+ * the table row of the data cell
379
+ */
380
+ tableRow?: int | PropertyBindingInfo | `{${string}}`;
381
+
382
+ /**
383
+ * the table column of the data cell
384
+ */
385
+ tableCol?: int | PropertyBindingInfo | `{${string}}`;
386
+ }
387
+ }
388
+
389
+ declare module "sap/zen/crosstab/HeaderCell" {
390
+ import { default as Control, $ControlSettings } from "sap/ui/core/Control";
391
+
392
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
393
+
394
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
395
+
396
+ /**
397
+ * @deprecated (since 1.89.0)
398
+ *
399
+ * Add your documentation for the new HeaderCell
400
+ */
401
+ export default class HeaderCell extends Control {
402
+ /**
403
+ * Constructor for a new HeaderCell.
404
+ *
405
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
406
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
407
+ * of the syntax of the settings object.
408
+ */
409
+ constructor(
410
+ /**
411
+ * initial settings for the new control
412
+ */
413
+ mSettings?: $HeaderCellSettings
414
+ );
415
+ /**
416
+ * Constructor for a new HeaderCell.
417
+ *
418
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
419
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
420
+ * of the syntax of the settings object.
421
+ */
422
+ constructor(
423
+ /**
424
+ * id for the new control, generated automatically if no id is given
425
+ */
426
+ sId?: string,
427
+ /**
428
+ * initial settings for the new control
429
+ */
430
+ mSettings?: $HeaderCellSettings
431
+ );
432
+
433
+ /**
434
+ * Creates a new subclass of class sap.zen.crosstab.HeaderCell with name `sClassName` and enriches it with
435
+ * the information contained in `oClassInfo`.
436
+ *
437
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
438
+ *
439
+ * @returns Created class / constructor function
440
+ */
441
+ static extend<T extends Record<string, unknown>>(
442
+ /**
443
+ * Name of the class being created
444
+ */
445
+ sClassName: string,
446
+ /**
447
+ * Object literal with information about the class
448
+ */
449
+ oClassInfo?: sap.ClassInfo<T, HeaderCell>,
450
+ /**
451
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
452
+ * used by this class
453
+ */
454
+ FNMetaImpl?: Function
455
+ ): Function;
456
+ /**
457
+ * Returns a metadata object for class sap.zen.crosstab.HeaderCell.
458
+ *
459
+ * @returns Metadata object describing this class
460
+ */
461
+ static getMetadata(): ElementMetadata;
462
+ /**
463
+ * Gets current value of property {@link #getAlignment alignment}.
464
+ *
465
+ * the alignment of the cell
466
+ *
467
+ * @returns Value of property `alignment`
468
+ */
469
+ getAlignment(): string;
470
+ /**
471
+ * Gets current value of property {@link #getArea area}.
472
+ *
473
+ * area of the cell
474
+ *
475
+ * @returns Value of property `area`
476
+ */
477
+ getArea(): object;
478
+ /**
479
+ * Gets current value of property {@link #getCol col}.
480
+ *
481
+ * the column of the cell in the crosstab
482
+ *
483
+ * @returns Value of property `col`
484
+ */
485
+ getCol(): int;
486
+ /**
487
+ * Gets current value of property {@link #getColSpan colSpan}.
488
+ *
489
+ * Colspan of the cell
490
+ *
491
+ * @returns Value of property `colSpan`
492
+ */
493
+ getColSpan(): int;
494
+ /**
495
+ * Gets current value of property {@link #getDrillState drillState}.
496
+ *
497
+ * the drillstate of the cell
498
+ *
499
+ * @returns Value of property `drillState`
500
+ */
501
+ getDrillState(): string;
502
+ /**
503
+ * Gets current value of property {@link #getEffectiveColSpan effectiveColSpan}.
504
+ *
505
+ * the effective col span
506
+ *
507
+ * @returns Value of property `effectiveColSpan`
508
+ */
509
+ getEffectiveColSpan(): int;
510
+ /**
511
+ * Gets current value of property {@link #getEffectiveRowSpan effectiveRowSpan}.
512
+ *
513
+ * the effective row span
514
+ *
515
+ * @returns Value of property `effectiveRowSpan`
516
+ */
517
+ getEffectiveRowSpan(): int;
518
+ /**
519
+ * Gets current value of property {@link #getFormatter formatter}.
520
+ *
521
+ * helper to format the cell
522
+ *
523
+ * @returns Value of property `formatter`
524
+ */
525
+ getFormatter(): object;
526
+ /**
527
+ * Gets current value of property {@link #getHierarchyAction hierarchyAction}.
528
+ *
529
+ * the hierarchy action of the cell
530
+ *
531
+ * @returns Value of property `hierarchyAction`
532
+ */
533
+ getHierarchyAction(): string;
534
+ /**
535
+ * Gets current value of property {@link #getHierarchyTooltip hierarchyTooltip}.
536
+ *
537
+ * the hierarchy tooltip
538
+ *
539
+ * @returns Value of property `hierarchyTooltip`
540
+ */
541
+ getHierarchyTooltip(): string;
542
+ /**
543
+ * @deprecated (since 1.89.0)
544
+ *
545
+ * Gets current value of property {@link #getHtmlIE8RowSpan htmlIE8RowSpan}.
546
+ *
547
+ * the IE8 row span
548
+ *
549
+ * Default value is `1`.
550
+ *
551
+ * @returns Value of property `htmlIE8RowSpan`
552
+ */
553
+ getHtmlIE8RowSpan(): int;
554
+ /**
555
+ * Gets current value of property {@link #getLevel level}.
556
+ *
557
+ * the level of the cell
558
+ *
559
+ * @returns Value of property `level`
560
+ */
561
+ getLevel(): int;
562
+ /**
563
+ * Gets current value of property {@link #getMemberId memberId}.
564
+ *
565
+ * the id of the associated member
566
+ *
567
+ * @returns Value of property `memberId`
568
+ */
569
+ getMemberId(): string;
570
+ /**
571
+ * Gets current value of property {@link #getMergeKey mergeKey}.
572
+ *
573
+ * whether to merge the cell if the keys are equal
574
+ *
575
+ * @returns Value of property `mergeKey`
576
+ */
577
+ getMergeKey(): string;
578
+ /**
579
+ * Gets current value of property {@link #getNodeAlignment nodeAlignment}.
580
+ *
581
+ * the node alignment
582
+ *
583
+ * @returns Value of property `nodeAlignment`
584
+ */
585
+ getNodeAlignment(): string;
586
+ /**
587
+ * Gets current value of property {@link #getParentMemberId parentMemberId}.
588
+ *
589
+ * the id of the parent of the associated member
590
+ *
591
+ * @returns Value of property `parentMemberId`
592
+ */
593
+ getParentMemberId(): string;
594
+ /**
595
+ * Gets current value of property {@link #getRow row}.
596
+ *
597
+ * the row of the cell in the crosstab
598
+ *
599
+ * @returns Value of property `row`
600
+ */
601
+ getRow(): int;
602
+ /**
603
+ * Gets current value of property {@link #getRowSpan rowSpan}.
604
+ *
605
+ * Rowspan of the cell
606
+ *
607
+ * @returns Value of property `rowSpan`
608
+ */
609
+ getRowSpan(): int;
610
+ /**
611
+ * Gets current value of property {@link #getSort sort}.
612
+ *
613
+ * sorting
614
+ *
615
+ * @returns Value of property `sort`
616
+ */
617
+ getSort(): string;
618
+ /**
619
+ * Gets current value of property {@link #getSortAction sortAction}.
620
+ *
621
+ * sort action
622
+ *
623
+ * @returns Value of property `sortAction`
624
+ */
625
+ getSortAction(): string;
626
+ /**
627
+ * Gets current value of property {@link #getSortTextIndex sortTextIndex}.
628
+ *
629
+ * the text sort index
630
+ *
631
+ * @returns Value of property `sortTextIndex`
632
+ */
633
+ getSortTextIndex(): int;
634
+ /**
635
+ * Gets current value of property {@link #getTableCol tableCol}.
636
+ *
637
+ * the column of the table
638
+ *
639
+ * @returns Value of property `tableCol`
640
+ */
641
+ getTableCol(): int;
642
+ /**
643
+ * Gets current value of property {@link #getTableRow tableRow}.
644
+ *
645
+ * the row of the tabe
646
+ *
647
+ * @returns Value of property `tableRow`
648
+ */
649
+ getTableRow(): int;
650
+ /**
651
+ * Gets current value of property {@link #getText text}.
652
+ *
653
+ * Text of the cell
654
+ *
655
+ * @returns Value of property `text`
656
+ */
657
+ getText(): string;
658
+ /**
659
+ * Sets a new value for property {@link #getAlignment alignment}.
660
+ *
661
+ * the alignment of the cell
662
+ *
663
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
664
+ *
665
+ * @returns Reference to `this` in order to allow method chaining
666
+ */
667
+ setAlignment(
668
+ /**
669
+ * New value for property `alignment`
670
+ */
671
+ sAlignment?: string
672
+ ): this;
673
+ /**
674
+ * Sets a new value for property {@link #getArea area}.
675
+ *
676
+ * area of the cell
677
+ *
678
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
679
+ *
680
+ * @returns Reference to `this` in order to allow method chaining
681
+ */
682
+ setArea(
683
+ /**
684
+ * New value for property `area`
685
+ */
686
+ oArea?: object
687
+ ): this;
688
+ /**
689
+ * Sets a new value for property {@link #getCol col}.
690
+ *
691
+ * the column of the cell in the crosstab
692
+ *
693
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
694
+ *
695
+ * @returns Reference to `this` in order to allow method chaining
696
+ */
697
+ setCol(
698
+ /**
699
+ * New value for property `col`
700
+ */
701
+ iCol?: int
702
+ ): this;
703
+ /**
704
+ * Sets a new value for property {@link #getColSpan colSpan}.
705
+ *
706
+ * Colspan of the cell
707
+ *
708
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
709
+ *
710
+ * @returns Reference to `this` in order to allow method chaining
711
+ */
712
+ setColSpan(
713
+ /**
714
+ * New value for property `colSpan`
715
+ */
716
+ iColSpan?: int
717
+ ): this;
718
+ /**
719
+ * Sets a new value for property {@link #getDrillState drillState}.
720
+ *
721
+ * the drillstate of the cell
722
+ *
723
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
724
+ *
725
+ * @returns Reference to `this` in order to allow method chaining
726
+ */
727
+ setDrillState(
728
+ /**
729
+ * New value for property `drillState`
730
+ */
731
+ sDrillState?: string
732
+ ): this;
733
+ /**
734
+ * Sets a new value for property {@link #getEffectiveColSpan effectiveColSpan}.
735
+ *
736
+ * the effective col span
737
+ *
738
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
739
+ *
740
+ * @returns Reference to `this` in order to allow method chaining
741
+ */
742
+ setEffectiveColSpan(
743
+ /**
744
+ * New value for property `effectiveColSpan`
745
+ */
746
+ iEffectiveColSpan?: int
747
+ ): this;
748
+ /**
749
+ * Sets a new value for property {@link #getEffectiveRowSpan effectiveRowSpan}.
750
+ *
751
+ * the effective row span
752
+ *
753
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
754
+ *
755
+ * @returns Reference to `this` in order to allow method chaining
756
+ */
757
+ setEffectiveRowSpan(
758
+ /**
759
+ * New value for property `effectiveRowSpan`
760
+ */
761
+ iEffectiveRowSpan?: int
762
+ ): this;
763
+ /**
764
+ * Sets a new value for property {@link #getFormatter formatter}.
765
+ *
766
+ * helper to format the cell
767
+ *
768
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
769
+ *
770
+ * @returns Reference to `this` in order to allow method chaining
771
+ */
772
+ setFormatter(
773
+ /**
774
+ * New value for property `formatter`
775
+ */
776
+ oFormatter?: object
777
+ ): this;
778
+ /**
779
+ * Sets a new value for property {@link #getHierarchyAction hierarchyAction}.
780
+ *
781
+ * the hierarchy action of the cell
782
+ *
783
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
784
+ *
785
+ * @returns Reference to `this` in order to allow method chaining
786
+ */
787
+ setHierarchyAction(
788
+ /**
789
+ * New value for property `hierarchyAction`
790
+ */
791
+ sHierarchyAction?: string
792
+ ): this;
793
+ /**
794
+ * Sets a new value for property {@link #getHierarchyTooltip hierarchyTooltip}.
795
+ *
796
+ * the hierarchy tooltip
797
+ *
798
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
799
+ *
800
+ * @returns Reference to `this` in order to allow method chaining
801
+ */
802
+ setHierarchyTooltip(
803
+ /**
804
+ * New value for property `hierarchyTooltip`
805
+ */
806
+ sHierarchyTooltip?: string
807
+ ): this;
808
+ /**
809
+ * @deprecated (since 1.89.0)
810
+ *
811
+ * Sets a new value for property {@link #getHtmlIE8RowSpan htmlIE8RowSpan}.
812
+ *
813
+ * the IE8 row span
814
+ *
815
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
816
+ *
817
+ * Default value is `1`.
818
+ *
819
+ * @returns Reference to `this` in order to allow method chaining
820
+ */
821
+ setHtmlIE8RowSpan(
822
+ /**
823
+ * New value for property `htmlIE8RowSpan`
824
+ */
825
+ iHtmlIE8RowSpan?: int
826
+ ): this;
827
+ /**
828
+ * Sets a new value for property {@link #getLevel level}.
829
+ *
830
+ * the level of the cell
831
+ *
832
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
833
+ *
834
+ * @returns Reference to `this` in order to allow method chaining
835
+ */
836
+ setLevel(
837
+ /**
838
+ * New value for property `level`
839
+ */
840
+ iLevel?: int
841
+ ): this;
842
+ /**
843
+ * Sets a new value for property {@link #getMemberId memberId}.
844
+ *
845
+ * the id of the associated member
846
+ *
847
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
848
+ *
849
+ * @returns Reference to `this` in order to allow method chaining
850
+ */
851
+ setMemberId(
852
+ /**
853
+ * New value for property `memberId`
854
+ */
855
+ sMemberId?: string
856
+ ): this;
857
+ /**
858
+ * Sets a new value for property {@link #getMergeKey mergeKey}.
859
+ *
860
+ * whether to merge the cell if the keys are equal
861
+ *
862
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
863
+ *
864
+ * @returns Reference to `this` in order to allow method chaining
865
+ */
866
+ setMergeKey(
867
+ /**
868
+ * New value for property `mergeKey`
869
+ */
870
+ sMergeKey?: string
871
+ ): this;
872
+ /**
873
+ * Sets a new value for property {@link #getNodeAlignment nodeAlignment}.
874
+ *
875
+ * the node alignment
876
+ *
877
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
878
+ *
879
+ * @returns Reference to `this` in order to allow method chaining
880
+ */
881
+ setNodeAlignment(
882
+ /**
883
+ * New value for property `nodeAlignment`
884
+ */
885
+ sNodeAlignment?: string
886
+ ): this;
887
+ /**
888
+ * Sets a new value for property {@link #getParentMemberId parentMemberId}.
889
+ *
890
+ * the id of the parent of the associated member
891
+ *
892
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
893
+ *
894
+ * @returns Reference to `this` in order to allow method chaining
895
+ */
896
+ setParentMemberId(
897
+ /**
898
+ * New value for property `parentMemberId`
899
+ */
900
+ sParentMemberId?: string
901
+ ): this;
902
+ /**
903
+ * Sets a new value for property {@link #getRow row}.
904
+ *
905
+ * the row of the cell in the crosstab
906
+ *
907
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
908
+ *
909
+ * @returns Reference to `this` in order to allow method chaining
910
+ */
911
+ setRow(
912
+ /**
913
+ * New value for property `row`
914
+ */
915
+ iRow?: int
916
+ ): this;
917
+ /**
918
+ * Sets a new value for property {@link #getRowSpan rowSpan}.
919
+ *
920
+ * Rowspan of the cell
921
+ *
922
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
923
+ *
924
+ * @returns Reference to `this` in order to allow method chaining
925
+ */
926
+ setRowSpan(
927
+ /**
928
+ * New value for property `rowSpan`
929
+ */
930
+ iRowSpan?: int
931
+ ): this;
932
+ /**
933
+ * Sets a new value for property {@link #getSort sort}.
934
+ *
935
+ * sorting
936
+ *
937
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
938
+ *
939
+ * @returns Reference to `this` in order to allow method chaining
940
+ */
941
+ setSort(
942
+ /**
943
+ * New value for property `sort`
944
+ */
945
+ sSort?: string
946
+ ): this;
947
+ /**
948
+ * Sets a new value for property {@link #getSortAction sortAction}.
949
+ *
950
+ * sort action
951
+ *
952
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
953
+ *
954
+ * @returns Reference to `this` in order to allow method chaining
955
+ */
956
+ setSortAction(
957
+ /**
958
+ * New value for property `sortAction`
959
+ */
960
+ sSortAction?: string
961
+ ): this;
962
+ /**
963
+ * Sets a new value for property {@link #getSortTextIndex sortTextIndex}.
964
+ *
965
+ * the text sort index
966
+ *
967
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
968
+ *
969
+ * @returns Reference to `this` in order to allow method chaining
970
+ */
971
+ setSortTextIndex(
972
+ /**
973
+ * New value for property `sortTextIndex`
974
+ */
975
+ iSortTextIndex?: int
976
+ ): this;
977
+ /**
978
+ * Sets a new value for property {@link #getTableCol tableCol}.
979
+ *
980
+ * the column of the table
981
+ *
982
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
983
+ *
984
+ * @returns Reference to `this` in order to allow method chaining
985
+ */
986
+ setTableCol(
987
+ /**
988
+ * New value for property `tableCol`
989
+ */
990
+ iTableCol?: int
991
+ ): this;
992
+ /**
993
+ * Sets a new value for property {@link #getTableRow tableRow}.
994
+ *
995
+ * the row of the tabe
996
+ *
997
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
998
+ *
999
+ * @returns Reference to `this` in order to allow method chaining
1000
+ */
1001
+ setTableRow(
1002
+ /**
1003
+ * New value for property `tableRow`
1004
+ */
1005
+ iTableRow?: int
1006
+ ): this;
1007
+ /**
1008
+ * Sets a new value for property {@link #getText text}.
1009
+ *
1010
+ * Text of the cell
1011
+ *
1012
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1013
+ *
1014
+ * @returns Reference to `this` in order to allow method chaining
1015
+ */
1016
+ setText(
1017
+ /**
1018
+ * New value for property `text`
1019
+ */
1020
+ sText?: string
1021
+ ): this;
1022
+ }
1023
+
1024
+ export interface $HeaderCellSettings extends $ControlSettings {
1025
+ /**
1026
+ * Rowspan of the cell
1027
+ */
1028
+ rowSpan?: int | PropertyBindingInfo | `{${string}}`;
1029
+
1030
+ /**
1031
+ * Colspan of the cell
1032
+ */
1033
+ colSpan?: int | PropertyBindingInfo | `{${string}}`;
1034
+
1035
+ /**
1036
+ * Text of the cell
1037
+ */
1038
+ text?: string | PropertyBindingInfo;
1039
+
1040
+ /**
1041
+ * helper to format the cell
1042
+ */
1043
+ formatter?: object | PropertyBindingInfo | `{${string}}`;
1044
+
1045
+ /**
1046
+ * whether to merge the cell if the keys are equal
1047
+ */
1048
+ mergeKey?: string | PropertyBindingInfo;
1049
+
1050
+ /**
1051
+ * sorting
1052
+ */
1053
+ sort?: string | PropertyBindingInfo;
1054
+
1055
+ /**
1056
+ * sort action
1057
+ */
1058
+ sortAction?: string | PropertyBindingInfo;
1059
+
1060
+ /**
1061
+ * area of the cell
1062
+ */
1063
+ area?: object | PropertyBindingInfo | `{${string}}`;
1064
+
1065
+ /**
1066
+ * the effective col span
1067
+ */
1068
+ effectiveColSpan?: int | PropertyBindingInfo | `{${string}}`;
1069
+
1070
+ /**
1071
+ * the effective row span
1072
+ */
1073
+ effectiveRowSpan?: int | PropertyBindingInfo | `{${string}}`;
1074
+
1075
+ /**
1076
+ * the row of the cell in the crosstab
1077
+ */
1078
+ row?: int | PropertyBindingInfo | `{${string}}`;
1079
+
1080
+ /**
1081
+ * the column of the cell in the crosstab
1082
+ */
1083
+ col?: int | PropertyBindingInfo | `{${string}}`;
1084
+
1085
+ /**
1086
+ * the level of the cell
1087
+ */
1088
+ level?: int | PropertyBindingInfo | `{${string}}`;
1089
+
1090
+ /**
1091
+ * the drillstate of the cell
1092
+ */
1093
+ drillState?: string | PropertyBindingInfo;
1094
+
1095
+ /**
1096
+ * the hierarchy action of the cell
1097
+ */
1098
+ hierarchyAction?: string | PropertyBindingInfo;
1099
+
1100
+ /**
1101
+ * the hierarchy tooltip
1102
+ */
1103
+ hierarchyTooltip?: string | PropertyBindingInfo;
1104
+
1105
+ /**
1106
+ * @deprecated (since 1.89.0)
1107
+ *
1108
+ * the IE8 row span
1109
+ */
1110
+ htmlIE8RowSpan?: int | PropertyBindingInfo | `{${string}}`;
1111
+
1112
+ /**
1113
+ * the text sort index
1114
+ */
1115
+ sortTextIndex?: int | PropertyBindingInfo | `{${string}}`;
1116
+
1117
+ /**
1118
+ * the row of the tabe
1119
+ */
1120
+ tableRow?: int | PropertyBindingInfo | `{${string}}`;
1121
+
1122
+ /**
1123
+ * the column of the table
1124
+ */
1125
+ tableCol?: int | PropertyBindingInfo | `{${string}}`;
1126
+
1127
+ /**
1128
+ * the alignment of the cell
1129
+ */
1130
+ alignment?: string | PropertyBindingInfo;
1131
+
1132
+ /**
1133
+ * the id of the associated member
1134
+ */
1135
+ memberId?: string | PropertyBindingInfo;
1136
+
1137
+ /**
1138
+ * the id of the parent of the associated member
1139
+ */
1140
+ parentMemberId?: string | PropertyBindingInfo;
1141
+
1142
+ /**
1143
+ * the node alignment
1144
+ */
1145
+ nodeAlignment?: string | PropertyBindingInfo;
1146
+ }
1147
+ }
1148
+
1149
+ declare namespace sap {
1150
+ interface IUI5DefineDependencyNames {
1151
+ "sap/zen/crosstab/Crosstab": undefined;
1152
+
1153
+ "sap/zen/crosstab/DataCell": undefined;
1154
+
1155
+ "sap/zen/crosstab/HeaderCell": undefined;
1156
+
1157
+ "sap/zen/crosstab/library": undefined;
1158
+ }
1159
+ }