@sapui5/ts-types 1.100.0 → 1.101.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 (61) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  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 +2 -2
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +674 -2
  8. package/types/sap.f.d.ts +236 -25
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +8 -63
  11. package/types/sap.fe.macros.d.ts +17 -9
  12. package/types/sap.fe.navigation.d.ts +5 -71
  13. package/types/sap.fe.templates.d.ts +97 -190
  14. package/types/sap.fe.test.d.ts +43 -24
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +40 -15
  17. package/types/sap.landvisz.d.ts +1 -1
  18. package/types/sap.m.d.ts +209 -38
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +1 -1
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +40 -5
  24. package/types/sap.sac.df.d.ts +981 -0
  25. package/types/sap.sac.grid.d.ts +25 -1
  26. package/types/sap.suite.ui.commons.d.ts +18 -1
  27. package/types/sap.suite.ui.generic.template.d.ts +115 -8
  28. package/types/sap.suite.ui.microchart.d.ts +1 -1
  29. package/types/sap.tnt.d.ts +1 -1
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +1 -1
  32. package/types/sap.ui.comp.d.ts +154 -15
  33. package/types/sap.ui.core.d.ts +73 -27
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +3 -3
  36. package/types/sap.ui.fl.d.ts +1 -1
  37. package/types/sap.ui.generic.app.d.ts +10 -10
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +1 -1
  40. package/types/sap.ui.layout.d.ts +1 -1
  41. package/types/sap.ui.mdc.d.ts +9 -1
  42. package/types/sap.ui.richtexteditor.d.ts +1 -1
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +1 -1
  45. package/types/sap.ui.support.d.ts +10 -6
  46. package/types/sap.ui.table.d.ts +11 -34
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +1 -1
  49. package/types/sap.ui.ux3.d.ts +1 -1
  50. package/types/sap.ui.vbm.d.ts +1 -1
  51. package/types/sap.ui.vk.d.ts +683 -26
  52. package/types/sap.ui.vtm.d.ts +1 -1
  53. package/types/sap.uiext.inbox.d.ts +1 -1
  54. package/types/sap.ushell.d.ts +549 -113
  55. package/types/sap.ushell_abap.d.ts +1 -1
  56. package/types/sap.uxap.d.ts +2 -2
  57. package/types/sap.viz.d.ts +1 -1
  58. package/types/sap.webanalytics.core.d.ts +1 -1
  59. package/types/sap.zen.commons.d.ts +1 -1585
  60. package/types/sap.zen.crosstab.d.ts +1 -1
  61. package/types/sap.zen.dsh.d.ts +1303 -4047
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -46,11 +46,25 @@ declare namespace sap {
46
46
  */
47
47
  title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
48
48
 
49
+ /**
50
+ * @EXPERIMENTAL (since 1.101)
51
+ *
52
+ * Limits the number of lines for the title.
53
+ */
54
+ titleMaxLines?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
55
+
49
56
  /**
50
57
  * Defines the subtitle.
51
58
  */
52
59
  subtitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
53
60
 
61
+ /**
62
+ * @EXPERIMENTAL (since 1.101)
63
+ *
64
+ * Limits the number of lines for the subtitle.
65
+ */
66
+ subtitleMaxLines?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
67
+
54
68
  /**
55
69
  * Defines the status text.
56
70
  */
@@ -103,11 +117,25 @@ declare namespace sap {
103
117
  */
104
118
  title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
105
119
 
120
+ /**
121
+ * @EXPERIMENTAL (since 1.101)
122
+ *
123
+ * Limits the number of lines for the title.
124
+ */
125
+ titleMaxLines?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
126
+
106
127
  /**
107
128
  * The subtitle of the card
108
129
  */
109
130
  subtitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
110
131
 
132
+ /**
133
+ * @EXPERIMENTAL (since 1.101)
134
+ *
135
+ * Limits the number of lines for the subtitle.
136
+ */
137
+ subtitleMaxLines?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
138
+
111
139
  /**
112
140
  * Defines the status text.
113
141
  */
@@ -154,6 +182,13 @@ declare namespace sap {
154
182
  */
155
183
  details?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
156
184
 
185
+ /**
186
+ * @EXPERIMENTAL (since 1.101)
187
+ *
188
+ * Limits the number of lines for the details.
189
+ */
190
+ detailsMaxLines?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
191
+
157
192
  /**
158
193
  * The alignment of the side indicators.
159
194
  */
@@ -505,6 +540,16 @@ declare namespace sap {
505
540
  * Default value is `empty string`.
506
541
  */
507
542
  getSubtitle(): string;
543
+ /**
544
+ * @EXPERIMENTAL (since 1.101)
545
+ *
546
+ * Gets current value of property {@link #getSubtitleMaxLines subtitleMaxLines}.
547
+ *
548
+ * Limits the number of lines for the subtitle.
549
+ *
550
+ * Default value is `2`.
551
+ */
552
+ getSubtitleMaxLines(): int;
508
553
  /**
509
554
  * Gets current value of property {@link #getTitle title}.
510
555
  *
@@ -513,6 +558,16 @@ declare namespace sap {
513
558
  * Default value is `empty string`.
514
559
  */
515
560
  getTitle(): string;
561
+ /**
562
+ * @EXPERIMENTAL (since 1.101)
563
+ *
564
+ * Gets current value of property {@link #getTitleMaxLines titleMaxLines}.
565
+ *
566
+ * Limits the number of lines for the title.
567
+ *
568
+ * Default value is `3`.
569
+ */
570
+ getTitleMaxLines(): int;
516
571
  /**
517
572
  * @EXPERIMENTAL (since 1.81)
518
573
  *
@@ -622,6 +677,23 @@ declare namespace sap {
622
677
  */
623
678
  sSubtitle?: string
624
679
  ): this;
680
+ /**
681
+ * @EXPERIMENTAL (since 1.101)
682
+ *
683
+ * Sets a new value for property {@link #getSubtitleMaxLines subtitleMaxLines}.
684
+ *
685
+ * Limits the number of lines for the subtitle.
686
+ *
687
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
688
+ *
689
+ * Default value is `2`.
690
+ */
691
+ setSubtitleMaxLines(
692
+ /**
693
+ * New value for property `subtitleMaxLines`
694
+ */
695
+ iSubtitleMaxLines?: int
696
+ ): this;
625
697
  /**
626
698
  * Sets a new value for property {@link #getTitle title}.
627
699
  *
@@ -637,6 +709,23 @@ declare namespace sap {
637
709
  */
638
710
  sTitle?: string
639
711
  ): this;
712
+ /**
713
+ * @EXPERIMENTAL (since 1.101)
714
+ *
715
+ * Sets a new value for property {@link #getTitleMaxLines titleMaxLines}.
716
+ *
717
+ * Limits the number of lines for the title.
718
+ *
719
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
720
+ *
721
+ * Default value is `3`.
722
+ */
723
+ setTitleMaxLines(
724
+ /**
725
+ * New value for property `titleMaxLines`
726
+ */
727
+ iTitleMaxLines?: int
728
+ ): this;
640
729
  }
641
730
  /**
642
731
  * @SINCE 1.64
@@ -796,6 +885,16 @@ declare namespace sap {
796
885
  * Additional text which adds more details to what is shown in the numeric header.
797
886
  */
798
887
  getDetails(): string;
888
+ /**
889
+ * @EXPERIMENTAL (since 1.101)
890
+ *
891
+ * Gets current value of property {@link #getDetailsMaxLines detailsMaxLines}.
892
+ *
893
+ * Limits the number of lines for the details.
894
+ *
895
+ * Default value is `1`.
896
+ */
897
+ getDetailsMaxLines(): int;
799
898
  /**
800
899
  * Gets current value of property {@link #getNumber number}.
801
900
  *
@@ -850,12 +949,32 @@ declare namespace sap {
850
949
  * The subtitle of the card
851
950
  */
852
951
  getSubtitle(): string;
952
+ /**
953
+ * @EXPERIMENTAL (since 1.101)
954
+ *
955
+ * Gets current value of property {@link #getSubtitleMaxLines subtitleMaxLines}.
956
+ *
957
+ * Limits the number of lines for the subtitle.
958
+ *
959
+ * Default value is `2`.
960
+ */
961
+ getSubtitleMaxLines(): int;
853
962
  /**
854
963
  * Gets current value of property {@link #getTitle title}.
855
964
  *
856
965
  * The title of the card
857
966
  */
858
967
  getTitle(): string;
968
+ /**
969
+ * @EXPERIMENTAL (since 1.101)
970
+ *
971
+ * Gets current value of property {@link #getTitleMaxLines titleMaxLines}.
972
+ *
973
+ * Limits the number of lines for the title.
974
+ *
975
+ * Default value is `3`.
976
+ */
977
+ getTitleMaxLines(): int;
859
978
  /**
860
979
  * Gets current value of property {@link #getTrend trend}.
861
980
  *
@@ -911,31 +1030,63 @@ declare namespace sap {
911
1030
  vSideIndicator: int | string | sap.f.cards.NumericSideIndicator
912
1031
  ): sap.f.cards.NumericSideIndicator;
913
1032
  /**
914
- * Sets additional text which adds more details to what is shown in the numeric header.
1033
+ * Sets a new value for property {@link #getDetails details}.
1034
+ *
1035
+ * Additional text which adds more details to what is shown in the numeric header.
1036
+ *
1037
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
915
1038
  */
916
1039
  setDetails(
917
1040
  /**
918
- * The text of the details
1041
+ * New value for property `details`
919
1042
  */
920
- sValue: string
1043
+ sDetails: string
1044
+ ): this;
1045
+ /**
1046
+ * @EXPERIMENTAL (since 1.101)
1047
+ *
1048
+ * Sets a new value for property {@link #getDetailsMaxLines detailsMaxLines}.
1049
+ *
1050
+ * Limits the number of lines for the details.
1051
+ *
1052
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1053
+ *
1054
+ * Default value is `1`.
1055
+ */
1056
+ setDetailsMaxLines(
1057
+ /**
1058
+ * New value for property `detailsMaxLines`
1059
+ */
1060
+ iDetailsMaxLines?: int
921
1061
  ): this;
922
1062
  /**
923
- * Sets the value of the main number indicator.
1063
+ * Sets a new value for property {@link #getNumber number}.
1064
+ *
1065
+ * The numeric value of the main number indicator. If the value contains more than five characters, only
1066
+ * the first five are displayed. Without rounding the number.
1067
+ *
1068
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
924
1069
  */
925
1070
  setNumber(
926
1071
  /**
927
- * A string representation of the number
1072
+ * New value for property `number`
928
1073
  */
929
- sValue: string
1074
+ sNumber: string
930
1075
  ): this;
931
1076
  /**
932
- * Sets the unit of measurement (scaling prefix) for the main indicator.
1077
+ * Sets a new value for property {@link #getScale scale}.
1078
+ *
1079
+ * Defines the unit of measurement (scaling prefix) for the main indicator. Financial characters can be
1080
+ * used for currencies and counters. The International System of Units (SI) prefixes can be used. If the
1081
+ * unit contains more than three characters, only the first three characters are displayed.
1082
+ *
1083
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
933
1084
  */
934
1085
  setScale(
935
1086
  /**
936
- * The text of the title
1087
+ * New value for property `scale`
937
1088
  */
938
- sValue: string
1089
+ sScale: string
939
1090
  ): this;
940
1091
  /**
941
1092
  * Sets a new value for property {@link #getSideIndicatorsAlignment sideIndicatorsAlignment}.
@@ -953,13 +1104,21 @@ declare namespace sap {
953
1104
  sSideIndicatorsAlignment?: sap.f.cards.NumericHeaderSideIndicatorsAlignment
954
1105
  ): this;
955
1106
  /**
956
- * Sets the semantic color which represents the state of the main number indicator.
1107
+ * @EXPERIMENTAL (since 1.64)
1108
+ *
1109
+ * Sets a new value for property {@link #getState state}.
1110
+ *
1111
+ * The semantic color which represents the state of the main number indicator.
1112
+ *
1113
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1114
+ *
1115
+ * Default value is `"Neutral"`.
957
1116
  */
958
1117
  setState(
959
1118
  /**
960
- * The semantic color which represents the state
1119
+ * New value for property `state`
961
1120
  */
962
- sValue: sap.m.ValueColor
1121
+ sState?: sap.m.ValueColor
963
1122
  ): this;
964
1123
  /**
965
1124
  * Sets a new value for property {@link #getStatusText statusText}.
@@ -977,40 +1136,92 @@ declare namespace sap {
977
1136
  sStatusText?: string
978
1137
  ): this;
979
1138
  /**
980
- * Sets the subtitle.
1139
+ * Sets a new value for property {@link #getSubtitle subtitle}.
1140
+ *
1141
+ * The subtitle of the card
1142
+ *
1143
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
981
1144
  */
982
1145
  setSubtitle(
983
1146
  /**
984
- * The text of the subtitle
1147
+ * New value for property `subtitle`
985
1148
  */
986
- sValue: string
1149
+ sSubtitle: string
987
1150
  ): this;
988
1151
  /**
989
- * Sets the title.
1152
+ * @EXPERIMENTAL (since 1.101)
1153
+ *
1154
+ * Sets a new value for property {@link #getSubtitleMaxLines subtitleMaxLines}.
1155
+ *
1156
+ * Limits the number of lines for the subtitle.
1157
+ *
1158
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1159
+ *
1160
+ * Default value is `2`.
1161
+ */
1162
+ setSubtitleMaxLines(
1163
+ /**
1164
+ * New value for property `subtitleMaxLines`
1165
+ */
1166
+ iSubtitleMaxLines?: int
1167
+ ): this;
1168
+ /**
1169
+ * Sets a new value for property {@link #getTitle title}.
1170
+ *
1171
+ * The title of the card
1172
+ *
1173
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
990
1174
  */
991
1175
  setTitle(
992
1176
  /**
993
- * The text of the title
1177
+ * New value for property `title`
994
1178
  */
995
- sValue: string
1179
+ sTitle: string
1180
+ ): this;
1181
+ /**
1182
+ * @EXPERIMENTAL (since 1.101)
1183
+ *
1184
+ * Sets a new value for property {@link #getTitleMaxLines titleMaxLines}.
1185
+ *
1186
+ * Limits the number of lines for the title.
1187
+ *
1188
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1189
+ *
1190
+ * Default value is `3`.
1191
+ */
1192
+ setTitleMaxLines(
1193
+ /**
1194
+ * New value for property `titleMaxLines`
1195
+ */
1196
+ iTitleMaxLines?: int
996
1197
  ): this;
997
1198
  /**
998
- * Sets the direction of the trend arrow.
1199
+ * Sets a new value for property {@link #getTrend trend}.
1200
+ *
1201
+ * The direction of the trend arrow. Shows deviation for the value of the main number indicator.
1202
+ *
1203
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1204
+ *
1205
+ * Default value is `"None"`.
999
1206
  */
1000
1207
  setTrend(
1001
1208
  /**
1002
- * The direction of the trend arrow
1209
+ * New value for property `trend`
1003
1210
  */
1004
- sValue: sap.m.DeviationIndicator
1211
+ sTrend?: sap.m.DeviationIndicator
1005
1212
  ): this;
1006
1213
  /**
1007
- * Sets the general unit of measurement for the header. Displayed as side information to the subtitle.
1214
+ * Sets a new value for property {@link #getUnitOfMeasurement unitOfMeasurement}.
1215
+ *
1216
+ * General unit of measurement for the header. Displayed as side information to the subtitle.
1217
+ *
1218
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1008
1219
  */
1009
1220
  setUnitOfMeasurement(
1010
1221
  /**
1011
- * The value of the unit of measurement
1222
+ * New value for property `unitOfMeasurement`
1012
1223
  */
1013
- sValue: string
1224
+ sUnitOfMeasurement: string
1014
1225
  ): this;
1015
1226
  }
1016
1227
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -45,7 +45,7 @@ declare namespace sap {
45
45
  /**
46
46
  * Context of the editable document
47
47
  */
48
- oContext: object,
48
+ oContext: sap.ui.model.odata.v4.Context,
49
49
  /**
50
50
  * Can contain the following attributes:
51
51
  */
@@ -179,8 +179,6 @@ declare namespace sap {
179
179
  /**
180
180
  * @SINCE 1.98.0
181
181
  *
182
- * @EXPERIMENTAL (since 1.98.0
183
- * )
184
182
  *
185
183
  * This function can be used to intercept the 'Create' action. You can execute custom coding in this function.
186
184
  * The framework waits for the returned promise to be resolved before continuing the 'Create' action.
@@ -206,8 +204,6 @@ declare namespace sap {
206
204
  /**
207
205
  * @SINCE 1.98.0
208
206
  *
209
- * @EXPERIMENTAL (since 1.98.0
210
- * )
211
207
  *
212
208
  * This function can be used to intercept the 'Delete' action. You can execute custom coding in this function.
213
209
  * The framework waits for the returned promise to be resolved before continuing the 'Delete' action.
@@ -229,8 +225,6 @@ declare namespace sap {
229
225
  /**
230
226
  * @SINCE 1.98.0
231
227
  *
232
- * @EXPERIMENTAL (since 1.98.0
233
- * )
234
228
  *
235
229
  * This function can be used to intercept the 'Discard' action. You can execute custom coding in this function.
236
230
  * The framework waits for the returned promise to be resolved before continuing the 'Discard' action.
@@ -252,8 +246,6 @@ declare namespace sap {
252
246
  /**
253
247
  * @SINCE 1.98.0
254
248
  *
255
- * @EXPERIMENTAL (since 1.98.0
256
- * )
257
249
  *
258
250
  * This function can be used to intercept the 'Edit' action. You can execute custom coding in this function.
259
251
  * The framework waits for the returned promise to be resolved before continuing the 'Edit' action.
@@ -275,8 +267,6 @@ declare namespace sap {
275
267
  /**
276
268
  * @SINCE 1.90.0
277
269
  *
278
- * @EXPERIMENTAL (since 1.90.0
279
- * )
280
270
  *
281
271
  * This function can be used to intercept the 'Save' action. You can execute custom coding in this function.
282
272
  * The framework waits for the returned promise to be resolved before continuing the 'Save' action.
@@ -390,7 +380,7 @@ declare namespace sap {
390
380
  /**
391
381
  * SelectionVariant provided by SAP Fiori elements.
392
382
  */
393
- oSelectionVariant: /* was: sap.fe.core.sap.fe.navigation.SelectionVariant */ any,
383
+ oSelectionVariant: /* was: sap.fe.core.SelectionVariant */ any,
394
384
  /**
395
385
  * Object containing intent-based navigation-related info
396
386
  */
@@ -885,10 +875,11 @@ declare namespace sap {
885
875
  namespace fpm {
886
876
  /**
887
877
  * @SINCE 1.92.0
888
- * @EXPERIMENTAL (since 1.92.0)
889
878
  *
890
- * Component that can be used as a wrapper component for custom pages.
879
+ * @EXPERIMENTAL (since 1.92.0
880
+ * )
891
881
  *
882
+ * Component that can be used as a wrapper component for custom pages.
892
883
  * The component can be used in case you want to use SAP Fiori elements Building Blocks or XML template
893
884
  * constructions. You can either extend the component and set the viewName and contextPath within your code
894
885
  * or you can use it to wrap your custom XML view directly the manifest when you define your custom page
@@ -914,53 +905,6 @@ declare namespace sap {
914
905
  class Component
915
906
  /* was: sap.fe.core.TemplateComponent */ extends Object {
916
907
  constructor();
917
-
918
- /**
919
- * Creates a new subclass of class sap.fe.core.fpm.Component with name `sClassName` and enriches it with
920
- * the information contained in `oClassInfo`.
921
- *
922
- * `oClassInfo` might contain the same kind of information as described in {@link sap.fe.core.TemplateComponent.extend}.
923
- */
924
- static extend<T extends Record<string, unknown>>(
925
- /**
926
- * Name of the class being created
927
- */
928
- sClassName: string,
929
- /**
930
- * Object literal with information about the class
931
- */
932
- oClassInfo?: sap.ClassInfo<T, sap.fe.core.fpm.Component>,
933
- /**
934
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
935
- * used by this class
936
- */
937
- FNMetaImpl?: Function
938
- ): Function;
939
- /**
940
- * Returns a metadata object for class sap.fe.core.fpm.Component.
941
- */
942
- static getMetadata(): sap.ui.base.Metadata;
943
- /**
944
- * Gets current value of property {@link #getViewName viewName}.
945
- *
946
- * Name of the XML view which is used for this page. The XML view can contain SAP Fiori elements Building
947
- * Blocks and XML template constructions.
948
- */
949
- getViewName(): string;
950
- /**
951
- * Sets a new value for property {@link #getViewName viewName}.
952
- *
953
- * Name of the XML view which is used for this page. The XML view can contain SAP Fiori elements Building
954
- * Blocks and XML template constructions.
955
- *
956
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
957
- */
958
- setViewName(
959
- /**
960
- * New value for property `viewName`
961
- */
962
- sViewName: string
963
- ): this;
964
908
  }
965
909
  }
966
910
 
@@ -1056,10 +1000,11 @@ declare namespace sap {
1056
1000
  * Only the following properties are public and supported:
1057
1001
  *
1058
1002
  *
1059
- * - editMode: contains either 'Editable' or 'Display'
1003
+ * - isEditable: set to true if the application is in edit mode
1060
1004
  *
1061
1005
  *
1062
1006
  * .
1007
+ * editMode is deprecated and should not be used anymore. Use isEditable instead.
1063
1008
  */
1064
1009
  getModel(
1065
1010
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.101.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -51,6 +51,11 @@ declare namespace sap {
51
51
  * The text that will be displayed for this column header
52
52
  */
53
53
  header: string;
54
+ /**
55
+ * Defines the column importance
56
+ * You can define which columns should be automatically moved to the pop-in area based on their importance
57
+ */
58
+ importance: string;
54
59
  /**
55
60
  * Unique identifier of the column
56
61
  */
@@ -223,7 +228,7 @@ declare namespace sap {
223
228
  enablePaste?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
224
229
 
225
230
  /**
226
- * Id of the FilterBar building block associated with the table.
231
+ * ID of the FilterBar building block associated with the table.
227
232
  */
228
233
  filterBar?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
229
234
 
@@ -242,6 +247,11 @@ declare namespace sap {
242
247
  */
243
248
  id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
244
249
 
250
+ /**
251
+ * Defines whether to display the search action.
252
+ */
253
+ isSearchable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
254
+
245
255
  /**
246
256
  * Groups menu actions by key.
247
257
  */
@@ -290,7 +300,7 @@ declare namespace sap {
290
300
  selectionMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
291
301
 
292
302
  /**
293
- * Defines the type of table that will be used by the macro to render the data.
303
+ * Defines the type of table that will be used by the building block to render the data.
294
304
  * Allowed values are `GridTable` and `ResponsiveTable`
295
305
  */
296
306
  type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
@@ -443,7 +453,7 @@ declare namespace sap {
443
453
  /**
444
454
  * Type of the message
445
455
  */
446
- type?: /* was: sap.ui.core.library.MessageType */ any;
456
+ type?: sap.ui.core.MessageType;
447
457
  }
448
458
  ): string;
449
459
  /**
@@ -476,8 +486,6 @@ declare namespace sap {
476
486
  constructor();
477
487
 
478
488
  /**
479
- * @EXPERIMENTAL
480
- *
481
489
  * Set the filter values for the given property in the filter bar.
482
490
  * The filter values can be either a single value or an array of values.
483
491
  * Each filter value must be represented as a string corresponding to the given operator.
@@ -490,11 +498,11 @@ declare namespace sap {
490
498
  /**
491
499
  * The operator to be used (optional) - if not set, the default operator (EQ) will be used
492
500
  */
493
- sOperator: any,
501
+ sOperator: undefined | string,
494
502
  /**
495
503
  * The values to be applied
496
504
  */
497
- vValues: any
505
+ vValues: undefined | string | string[]
498
506
  ): any;
499
507
  }
500
508
  /**
@@ -558,7 +566,7 @@ declare namespace sap {
558
566
  /**
559
567
  * Message type
560
568
  */
561
- type?: /* was: sap.ui.core.library.MessageType */ any;
569
+ type?: sap.ui.core.MessageType;
562
570
  }
563
571
  ): string;
564
572
  /**