@openui5/ts-types 1.120.11 → 1.120.13
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 +369 -2
- package/types/sap.m.d.ts +3123 -7
- package/types/sap.tnt.d.ts +40 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/sap.ui.commons.d.ts +753 -1
- package/types/sap.ui.core.d.ts +1098 -65
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -1
- package/types/sap.ui.integration.d.ts +144 -2
- package/types/sap.ui.layout.d.ts +166 -2
- package/types/sap.ui.mdc.d.ts +430 -4
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -2
- package/types/sap.ui.ux3.d.ts +524 -2
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uxap.d.ts +118 -1
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -9,6 +9,13 @@ declare namespace sap {
|
|
|
9
9
|
* @deprecated (since 1.108)
|
|
10
10
|
*/
|
|
11
11
|
namespace suite {
|
|
12
|
+
/**
|
|
13
|
+
* Describes the settings that can be provided to the TaskCircle constructor.
|
|
14
|
+
*
|
|
15
|
+
* @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
|
|
16
|
+
* known
|
|
17
|
+
* @experimental (since 1.2) - The API may change. Use with care.
|
|
18
|
+
*/
|
|
12
19
|
interface $TaskCircleSettings extends sap.ui.core.$ControlSettings {
|
|
13
20
|
/**
|
|
14
21
|
* Current value of the task circle to be displayed. In dependency of the parameters maxValue and minValue
|
|
@@ -59,6 +66,13 @@ declare namespace sap {
|
|
|
59
66
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
60
67
|
}
|
|
61
68
|
|
|
69
|
+
/**
|
|
70
|
+
* Describes the settings that can be provided to the VerticalProgressIndicator constructor.
|
|
71
|
+
*
|
|
72
|
+
* @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
|
|
73
|
+
* known
|
|
74
|
+
* @experimental (since 1.2) - The API may change. Use with care.
|
|
75
|
+
*/
|
|
62
76
|
interface $VerticalProgressIndicatorSettings
|
|
63
77
|
extends sap.ui.core.$ControlSettings {
|
|
64
78
|
/**
|
|
@@ -86,8 +100,14 @@ declare namespace sap {
|
|
|
86
100
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
87
101
|
}
|
|
88
102
|
|
|
103
|
+
/**
|
|
104
|
+
* Parameters of the TaskCircle#press event.
|
|
105
|
+
*/
|
|
89
106
|
interface TaskCircle$PressEventParameters {}
|
|
90
107
|
|
|
108
|
+
/**
|
|
109
|
+
* Parameters of the VerticalProgressIndicator#press event.
|
|
110
|
+
*/
|
|
91
111
|
interface VerticalProgressIndicator$PressEventParameters {}
|
|
92
112
|
|
|
93
113
|
/**
|
|
@@ -697,12 +717,17 @@ declare namespace sap {
|
|
|
697
717
|
*/
|
|
698
718
|
Yellow = "Yellow",
|
|
699
719
|
}
|
|
700
|
-
|
|
720
|
+
/**
|
|
721
|
+
* Event object of the TaskCircle#press event.
|
|
722
|
+
*/
|
|
701
723
|
type TaskCircle$PressEvent = sap.ui.base.Event<
|
|
702
724
|
TaskCircle$PressEventParameters,
|
|
703
725
|
TaskCircle
|
|
704
726
|
>;
|
|
705
727
|
|
|
728
|
+
/**
|
|
729
|
+
* Event object of the VerticalProgressIndicator#press event.
|
|
730
|
+
*/
|
|
706
731
|
type VerticalProgressIndicator$PressEvent = sap.ui.base.Event<
|
|
707
732
|
VerticalProgressIndicator$PressEventParameters,
|
|
708
733
|
VerticalProgressIndicator
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -9,6 +9,9 @@ declare namespace sap {
|
|
|
9
9
|
*/
|
|
10
10
|
namespace table {
|
|
11
11
|
namespace plugins {
|
|
12
|
+
/**
|
|
13
|
+
* Describes the settings that can be provided to the MultiSelectionPlugin constructor.
|
|
14
|
+
*/
|
|
12
15
|
interface $MultiSelectionPluginSettings
|
|
13
16
|
extends sap.ui.table.plugins.$SelectionPluginSettings {
|
|
14
17
|
/**
|
|
@@ -65,6 +68,11 @@ declare namespace sap {
|
|
|
65
68
|
) => void;
|
|
66
69
|
}
|
|
67
70
|
|
|
71
|
+
/**
|
|
72
|
+
* Describes the settings that can be provided to the SelectionPlugin constructor.
|
|
73
|
+
*
|
|
74
|
+
* @experimental (since 1.64)
|
|
75
|
+
*/
|
|
68
76
|
interface $SelectionPluginSettings
|
|
69
77
|
extends sap.ui.core.$ElementSettings {
|
|
70
78
|
/**
|
|
@@ -81,6 +89,9 @@ declare namespace sap {
|
|
|
81
89
|
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
82
90
|
}
|
|
83
91
|
|
|
92
|
+
/**
|
|
93
|
+
* Parameters of the MultiSelectionPlugin#selectionChange event.
|
|
94
|
+
*/
|
|
84
95
|
interface MultiSelectionPlugin$SelectionChangeEventParameters
|
|
85
96
|
extends sap.ui.table.plugins
|
|
86
97
|
.SelectionPlugin$SelectionChangeEventParameters {
|
|
@@ -100,6 +111,9 @@ declare namespace sap {
|
|
|
100
111
|
customPayload?: object;
|
|
101
112
|
}
|
|
102
113
|
|
|
114
|
+
/**
|
|
115
|
+
* Parameters of the SelectionPlugin#selectionChange event.
|
|
116
|
+
*/
|
|
103
117
|
interface SelectionPlugin$SelectionChangeEventParameters {}
|
|
104
118
|
|
|
105
119
|
/**
|
|
@@ -711,11 +725,17 @@ declare namespace sap {
|
|
|
711
725
|
): this;
|
|
712
726
|
}
|
|
713
727
|
|
|
728
|
+
/**
|
|
729
|
+
* Event object of the MultiSelectionPlugin#selectionChange event.
|
|
730
|
+
*/
|
|
714
731
|
type MultiSelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<
|
|
715
732
|
MultiSelectionPlugin$SelectionChangeEventParameters,
|
|
716
733
|
MultiSelectionPlugin
|
|
717
734
|
>;
|
|
718
735
|
|
|
736
|
+
/**
|
|
737
|
+
* Event object of the SelectionPlugin#selectionChange event.
|
|
738
|
+
*/
|
|
719
739
|
type SelectionPlugin$SelectionChangeEvent = sap.ui.base.Event<
|
|
720
740
|
SelectionPlugin$SelectionChangeEventParameters,
|
|
721
741
|
SelectionPlugin
|
|
@@ -723,6 +743,9 @@ declare namespace sap {
|
|
|
723
743
|
}
|
|
724
744
|
|
|
725
745
|
namespace rowmodes {
|
|
746
|
+
/**
|
|
747
|
+
* Describes the settings that can be provided to the Auto constructor.
|
|
748
|
+
*/
|
|
726
749
|
interface $AutoSettings extends sap.ui.table.rowmodes.$RowModeSettings {
|
|
727
750
|
/**
|
|
728
751
|
* The minimum number of displayed rows.
|
|
@@ -770,6 +793,9 @@ declare namespace sap {
|
|
|
770
793
|
| `{${string}}`;
|
|
771
794
|
}
|
|
772
795
|
|
|
796
|
+
/**
|
|
797
|
+
* Describes the settings that can be provided to the Fixed constructor.
|
|
798
|
+
*/
|
|
773
799
|
interface $FixedSettings
|
|
774
800
|
extends sap.ui.table.rowmodes.$RowModeSettings {
|
|
775
801
|
/**
|
|
@@ -811,6 +837,9 @@ declare namespace sap {
|
|
|
811
837
|
| `{${string}}`;
|
|
812
838
|
}
|
|
813
839
|
|
|
840
|
+
/**
|
|
841
|
+
* Describes the settings that can be provided to the Interactive constructor.
|
|
842
|
+
*/
|
|
814
843
|
interface $InteractiveSettings
|
|
815
844
|
extends sap.ui.table.rowmodes.$RowModeSettings {
|
|
816
845
|
/**
|
|
@@ -860,6 +889,9 @@ declare namespace sap {
|
|
|
860
889
|
| `{${string}}`;
|
|
861
890
|
}
|
|
862
891
|
|
|
892
|
+
/**
|
|
893
|
+
* Describes the settings that can be provided to the RowMode constructor.
|
|
894
|
+
*/
|
|
863
895
|
interface $RowModeSettings extends sap.ui.core.$ElementSettings {}
|
|
864
896
|
|
|
865
897
|
/**
|
|
@@ -1586,7 +1618,9 @@ declare namespace sap {
|
|
|
1586
1618
|
Interactive = "Interactive",
|
|
1587
1619
|
}
|
|
1588
1620
|
}
|
|
1589
|
-
|
|
1621
|
+
/**
|
|
1622
|
+
* Describes the settings that can be provided to the AnalyticalColumn constructor.
|
|
1623
|
+
*/
|
|
1590
1624
|
interface $AnalyticalColumnSettings extends sap.ui.table.$ColumnSettings {
|
|
1591
1625
|
/**
|
|
1592
1626
|
* Defines the primary model property which is used inside the Column. In case of the analytical extension
|
|
@@ -1641,9 +1675,18 @@ declare namespace sap {
|
|
|
1641
1675
|
| `{${string}}`;
|
|
1642
1676
|
}
|
|
1643
1677
|
|
|
1678
|
+
/**
|
|
1679
|
+
* Describes the settings that can be provided to the AnalyticalColumnMenu constructor.
|
|
1680
|
+
*
|
|
1681
|
+
* @deprecated (since 1.117)
|
|
1682
|
+
* @experimental (since 1.21)
|
|
1683
|
+
*/
|
|
1644
1684
|
interface $AnalyticalColumnMenuSettings
|
|
1645
1685
|
extends sap.ui.table.$ColumnMenuSettings {}
|
|
1646
1686
|
|
|
1687
|
+
/**
|
|
1688
|
+
* Describes the settings that can be provided to the AnalyticalTable constructor.
|
|
1689
|
+
*/
|
|
1647
1690
|
interface $AnalyticalTableSettings extends sap.ui.table.$TableSettings {
|
|
1648
1691
|
/**
|
|
1649
1692
|
* Specifies if the total values should be displayed in the group headers or on bottom of the row. Does
|
|
@@ -1777,6 +1820,9 @@ declare namespace sap {
|
|
|
1777
1820
|
group?: (oEvent: AnalyticalTable$GroupEvent) => void;
|
|
1778
1821
|
}
|
|
1779
1822
|
|
|
1823
|
+
/**
|
|
1824
|
+
* Describes the settings that can be provided to the Column constructor.
|
|
1825
|
+
*/
|
|
1780
1826
|
interface $ColumnSettings extends sap.ui.core.$ElementSettings {
|
|
1781
1827
|
/**
|
|
1782
1828
|
* Width of the column in CSS units. Default value is `auto`, see
|
|
@@ -2085,8 +2131,16 @@ declare namespace sap {
|
|
|
2085
2131
|
columnMenuOpen?: (oEvent: Column$ColumnMenuOpenEvent) => void;
|
|
2086
2132
|
}
|
|
2087
2133
|
|
|
2134
|
+
/**
|
|
2135
|
+
* Describes the settings that can be provided to the ColumnMenu constructor.
|
|
2136
|
+
*
|
|
2137
|
+
* @deprecated (since 1.117) - use the {@link sap.m.table.columnmenu.Menu} instead.
|
|
2138
|
+
*/
|
|
2088
2139
|
interface $ColumnMenuSettings extends sap.ui.unified.$MenuSettings {}
|
|
2089
2140
|
|
|
2141
|
+
/**
|
|
2142
|
+
* Describes the settings that can be provided to the Row constructor.
|
|
2143
|
+
*/
|
|
2090
2144
|
interface $RowSettings extends sap.ui.core.$ElementSettings {
|
|
2091
2145
|
/**
|
|
2092
2146
|
* The actual cells are a table-internal construct. The controls in this aggregation are the content of
|
|
@@ -2100,6 +2154,9 @@ declare namespace sap {
|
|
|
2100
2154
|
| `{${string}}`;
|
|
2101
2155
|
}
|
|
2102
2156
|
|
|
2157
|
+
/**
|
|
2158
|
+
* Describes the settings that can be provided to the RowAction constructor.
|
|
2159
|
+
*/
|
|
2103
2160
|
interface $RowActionSettings extends sap.ui.core.$ControlSettings {
|
|
2104
2161
|
/**
|
|
2105
2162
|
* Whether the control should be visible on the screen. If set to `false`, the control is hidden.
|
|
@@ -2119,6 +2176,9 @@ declare namespace sap {
|
|
|
2119
2176
|
| `{${string}}`;
|
|
2120
2177
|
}
|
|
2121
2178
|
|
|
2179
|
+
/**
|
|
2180
|
+
* Describes the settings that can be provided to the RowActionItem constructor.
|
|
2181
|
+
*/
|
|
2122
2182
|
interface $RowActionItemSettings extends sap.ui.core.$ElementSettings {
|
|
2123
2183
|
/**
|
|
2124
2184
|
* The icon of the item.
|
|
@@ -2156,6 +2216,9 @@ declare namespace sap {
|
|
|
2156
2216
|
press?: (oEvent: RowActionItem$PressEvent) => void;
|
|
2157
2217
|
}
|
|
2158
2218
|
|
|
2219
|
+
/**
|
|
2220
|
+
* Describes the settings that can be provided to the RowSettings constructor.
|
|
2221
|
+
*/
|
|
2159
2222
|
interface $RowSettingsSettings extends sap.ui.core.$ElementSettings {
|
|
2160
2223
|
/**
|
|
2161
2224
|
* The highlight state of the rows.
|
|
@@ -2196,6 +2259,9 @@ declare namespace sap {
|
|
|
2196
2259
|
| `{${string}}`;
|
|
2197
2260
|
}
|
|
2198
2261
|
|
|
2262
|
+
/**
|
|
2263
|
+
* Describes the settings that can be provided to the Table constructor.
|
|
2264
|
+
*/
|
|
2199
2265
|
interface $TableSettings extends sap.ui.core.$ControlSettings {
|
|
2200
2266
|
/**
|
|
2201
2267
|
* Width of the Table.
|
|
@@ -2847,6 +2913,11 @@ declare namespace sap {
|
|
|
2847
2913
|
rowsUpdated?: (oEvent: sap.ui.base.Event) => void;
|
|
2848
2914
|
}
|
|
2849
2915
|
|
|
2916
|
+
/**
|
|
2917
|
+
* Describes the settings that can be provided to the TablePersoController constructor.
|
|
2918
|
+
*
|
|
2919
|
+
* @deprecated (since 1.115) - Please use the {@link sap.m.p13n.Engine Engine} for personalization instead.
|
|
2920
|
+
*/
|
|
2850
2921
|
interface $TablePersoControllerSettings
|
|
2851
2922
|
extends sap.ui.base.$ManagedObjectSettings {
|
|
2852
2923
|
/**
|
|
@@ -2903,6 +2974,9 @@ declare namespace sap {
|
|
|
2903
2974
|
table?: sap.ui.table.Table | string;
|
|
2904
2975
|
}
|
|
2905
2976
|
|
|
2977
|
+
/**
|
|
2978
|
+
* Describes the settings that can be provided to the TreeTable constructor.
|
|
2979
|
+
*/
|
|
2906
2980
|
interface $TreeTableSettings extends sap.ui.table.$TableSettings {
|
|
2907
2981
|
/**
|
|
2908
2982
|
* Specifies whether the first level is expanded.
|
|
@@ -3005,9 +3079,17 @@ declare namespace sap {
|
|
|
3005
3079
|
toggleOpenState?: (oEvent: TreeTable$ToggleOpenStateEvent) => void;
|
|
3006
3080
|
}
|
|
3007
3081
|
|
|
3082
|
+
/**
|
|
3083
|
+
* Parameters of the AnalyticalTable#group event.
|
|
3084
|
+
*/
|
|
3008
3085
|
interface AnalyticalTable$GroupEventParameters
|
|
3009
3086
|
extends sap.ui.table.Table$GroupEventParameters {}
|
|
3010
3087
|
|
|
3088
|
+
/**
|
|
3089
|
+
* Parameters of the Column#columnMenuOpen event.
|
|
3090
|
+
*
|
|
3091
|
+
* @deprecated (since 1.117)
|
|
3092
|
+
*/
|
|
3011
3093
|
interface Column$ColumnMenuOpenEventParameters {
|
|
3012
3094
|
/**
|
|
3013
3095
|
* Refence to the selected `menu` instance to be opened.
|
|
@@ -3015,6 +3097,9 @@ declare namespace sap {
|
|
|
3015
3097
|
menu?: sap.ui.unified.Menu;
|
|
3016
3098
|
}
|
|
3017
3099
|
|
|
3100
|
+
/**
|
|
3101
|
+
* Parameters of the RowActionItem#press event.
|
|
3102
|
+
*/
|
|
3018
3103
|
interface RowActionItem$PressEventParameters {
|
|
3019
3104
|
/**
|
|
3020
3105
|
* The item which was pressed.
|
|
@@ -3027,6 +3112,9 @@ declare namespace sap {
|
|
|
3027
3112
|
row?: sap.ui.table.Row;
|
|
3028
3113
|
}
|
|
3029
3114
|
|
|
3115
|
+
/**
|
|
3116
|
+
* Parameters of the Table#beforeOpenContextMenu event.
|
|
3117
|
+
*/
|
|
3030
3118
|
interface Table$BeforeOpenContextMenuEventParameters {
|
|
3031
3119
|
/**
|
|
3032
3120
|
* Row index where the context menu opens.
|
|
@@ -3044,6 +3132,9 @@ declare namespace sap {
|
|
|
3044
3132
|
contextMenu?: sap.ui.core.IContextMenu;
|
|
3045
3133
|
}
|
|
3046
3134
|
|
|
3135
|
+
/**
|
|
3136
|
+
* Parameters of the Table#busyStateChanged event.
|
|
3137
|
+
*/
|
|
3047
3138
|
interface Table$BusyStateChangedEventParameters {
|
|
3048
3139
|
/**
|
|
3049
3140
|
* busy state
|
|
@@ -3051,6 +3142,9 @@ declare namespace sap {
|
|
|
3051
3142
|
busy?: boolean;
|
|
3052
3143
|
}
|
|
3053
3144
|
|
|
3145
|
+
/**
|
|
3146
|
+
* Parameters of the Table#cellClick event.
|
|
3147
|
+
*/
|
|
3054
3148
|
interface Table$CellClickEventParameters {
|
|
3055
3149
|
/**
|
|
3056
3150
|
* The control of the cell.
|
|
@@ -3084,6 +3178,11 @@ declare namespace sap {
|
|
|
3084
3178
|
rowBindingContext?: sap.ui.model.Context;
|
|
3085
3179
|
}
|
|
3086
3180
|
|
|
3181
|
+
/**
|
|
3182
|
+
* Parameters of the Table#cellContextmenu event.
|
|
3183
|
+
*
|
|
3184
|
+
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
3185
|
+
*/
|
|
3087
3186
|
interface Table$CellContextmenuEventParameters {
|
|
3088
3187
|
/**
|
|
3089
3188
|
* The control of the cell.
|
|
@@ -3117,6 +3216,9 @@ declare namespace sap {
|
|
|
3117
3216
|
rowBindingContext?: sap.ui.model.Context;
|
|
3118
3217
|
}
|
|
3119
3218
|
|
|
3219
|
+
/**
|
|
3220
|
+
* Parameters of the Table#columnFreeze event.
|
|
3221
|
+
*/
|
|
3120
3222
|
interface Table$ColumnFreezeEventParameters {
|
|
3121
3223
|
/**
|
|
3122
3224
|
* reference to the column to freeze
|
|
@@ -3124,6 +3226,9 @@ declare namespace sap {
|
|
|
3124
3226
|
column?: sap.ui.table.Column;
|
|
3125
3227
|
}
|
|
3126
3228
|
|
|
3229
|
+
/**
|
|
3230
|
+
* Parameters of the Table#columnMove event.
|
|
3231
|
+
*/
|
|
3127
3232
|
interface Table$ColumnMoveEventParameters {
|
|
3128
3233
|
/**
|
|
3129
3234
|
* moved column.
|
|
@@ -3136,6 +3241,9 @@ declare namespace sap {
|
|
|
3136
3241
|
newPos?: int;
|
|
3137
3242
|
}
|
|
3138
3243
|
|
|
3244
|
+
/**
|
|
3245
|
+
* Parameters of the Table#columnResize event.
|
|
3246
|
+
*/
|
|
3139
3247
|
interface Table$ColumnResizeEventParameters {
|
|
3140
3248
|
/**
|
|
3141
3249
|
* resized column.
|
|
@@ -3148,6 +3256,11 @@ declare namespace sap {
|
|
|
3148
3256
|
width?: sap.ui.core.CSSSize;
|
|
3149
3257
|
}
|
|
3150
3258
|
|
|
3259
|
+
/**
|
|
3260
|
+
* Parameters of the Table#columnSelect event.
|
|
3261
|
+
*
|
|
3262
|
+
* @deprecated (since 1.117)
|
|
3263
|
+
*/
|
|
3151
3264
|
interface Table$ColumnSelectEventParameters {
|
|
3152
3265
|
/**
|
|
3153
3266
|
* reference to the selected column
|
|
@@ -3155,6 +3268,11 @@ declare namespace sap {
|
|
|
3155
3268
|
column?: sap.ui.table.Column;
|
|
3156
3269
|
}
|
|
3157
3270
|
|
|
3271
|
+
/**
|
|
3272
|
+
* Parameters of the Table#columnVisibility event.
|
|
3273
|
+
*
|
|
3274
|
+
* @deprecated (since 1.117)
|
|
3275
|
+
*/
|
|
3158
3276
|
interface Table$ColumnVisibilityEventParameters {
|
|
3159
3277
|
/**
|
|
3160
3278
|
* affected column.
|
|
@@ -3167,6 +3285,9 @@ declare namespace sap {
|
|
|
3167
3285
|
newVisible?: boolean;
|
|
3168
3286
|
}
|
|
3169
3287
|
|
|
3288
|
+
/**
|
|
3289
|
+
* Parameters of the Table#customFilter event.
|
|
3290
|
+
*/
|
|
3170
3291
|
interface Table$CustomFilterEventParameters {
|
|
3171
3292
|
/**
|
|
3172
3293
|
* The column instance on which the custom filter button was pressed.
|
|
@@ -3179,6 +3300,9 @@ declare namespace sap {
|
|
|
3179
3300
|
value?: string;
|
|
3180
3301
|
}
|
|
3181
3302
|
|
|
3303
|
+
/**
|
|
3304
|
+
* Parameters of the Table#filter event.
|
|
3305
|
+
*/
|
|
3182
3306
|
interface Table$FilterEventParameters {
|
|
3183
3307
|
/**
|
|
3184
3308
|
* filtered column.
|
|
@@ -3191,6 +3315,9 @@ declare namespace sap {
|
|
|
3191
3315
|
value?: string;
|
|
3192
3316
|
}
|
|
3193
3317
|
|
|
3318
|
+
/**
|
|
3319
|
+
* Parameters of the Table#firstVisibleRowChanged event.
|
|
3320
|
+
*/
|
|
3194
3321
|
interface Table$FirstVisibleRowChangedEventParameters {
|
|
3195
3322
|
/**
|
|
3196
3323
|
* First visible row
|
|
@@ -3198,6 +3325,11 @@ declare namespace sap {
|
|
|
3198
3325
|
firstVisibleRow?: int;
|
|
3199
3326
|
}
|
|
3200
3327
|
|
|
3328
|
+
/**
|
|
3329
|
+
* Parameters of the Table#group event.
|
|
3330
|
+
*
|
|
3331
|
+
* @deprecated (since 1.118)
|
|
3332
|
+
*/
|
|
3201
3333
|
interface Table$GroupEventParameters {
|
|
3202
3334
|
/**
|
|
3203
3335
|
* grouped column.
|
|
@@ -3205,6 +3337,9 @@ declare namespace sap {
|
|
|
3205
3337
|
column?: sap.ui.table.Column;
|
|
3206
3338
|
}
|
|
3207
3339
|
|
|
3340
|
+
/**
|
|
3341
|
+
* Parameters of the Table#paste event.
|
|
3342
|
+
*/
|
|
3208
3343
|
interface Table$PasteEventParameters {
|
|
3209
3344
|
/**
|
|
3210
3345
|
* 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
|
|
@@ -3213,6 +3348,9 @@ declare namespace sap {
|
|
|
3213
3348
|
data?: string[][];
|
|
3214
3349
|
}
|
|
3215
3350
|
|
|
3351
|
+
/**
|
|
3352
|
+
* Parameters of the Table#rowSelectionChange event.
|
|
3353
|
+
*/
|
|
3216
3354
|
interface Table$RowSelectionChangeEventParameters {
|
|
3217
3355
|
/**
|
|
3218
3356
|
* row index which has been clicked so that the selection has been changed (either selected or deselected)
|
|
@@ -3241,8 +3379,14 @@ declare namespace sap {
|
|
|
3241
3379
|
userInteraction?: boolean;
|
|
3242
3380
|
}
|
|
3243
3381
|
|
|
3382
|
+
/**
|
|
3383
|
+
* Parameters of the Table#rowsUpdated event.
|
|
3384
|
+
*/
|
|
3244
3385
|
interface Table$RowsUpdatedEventParameters {}
|
|
3245
3386
|
|
|
3387
|
+
/**
|
|
3388
|
+
* Parameters of the Table#sort event.
|
|
3389
|
+
*/
|
|
3246
3390
|
interface Table$SortEventParameters {
|
|
3247
3391
|
/**
|
|
3248
3392
|
* The column for which the sorting is changed
|
|
@@ -3260,6 +3404,9 @@ declare namespace sap {
|
|
|
3260
3404
|
columnAdded?: boolean;
|
|
3261
3405
|
}
|
|
3262
3406
|
|
|
3407
|
+
/**
|
|
3408
|
+
* Parameters of the TreeTable#toggleOpenState event.
|
|
3409
|
+
*/
|
|
3263
3410
|
interface TreeTable$ToggleOpenStateEventParameters {
|
|
3264
3411
|
/**
|
|
3265
3412
|
* Index of the expanded/collapsed row
|
|
@@ -10874,106 +11021,179 @@ declare namespace sap {
|
|
|
10874
11021
|
*/
|
|
10875
11022
|
type TreeAutoExpandMode = sap.ui.model.TreeAutoExpandMode;
|
|
10876
11023
|
|
|
11024
|
+
/**
|
|
11025
|
+
* Event object of the AnalyticalTable#group event.
|
|
11026
|
+
*/
|
|
10877
11027
|
type AnalyticalTable$GroupEvent = sap.ui.base.Event<
|
|
10878
11028
|
AnalyticalTable$GroupEventParameters,
|
|
10879
11029
|
AnalyticalTable
|
|
10880
11030
|
>;
|
|
10881
11031
|
|
|
11032
|
+
/**
|
|
11033
|
+
* Event object of the Column#columnMenuOpen event.
|
|
11034
|
+
*
|
|
11035
|
+
* @deprecated (since 1.117)
|
|
11036
|
+
*/
|
|
10882
11037
|
type Column$ColumnMenuOpenEvent = sap.ui.base.Event<
|
|
10883
11038
|
Column$ColumnMenuOpenEventParameters,
|
|
10884
11039
|
Column
|
|
10885
11040
|
>;
|
|
10886
11041
|
|
|
11042
|
+
/**
|
|
11043
|
+
* Event object of the RowActionItem#press event.
|
|
11044
|
+
*/
|
|
10887
11045
|
type RowActionItem$PressEvent = sap.ui.base.Event<
|
|
10888
11046
|
RowActionItem$PressEventParameters,
|
|
10889
11047
|
RowActionItem
|
|
10890
11048
|
>;
|
|
10891
11049
|
|
|
11050
|
+
/**
|
|
11051
|
+
* Event object of the Table#beforeOpenContextMenu event.
|
|
11052
|
+
*/
|
|
10892
11053
|
type Table$BeforeOpenContextMenuEvent = sap.ui.base.Event<
|
|
10893
11054
|
Table$BeforeOpenContextMenuEventParameters,
|
|
10894
11055
|
Table
|
|
10895
11056
|
>;
|
|
10896
11057
|
|
|
11058
|
+
/**
|
|
11059
|
+
* Event object of the Table#busyStateChanged event.
|
|
11060
|
+
*/
|
|
10897
11061
|
type Table$BusyStateChangedEvent = sap.ui.base.Event<
|
|
10898
11062
|
Table$BusyStateChangedEventParameters,
|
|
10899
11063
|
Table
|
|
10900
11064
|
>;
|
|
10901
11065
|
|
|
11066
|
+
/**
|
|
11067
|
+
* Event object of the Table#cellClick event.
|
|
11068
|
+
*/
|
|
10902
11069
|
type Table$CellClickEvent = sap.ui.base.Event<
|
|
10903
11070
|
Table$CellClickEventParameters,
|
|
10904
11071
|
Table
|
|
10905
11072
|
>;
|
|
10906
11073
|
|
|
11074
|
+
/**
|
|
11075
|
+
* Event object of the Table#cellContextmenu event.
|
|
11076
|
+
*
|
|
11077
|
+
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
11078
|
+
*/
|
|
10907
11079
|
type Table$CellContextmenuEvent = sap.ui.base.Event<
|
|
10908
11080
|
Table$CellContextmenuEventParameters,
|
|
10909
11081
|
Table
|
|
10910
11082
|
>;
|
|
10911
11083
|
|
|
11084
|
+
/**
|
|
11085
|
+
* Event object of the Table#columnFreeze event.
|
|
11086
|
+
*/
|
|
10912
11087
|
type Table$ColumnFreezeEvent = sap.ui.base.Event<
|
|
10913
11088
|
Table$ColumnFreezeEventParameters,
|
|
10914
11089
|
Table
|
|
10915
11090
|
>;
|
|
10916
11091
|
|
|
11092
|
+
/**
|
|
11093
|
+
* Event object of the Table#columnMove event.
|
|
11094
|
+
*/
|
|
10917
11095
|
type Table$ColumnMoveEvent = sap.ui.base.Event<
|
|
10918
11096
|
Table$ColumnMoveEventParameters,
|
|
10919
11097
|
Table
|
|
10920
11098
|
>;
|
|
10921
11099
|
|
|
11100
|
+
/**
|
|
11101
|
+
* Event object of the Table#columnResize event.
|
|
11102
|
+
*/
|
|
10922
11103
|
type Table$ColumnResizeEvent = sap.ui.base.Event<
|
|
10923
11104
|
Table$ColumnResizeEventParameters,
|
|
10924
11105
|
Table
|
|
10925
11106
|
>;
|
|
10926
11107
|
|
|
11108
|
+
/**
|
|
11109
|
+
* Event object of the Table#columnSelect event.
|
|
11110
|
+
*
|
|
11111
|
+
* @deprecated (since 1.117)
|
|
11112
|
+
*/
|
|
10927
11113
|
type Table$ColumnSelectEvent = sap.ui.base.Event<
|
|
10928
11114
|
Table$ColumnSelectEventParameters,
|
|
10929
11115
|
Table
|
|
10930
11116
|
>;
|
|
10931
11117
|
|
|
11118
|
+
/**
|
|
11119
|
+
* Event object of the Table#columnVisibility event.
|
|
11120
|
+
*
|
|
11121
|
+
* @deprecated (since 1.117)
|
|
11122
|
+
*/
|
|
10932
11123
|
type Table$ColumnVisibilityEvent = sap.ui.base.Event<
|
|
10933
11124
|
Table$ColumnVisibilityEventParameters,
|
|
10934
11125
|
Table
|
|
10935
11126
|
>;
|
|
10936
11127
|
|
|
11128
|
+
/**
|
|
11129
|
+
* Event object of the Table#customFilter event.
|
|
11130
|
+
*/
|
|
10937
11131
|
type Table$CustomFilterEvent = sap.ui.base.Event<
|
|
10938
11132
|
Table$CustomFilterEventParameters,
|
|
10939
11133
|
Table
|
|
10940
11134
|
>;
|
|
10941
11135
|
|
|
11136
|
+
/**
|
|
11137
|
+
* Event object of the Table#filter event.
|
|
11138
|
+
*/
|
|
10942
11139
|
type Table$FilterEvent = sap.ui.base.Event<
|
|
10943
11140
|
Table$FilterEventParameters,
|
|
10944
11141
|
Table
|
|
10945
11142
|
>;
|
|
10946
11143
|
|
|
11144
|
+
/**
|
|
11145
|
+
* Event object of the Table#firstVisibleRowChanged event.
|
|
11146
|
+
*/
|
|
10947
11147
|
type Table$FirstVisibleRowChangedEvent = sap.ui.base.Event<
|
|
10948
11148
|
Table$FirstVisibleRowChangedEventParameters,
|
|
10949
11149
|
Table
|
|
10950
11150
|
>;
|
|
10951
11151
|
|
|
11152
|
+
/**
|
|
11153
|
+
* Event object of the Table#group event.
|
|
11154
|
+
*
|
|
11155
|
+
* @deprecated (since 1.118)
|
|
11156
|
+
*/
|
|
10952
11157
|
type Table$GroupEvent = sap.ui.base.Event<
|
|
10953
11158
|
Table$GroupEventParameters,
|
|
10954
11159
|
Table
|
|
10955
11160
|
>;
|
|
10956
11161
|
|
|
11162
|
+
/**
|
|
11163
|
+
* Event object of the Table#paste event.
|
|
11164
|
+
*/
|
|
10957
11165
|
type Table$PasteEvent = sap.ui.base.Event<
|
|
10958
11166
|
Table$PasteEventParameters,
|
|
10959
11167
|
Table
|
|
10960
11168
|
>;
|
|
10961
11169
|
|
|
11170
|
+
/**
|
|
11171
|
+
* Event object of the Table#rowSelectionChange event.
|
|
11172
|
+
*/
|
|
10962
11173
|
type Table$RowSelectionChangeEvent = sap.ui.base.Event<
|
|
10963
11174
|
Table$RowSelectionChangeEventParameters,
|
|
10964
11175
|
Table
|
|
10965
11176
|
>;
|
|
10966
11177
|
|
|
11178
|
+
/**
|
|
11179
|
+
* Event object of the Table#rowsUpdated event.
|
|
11180
|
+
*/
|
|
10967
11181
|
type Table$RowsUpdatedEvent = sap.ui.base.Event<
|
|
10968
11182
|
Table$RowsUpdatedEventParameters,
|
|
10969
11183
|
Table
|
|
10970
11184
|
>;
|
|
10971
11185
|
|
|
11186
|
+
/**
|
|
11187
|
+
* Event object of the Table#sort event.
|
|
11188
|
+
*/
|
|
10972
11189
|
type Table$SortEvent = sap.ui.base.Event<
|
|
10973
11190
|
Table$SortEventParameters,
|
|
10974
11191
|
Table
|
|
10975
11192
|
>;
|
|
10976
11193
|
|
|
11194
|
+
/**
|
|
11195
|
+
* Event object of the TreeTable#toggleOpenState event.
|
|
11196
|
+
*/
|
|
10977
11197
|
type TreeTable$ToggleOpenStateEvent = sap.ui.base.Event<
|
|
10978
11198
|
TreeTable$ToggleOpenStateEventParameters,
|
|
10979
11199
|
TreeTable
|