@openui5/types 1.117.0 → 1.118.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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +416 -2
- package/types/sap.m.d.ts +214 -90
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +5 -2
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1031 -197
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +51 -4
- package/types/sap.ui.integration.d.ts +68 -3
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +423 -141
- package/types/sap.ui.rta.d.ts +1 -4
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +180 -39
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -20
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +76 -35
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +116 -1
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.118.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -7,7 +7,6 @@ declare module "sap/ui/rta/api/startAdaptation" {
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @since 1.83
|
|
10
|
-
* @experimental (since 1.83)
|
|
11
10
|
*
|
|
12
11
|
* Starts UI adaptation, initiated for an application at the passed root control instance. With this API
|
|
13
12
|
* you are also able to modify the UI adaptation plugins list and or add some event handler functions to
|
|
@@ -65,7 +64,6 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
|
|
|
65
64
|
|
|
66
65
|
/**
|
|
67
66
|
* @since 1.71
|
|
68
|
-
* @experimental (since 1.71)
|
|
69
67
|
*
|
|
70
68
|
* Starts key user adaptation, initiated for an application at the passed root control instance. It subsequently
|
|
71
69
|
* extends to all valid child controls.
|
|
@@ -88,7 +86,6 @@ declare module "sap/ui/rta/api/startKeyUserAdaptation" {
|
|
|
88
86
|
declare module "sap/ui/rta/enablement/TestDelegate" {
|
|
89
87
|
/**
|
|
90
88
|
* @since 1.77
|
|
91
|
-
* @experimental (since 1.77)
|
|
92
89
|
*
|
|
93
90
|
* sap.ui.fl Delegate to be used in elementActionTests.
|
|
94
91
|
*/
|
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.118.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -255,6 +255,18 @@ declare module "sap/ui/table/AnalyticalColumn" {
|
|
|
255
255
|
* @returns Metadata object describing this class
|
|
256
256
|
*/
|
|
257
257
|
static getMetadata(): ElementMetadata;
|
|
258
|
+
/**
|
|
259
|
+
* @since 1.118
|
|
260
|
+
*
|
|
261
|
+
* Gets current value of property {@link #getGrouped grouped}.
|
|
262
|
+
*
|
|
263
|
+
* Indicates if the column is grouped.
|
|
264
|
+
*
|
|
265
|
+
* Default value is `false`.
|
|
266
|
+
*
|
|
267
|
+
* @returns Value of property `grouped`
|
|
268
|
+
*/
|
|
269
|
+
getGrouped(): boolean;
|
|
258
270
|
/**
|
|
259
271
|
* Gets current value of property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
|
|
260
272
|
*
|
|
@@ -304,6 +316,25 @@ declare module "sap/ui/table/AnalyticalColumn" {
|
|
|
304
316
|
* @returns Value of property `summed`
|
|
305
317
|
*/
|
|
306
318
|
getSummed(): boolean;
|
|
319
|
+
/**
|
|
320
|
+
* @since 1.118
|
|
321
|
+
*
|
|
322
|
+
* Sets a new value for property {@link #getGrouped grouped}.
|
|
323
|
+
*
|
|
324
|
+
* Indicates if the column is grouped.
|
|
325
|
+
*
|
|
326
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
327
|
+
*
|
|
328
|
+
* Default value is `false`.
|
|
329
|
+
*
|
|
330
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
331
|
+
*/
|
|
332
|
+
setGrouped(
|
|
333
|
+
/**
|
|
334
|
+
* New value for property `grouped`
|
|
335
|
+
*/
|
|
336
|
+
bGrouped?: boolean
|
|
337
|
+
): this;
|
|
307
338
|
/**
|
|
308
339
|
* Sets a new value for property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
|
|
309
340
|
*
|
|
@@ -418,6 +449,13 @@ declare module "sap/ui/table/AnalyticalColumn" {
|
|
|
418
449
|
* If the column is grouped, this formatter is used to format the value in the group header
|
|
419
450
|
*/
|
|
420
451
|
groupHeaderFormatter?: Function | PropertyBindingInfo | `{${string}}`;
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* @since 1.118
|
|
455
|
+
*
|
|
456
|
+
* Indicates if the column is grouped.
|
|
457
|
+
*/
|
|
458
|
+
grouped?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
421
459
|
}
|
|
422
460
|
}
|
|
423
461
|
|
|
@@ -508,9 +546,11 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
|
|
|
508
546
|
}
|
|
509
547
|
|
|
510
548
|
declare module "sap/ui/table/AnalyticalTable" {
|
|
511
|
-
import {
|
|
512
|
-
|
|
513
|
-
|
|
549
|
+
import {
|
|
550
|
+
default as Table,
|
|
551
|
+
$TableSettings,
|
|
552
|
+
Table$GroupEventParameters,
|
|
553
|
+
} from "sap/ui/table/Table";
|
|
514
554
|
|
|
515
555
|
import { ID } from "sap/ui/core/library";
|
|
516
556
|
|
|
@@ -520,6 +560,8 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
520
560
|
|
|
521
561
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
522
562
|
|
|
563
|
+
import Event from "sap/ui/base/Event";
|
|
564
|
+
|
|
523
565
|
/**
|
|
524
566
|
* Table which handles analytical OData backends. The AnalyticalTable only works with an AnalyticalBinding
|
|
525
567
|
* and correctly annotated OData services. Please check on the SAP Annotations for OData Version 2.0 documentation
|
|
@@ -615,6 +657,55 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
615
657
|
*/
|
|
616
658
|
iToIndex: int
|
|
617
659
|
): this;
|
|
660
|
+
/**
|
|
661
|
+
* @since 1.118
|
|
662
|
+
*
|
|
663
|
+
* Attaches event handler `fnFunction` to the {@link #event:group group} event of this `sap.ui.table.AnalyticalTable`.
|
|
664
|
+
*
|
|
665
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
666
|
+
* otherwise it will be bound to this `sap.ui.table.AnalyticalTable` itself.
|
|
667
|
+
*
|
|
668
|
+
* Fired when the table is grouped.
|
|
669
|
+
*
|
|
670
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
671
|
+
*/
|
|
672
|
+
attachGroup(
|
|
673
|
+
/**
|
|
674
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
675
|
+
* object when firing the event
|
|
676
|
+
*/
|
|
677
|
+
oData: object,
|
|
678
|
+
/**
|
|
679
|
+
* The function to be called when the event occurs
|
|
680
|
+
*/
|
|
681
|
+
fnFunction: (p1: AnalyticalTable$GroupEvent) => void,
|
|
682
|
+
/**
|
|
683
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.table.AnalyticalTable` itself
|
|
684
|
+
*/
|
|
685
|
+
oListener?: object
|
|
686
|
+
): this;
|
|
687
|
+
/**
|
|
688
|
+
* @since 1.118
|
|
689
|
+
*
|
|
690
|
+
* Attaches event handler `fnFunction` to the {@link #event:group group} event of this `sap.ui.table.AnalyticalTable`.
|
|
691
|
+
*
|
|
692
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
693
|
+
* otherwise it will be bound to this `sap.ui.table.AnalyticalTable` itself.
|
|
694
|
+
*
|
|
695
|
+
* Fired when the table is grouped.
|
|
696
|
+
*
|
|
697
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
698
|
+
*/
|
|
699
|
+
attachGroup(
|
|
700
|
+
/**
|
|
701
|
+
* The function to be called when the event occurs
|
|
702
|
+
*/
|
|
703
|
+
fnFunction: (p1: AnalyticalTable$GroupEvent) => void,
|
|
704
|
+
/**
|
|
705
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.table.AnalyticalTable` itself
|
|
706
|
+
*/
|
|
707
|
+
oListener?: object
|
|
708
|
+
): this;
|
|
618
709
|
/**
|
|
619
710
|
* Collapses one or more rows.
|
|
620
711
|
*
|
|
@@ -632,6 +723,25 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
632
723
|
* @returns Reference to `this` in order to allow method chaining
|
|
633
724
|
*/
|
|
634
725
|
collapseAll(): this;
|
|
726
|
+
/**
|
|
727
|
+
* @since 1.118
|
|
728
|
+
*
|
|
729
|
+
* Detaches event handler `fnFunction` from the {@link #event:group group} event of this `sap.ui.table.AnalyticalTable`.
|
|
730
|
+
*
|
|
731
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
732
|
+
*
|
|
733
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
734
|
+
*/
|
|
735
|
+
detachGroup(
|
|
736
|
+
/**
|
|
737
|
+
* The function to be called, when the event occurs
|
|
738
|
+
*/
|
|
739
|
+
fnFunction: (p1: AnalyticalTable$GroupEvent) => void,
|
|
740
|
+
/**
|
|
741
|
+
* Context object on which the given function had to be called
|
|
742
|
+
*/
|
|
743
|
+
oListener?: object
|
|
744
|
+
): this;
|
|
635
745
|
/**
|
|
636
746
|
* Expands one or more rows.
|
|
637
747
|
*
|
|
@@ -653,6 +763,23 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
653
763
|
* @returns Reference to `this` in order to allow method chaining
|
|
654
764
|
*/
|
|
655
765
|
expandAll(): this;
|
|
766
|
+
/**
|
|
767
|
+
* @since 1.118
|
|
768
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
769
|
+
*
|
|
770
|
+
* Fires event {@link #event:group group} to attached listeners.
|
|
771
|
+
*
|
|
772
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
773
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
774
|
+
*
|
|
775
|
+
* @returns Whether or not to prevent the default action
|
|
776
|
+
*/
|
|
777
|
+
fireGroup(
|
|
778
|
+
/**
|
|
779
|
+
* Parameters to pass along with the event
|
|
780
|
+
*/
|
|
781
|
+
mParameters?: AnalyticalTable$GroupEventParameters
|
|
782
|
+
): boolean;
|
|
656
783
|
/**
|
|
657
784
|
* @deprecated (since 1.44) - replaced by the `autoExpandMode` binding parameter
|
|
658
785
|
*
|
|
@@ -721,17 +848,6 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
721
848
|
* @returns Value of property `columnVisibilityMenuSorter`
|
|
722
849
|
*/
|
|
723
850
|
getColumnVisibilityMenuSorter(): any;
|
|
724
|
-
/**
|
|
725
|
-
* Returns the context of a row by its index.
|
|
726
|
-
*
|
|
727
|
-
* @returns The context of a row by its index
|
|
728
|
-
*/
|
|
729
|
-
getContextByIndex(
|
|
730
|
-
/**
|
|
731
|
-
* Index of the row to return the context from.
|
|
732
|
-
*/
|
|
733
|
-
iIndex: int
|
|
734
|
-
): Context;
|
|
735
851
|
/**
|
|
736
852
|
* @deprecated (since 1.21.2) - replaced by {@link sap.ui.table.Table#setShowOverlay}
|
|
737
853
|
*
|
|
@@ -1241,7 +1357,22 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1241
1357
|
* If dirty the content of the Table will be overlayed.
|
|
1242
1358
|
*/
|
|
1243
1359
|
dirty?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1360
|
+
|
|
1361
|
+
/**
|
|
1362
|
+
* @since 1.118
|
|
1363
|
+
*
|
|
1364
|
+
* Fired when the table is grouped.
|
|
1365
|
+
*/
|
|
1366
|
+
group?: (oEvent: AnalyticalTable$GroupEvent) => void;
|
|
1244
1367
|
}
|
|
1368
|
+
|
|
1369
|
+
export interface AnalyticalTable$GroupEventParameters
|
|
1370
|
+
extends Table$GroupEventParameters {}
|
|
1371
|
+
|
|
1372
|
+
export type AnalyticalTable$GroupEvent = Event<
|
|
1373
|
+
AnalyticalTable$GroupEventParameters,
|
|
1374
|
+
AnalyticalTable
|
|
1375
|
+
>;
|
|
1245
1376
|
}
|
|
1246
1377
|
|
|
1247
1378
|
declare module "sap/ui/table/Column" {
|
|
@@ -1581,6 +1712,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1581
1712
|
*/
|
|
1582
1713
|
getFlexible(): boolean;
|
|
1583
1714
|
/**
|
|
1715
|
+
* @deprecated (since 1.118)
|
|
1716
|
+
*
|
|
1584
1717
|
* Gets current value of property {@link #getGrouped grouped}.
|
|
1585
1718
|
*
|
|
1586
1719
|
* Indicates if the column is grouped.
|
|
@@ -1629,6 +1762,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1629
1762
|
* Label of the column which is displayed in the column header. This aggregation is for the standard behavior,
|
|
1630
1763
|
* where you only want to display one single row header. If a string is supplied, a default label control
|
|
1631
1764
|
* will be created. Which control this is depends on the loaded libraries.
|
|
1765
|
+
*
|
|
1766
|
+
* **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control` instead.
|
|
1632
1767
|
*/
|
|
1633
1768
|
getLabel(): Control | string;
|
|
1634
1769
|
/**
|
|
@@ -1761,6 +1896,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1761
1896
|
* in the documentation for more details. While it is technically possible to also use other controls, doing
|
|
1762
1897
|
* so might lead to issues with regards to scrolling, alignment, condensed mode, screen reader support,
|
|
1763
1898
|
* and keyboard support.
|
|
1899
|
+
*
|
|
1900
|
+
* **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control` instead.
|
|
1764
1901
|
*/
|
|
1765
1902
|
getTemplate(): Control | string;
|
|
1766
1903
|
/**
|
|
@@ -2015,6 +2152,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2015
2152
|
bFlexible?: boolean
|
|
2016
2153
|
): this;
|
|
2017
2154
|
/**
|
|
2155
|
+
* @deprecated (since 1.118)
|
|
2156
|
+
*
|
|
2018
2157
|
* Sets a new value for property {@link #getGrouped grouped}.
|
|
2019
2158
|
*
|
|
2020
2159
|
* Indicates if the column is grouped.
|
|
@@ -2471,6 +2610,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2471
2610
|
filterType?: any | PropertyBindingInfo | `{${string}}`;
|
|
2472
2611
|
|
|
2473
2612
|
/**
|
|
2613
|
+
* @deprecated (since 1.118)
|
|
2614
|
+
*
|
|
2474
2615
|
* Indicates if the column is grouped.
|
|
2475
2616
|
*/
|
|
2476
2617
|
grouped?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -2528,6 +2669,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2528
2669
|
* Label of the column which is displayed in the column header. This aggregation is for the standard behavior,
|
|
2529
2670
|
* where you only want to display one single row header. If a string is supplied, a default label control
|
|
2530
2671
|
* will be created. Which control this is depends on the loaded libraries.
|
|
2672
|
+
*
|
|
2673
|
+
* **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control` instead.
|
|
2531
2674
|
*/
|
|
2532
2675
|
label?: string | Control | PropertyBindingInfo;
|
|
2533
2676
|
|
|
@@ -2549,6 +2692,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2549
2692
|
* in the documentation for more details. While it is technically possible to also use other controls, doing
|
|
2550
2693
|
* so might lead to issues with regards to scrolling, alignment, condensed mode, screen reader support,
|
|
2551
2694
|
* and keyboard support.
|
|
2695
|
+
*
|
|
2696
|
+
* **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control` instead.
|
|
2552
2697
|
*/
|
|
2553
2698
|
template?: string | Control | PropertyBindingInfo;
|
|
2554
2699
|
|
|
@@ -5053,6 +5198,8 @@ declare module "sap/ui/table/Table" {
|
|
|
5053
5198
|
oListener?: object
|
|
5054
5199
|
): this;
|
|
5055
5200
|
/**
|
|
5201
|
+
* @deprecated (since 1.118)
|
|
5202
|
+
*
|
|
5056
5203
|
* Attaches event handler `fnFunction` to the {@link #event:group group} event of this `sap.ui.table.Table`.
|
|
5057
5204
|
*
|
|
5058
5205
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -5078,6 +5225,8 @@ declare module "sap/ui/table/Table" {
|
|
|
5078
5225
|
oListener?: object
|
|
5079
5226
|
): this;
|
|
5080
5227
|
/**
|
|
5228
|
+
* @deprecated (since 1.118)
|
|
5229
|
+
*
|
|
5081
5230
|
* Attaches event handler `fnFunction` to the {@link #event:group group} event of this `sap.ui.table.Table`.
|
|
5082
5231
|
*
|
|
5083
5232
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -5654,6 +5803,8 @@ declare module "sap/ui/table/Table" {
|
|
|
5654
5803
|
oListener?: object
|
|
5655
5804
|
): this;
|
|
5656
5805
|
/**
|
|
5806
|
+
* @deprecated (since 1.118)
|
|
5807
|
+
*
|
|
5657
5808
|
* Detaches event handler `fnFunction` from the {@link #event:group group} event of this `sap.ui.table.Table`.
|
|
5658
5809
|
*
|
|
5659
5810
|
* The passed function and listener object must match the ones used for event registration.
|
|
@@ -5969,6 +6120,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5969
6120
|
mParameters?: Table$FirstVisibleRowChangedEventParameters
|
|
5970
6121
|
): this;
|
|
5971
6122
|
/**
|
|
6123
|
+
* @deprecated (since 1.118)
|
|
5972
6124
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5973
6125
|
*
|
|
5974
6126
|
* Fires event {@link #event:group group} to attached listeners.
|
|
@@ -6128,14 +6280,14 @@ declare module "sap/ui/table/Table" {
|
|
|
6128
6280
|
getColumns(): Column[];
|
|
6129
6281
|
/**
|
|
6130
6282
|
* Returns the context of a row by its index. Please note that for server-based models like OData, the supplied
|
|
6131
|
-
* index might not have been loaded yet. If the context is not available at the client, the binding
|
|
6283
|
+
* index might not have been loaded yet. If the context is not available at the client, the binding may
|
|
6132
6284
|
* trigger a backend request and request this single context. Although this API looks synchronous it may
|
|
6133
6285
|
* not return a context but load it and fire a change event on the binding.
|
|
6134
6286
|
*
|
|
6135
6287
|
* For server-based models you should consider to only make this API call when the index is within the currently
|
|
6136
6288
|
* visible scroll area.
|
|
6137
6289
|
*
|
|
6138
|
-
* @returns The context at this index
|
|
6290
|
+
* @returns The context at this index if available
|
|
6139
6291
|
*/
|
|
6140
6292
|
getContextByIndex(
|
|
6141
6293
|
/**
|
|
@@ -6317,8 +6469,6 @@ declare module "sap/ui/table/Table" {
|
|
|
6317
6469
|
* Number of rows that are fix on the bottom. When you use a vertical scrollbar, only the rows which are
|
|
6318
6470
|
* not fixed, will scroll.
|
|
6319
6471
|
*
|
|
6320
|
-
* This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel client model}.
|
|
6321
|
-
*
|
|
6322
6472
|
* Default value is `0`.
|
|
6323
6473
|
*
|
|
6324
6474
|
* @returns Value of property `fixedBottomRowCount`
|
|
@@ -6346,8 +6496,6 @@ declare module "sap/ui/table/Table" {
|
|
|
6346
6496
|
* Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
|
|
6347
6497
|
* fixed, will scroll.
|
|
6348
6498
|
*
|
|
6349
|
-
* This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel client model}.
|
|
6350
|
-
*
|
|
6351
6499
|
* Default value is `0`.
|
|
6352
6500
|
*
|
|
6353
6501
|
* @returns Value of property `fixedRowCount`
|
|
@@ -6356,10 +6504,13 @@ declare module "sap/ui/table/Table" {
|
|
|
6356
6504
|
/**
|
|
6357
6505
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
6358
6506
|
*
|
|
6359
|
-
* Control or text of footer section of the Table (if not set it will be hidden)
|
|
6507
|
+
* Control or text of footer section of the Table (if not set it will be hidden).
|
|
6508
|
+
*
|
|
6509
|
+
* **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control` instead.
|
|
6360
6510
|
*/
|
|
6361
6511
|
getFooter(): Control | string;
|
|
6362
6512
|
/**
|
|
6513
|
+
* @deprecated (since 1.110)
|
|
6363
6514
|
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
6364
6515
|
*
|
|
6365
6516
|
* ID of the element which is the current target of the association {@link #getGroupBy groupBy}, or `null`.
|
|
@@ -7173,8 +7324,6 @@ declare module "sap/ui/table/Table" {
|
|
|
7173
7324
|
* Number of rows that are fix on the bottom. When you use a vertical scrollbar, only the rows which are
|
|
7174
7325
|
* not fixed, will scroll.
|
|
7175
7326
|
*
|
|
7176
|
-
* This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel client model}.
|
|
7177
|
-
*
|
|
7178
7327
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7179
7328
|
*
|
|
7180
7329
|
* Default value is `0`.
|
|
@@ -7216,8 +7365,6 @@ declare module "sap/ui/table/Table" {
|
|
|
7216
7365
|
* Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
|
|
7217
7366
|
* fixed, will scroll.
|
|
7218
7367
|
*
|
|
7219
|
-
* This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel client model}.
|
|
7220
|
-
*
|
|
7221
7368
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7222
7369
|
*
|
|
7223
7370
|
* Default value is `0`.
|
|
@@ -7242,6 +7389,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7242
7389
|
vFooter: Control | string
|
|
7243
7390
|
): this;
|
|
7244
7391
|
/**
|
|
7392
|
+
* @deprecated (since 1.110)
|
|
7245
7393
|
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
7246
7394
|
*
|
|
7247
7395
|
* Sets the associated {@link #getGroupBy groupBy}.
|
|
@@ -7844,8 +7992,6 @@ declare module "sap/ui/table/Table" {
|
|
|
7844
7992
|
/**
|
|
7845
7993
|
* Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
|
|
7846
7994
|
* fixed, will scroll.
|
|
7847
|
-
*
|
|
7848
|
-
* This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel client model}.
|
|
7849
7995
|
*/
|
|
7850
7996
|
fixedRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
7851
7997
|
|
|
@@ -7854,8 +8000,6 @@ declare module "sap/ui/table/Table" {
|
|
|
7854
8000
|
*
|
|
7855
8001
|
* Number of rows that are fix on the bottom. When you use a vertical scrollbar, only the rows which are
|
|
7856
8002
|
* not fixed, will scroll.
|
|
7857
|
-
*
|
|
7858
|
-
* This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel client model}.
|
|
7859
8003
|
*/
|
|
7860
8004
|
fixedBottomRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
7861
8005
|
|
|
@@ -7931,7 +8075,9 @@ declare module "sap/ui/table/Table" {
|
|
|
7931
8075
|
title?: string | Control | PropertyBindingInfo;
|
|
7932
8076
|
|
|
7933
8077
|
/**
|
|
7934
|
-
* Control or text of footer section of the Table (if not set it will be hidden)
|
|
8078
|
+
* Control or text of footer section of the Table (if not set it will be hidden).
|
|
8079
|
+
*
|
|
8080
|
+
* **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control` instead.
|
|
7935
8081
|
*/
|
|
7936
8082
|
footer?: string | Control | PropertyBindingInfo;
|
|
7937
8083
|
|
|
@@ -8029,6 +8175,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8029
8175
|
| `{${string}}`;
|
|
8030
8176
|
|
|
8031
8177
|
/**
|
|
8178
|
+
* @deprecated (since 1.110)
|
|
8032
8179
|
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
8033
8180
|
*
|
|
8034
8181
|
* The column by which the table is grouped. Grouping will only be performed if `enableGrouping` is set
|
|
@@ -8082,6 +8229,8 @@ declare module "sap/ui/table/Table" {
|
|
|
8082
8229
|
filter?: (oEvent: Table$FilterEvent) => void;
|
|
8083
8230
|
|
|
8084
8231
|
/**
|
|
8232
|
+
* @deprecated (since 1.118)
|
|
8233
|
+
*
|
|
8085
8234
|
* fired when the table is grouped (experimental!).
|
|
8086
8235
|
*/
|
|
8087
8236
|
group?: (oEvent: Table$GroupEvent) => void;
|
|
@@ -9548,14 +9697,6 @@ declare namespace sap {
|
|
|
9548
9697
|
|
|
9549
9698
|
"sap/ui/table/RowActionItem": undefined;
|
|
9550
9699
|
|
|
9551
|
-
"sap/ui/table/rowmodes/AutoRowMode": undefined;
|
|
9552
|
-
|
|
9553
|
-
"sap/ui/table/rowmodes/FixedRowMode": undefined;
|
|
9554
|
-
|
|
9555
|
-
"sap/ui/table/rowmodes/InteractiveRowMode": undefined;
|
|
9556
|
-
|
|
9557
|
-
"sap/ui/table/rowmodes/RowMode": undefined;
|
|
9558
|
-
|
|
9559
9700
|
"sap/ui/table/RowSettings": undefined;
|
|
9560
9701
|
|
|
9561
9702
|
"sap/ui/table/Table": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.118.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -7166,25 +7166,6 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
7166
7166
|
*/
|
|
7167
7167
|
sSecondaryCalendarType: CalendarType
|
|
7168
7168
|
): this;
|
|
7169
|
-
/**
|
|
7170
|
-
* @deprecated (since 1.34.0) - replaced by `date` property
|
|
7171
|
-
*
|
|
7172
|
-
* Sets a new value for property {@link #getYear year}.
|
|
7173
|
-
*
|
|
7174
|
-
* The year is initial focused and selected The value must be between 0 and 9999
|
|
7175
|
-
*
|
|
7176
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7177
|
-
*
|
|
7178
|
-
* Default value is `2000`.
|
|
7179
|
-
*
|
|
7180
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
7181
|
-
*/
|
|
7182
|
-
setYear(
|
|
7183
|
-
/**
|
|
7184
|
-
* New value for property `year`
|
|
7185
|
-
*/
|
|
7186
|
-
iYear?: int
|
|
7187
|
-
): this;
|
|
7188
7169
|
/**
|
|
7189
7170
|
* @since 1.30.0
|
|
7190
7171
|
*
|
package/types/sap.ui.ux3.d.ts
CHANGED