@sapui5/types 1.141.4 → 1.142.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) 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 +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.cux.base.d.ts +3 -0
  8. package/types/sap.esh.search.ui.d.ts +159 -4
  9. package/types/sap.f.d.ts +1 -1
  10. package/types/sap.fe.ariba.d.ts +1 -1
  11. package/types/sap.fe.base.d.ts +1 -1
  12. package/types/sap.fe.controls.d.ts +1 -1
  13. package/types/sap.fe.core.d.ts +471 -32
  14. package/types/sap.fe.ina.d.ts +1 -1
  15. package/types/sap.fe.macros.d.ts +2616 -95
  16. package/types/sap.fe.navigation.d.ts +2 -2
  17. package/types/sap.fe.placeholder.d.ts +1 -1
  18. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  19. package/types/sap.fe.templates.d.ts +79 -11
  20. package/types/sap.fe.test.d.ts +8 -1
  21. package/types/sap.fe.tools.d.ts +1 -1
  22. package/types/sap.feedback.ui.d.ts +1 -1
  23. package/types/sap.gantt.d.ts +4 -1
  24. package/types/sap.insights.d.ts +1 -1
  25. package/types/sap.m.d.ts +401 -55
  26. package/types/sap.makit.d.ts +1 -1
  27. package/types/sap.me.d.ts +1 -1
  28. package/types/sap.ndc.d.ts +106 -2
  29. package/types/sap.ovp.d.ts +1 -1
  30. package/types/sap.rules.ui.d.ts +1 -1
  31. package/types/sap.sac.df.d.ts +13 -3735
  32. package/types/sap.suite.ui.commons.d.ts +1 -1
  33. package/types/sap.suite.ui.generic.template.d.ts +28 -1
  34. package/types/sap.suite.ui.microchart.d.ts +1 -1
  35. package/types/sap.tnt.d.ts +1 -1
  36. package/types/sap.ui.codeeditor.d.ts +1 -1
  37. package/types/sap.ui.commons.d.ts +1 -1
  38. package/types/sap.ui.comp.d.ts +77 -9
  39. package/types/sap.ui.core.d.ts +1160 -639
  40. package/types/sap.ui.dt.d.ts +1 -1
  41. package/types/sap.ui.export.d.ts +63 -1
  42. package/types/sap.ui.fl.d.ts +1 -1
  43. package/types/sap.ui.generic.app.d.ts +1 -1
  44. package/types/sap.ui.generic.template.d.ts +1 -1
  45. package/types/sap.ui.integration.d.ts +1 -1
  46. package/types/sap.ui.layout.d.ts +100 -94
  47. package/types/sap.ui.mdc.d.ts +1505 -167
  48. package/types/sap.ui.richtexteditor.d.ts +1 -1
  49. package/types/sap.ui.rta.d.ts +1 -1
  50. package/types/sap.ui.suite.d.ts +1 -1
  51. package/types/sap.ui.support.d.ts +1 -1
  52. package/types/sap.ui.table.d.ts +13 -41
  53. package/types/sap.ui.testrecorder.d.ts +1 -1
  54. package/types/sap.ui.unified.d.ts +34 -78
  55. package/types/sap.ui.ux3.d.ts +1 -1
  56. package/types/sap.ui.vbm.d.ts +1 -1
  57. package/types/sap.ui.vk.d.ts +1 -1
  58. package/types/sap.ui.vtm.d.ts +1 -1
  59. package/types/sap.ui.webc.common.d.ts +1 -1
  60. package/types/sap.ui.webc.fiori.d.ts +1 -1
  61. package/types/sap.ui.webc.main.d.ts +1 -1
  62. package/types/sap.uiext.inbox.d.ts +1 -1
  63. package/types/sap.ushell.d.ts +13 -1
  64. package/types/sap.ushell_abap.d.ts +1 -1
  65. package/types/sap.uxap.d.ts +1 -1
  66. package/types/sap.viz.d.ts +1 -1
  67. package/types/sap.webanalytics.core.d.ts +1 -1
  68. package/types/sap.zen.commons.d.ts +335 -1
  69. package/types/sap.zen.crosstab.d.ts +1 -1
  70. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.141.1
1
+ // For Library Version: 1.142.3
2
2
 
3
3
  declare module "sap/zen/commons/library" {}
4
4
 
@@ -803,6 +803,18 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
803
803
  declare module "sap/zen/commons/layout/MatrixLayoutCell" {
804
804
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
805
805
 
806
+ import Control from "sap/ui/core/Control";
807
+
808
+ import HAlign from "sap/zen/commons/HAlign";
809
+
810
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
811
+
812
+ import Padding from "sap/zen/commons/Padding";
813
+
814
+ import Separation from "sap/zen/commons/Separation";
815
+
816
+ import VAlign from "sap/zen/commons/VAlign";
817
+
806
818
  /**
807
819
  * Non-control element used as part of a matrix layout's inner structure.
808
820
  *
@@ -840,6 +852,49 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
840
852
  mSettings?: $MatrixLayoutCellSettings
841
853
  );
842
854
 
855
+ /**
856
+ * Creates a new subclass of class sap.zen.commons.MatrixLayoutCell with name `sClassName` and enriches
857
+ * it with the information contained in `oClassInfo`.
858
+ *
859
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
860
+ *
861
+ *
862
+ * @returns Created class / constructor function
863
+ */
864
+ static extend<T extends Record<string, unknown>>(
865
+ /**
866
+ * Name of the class being created
867
+ */
868
+ sClassName: string,
869
+ /**
870
+ * Object literal with information about the class
871
+ */
872
+ oClassInfo?: sap.ClassInfo<T, MatrixLayoutCell>,
873
+ /**
874
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
875
+ * used by this class
876
+ */
877
+ FNMetaImpl?: Function
878
+ ): Function;
879
+ /**
880
+ * Returns a metadata object for class sap.zen.commons.MatrixLayoutCell.
881
+ *
882
+ *
883
+ * @returns Metadata object describing this class
884
+ */
885
+ static getMetadata(): ElementMetadata;
886
+ /**
887
+ * Adds some content to the aggregation {@link #getContent content}.
888
+ *
889
+ *
890
+ * @returns Reference to `this` in order to allow method chaining
891
+ */
892
+ addContent(
893
+ /**
894
+ * The content to add; if empty, nothing is inserted
895
+ */
896
+ oContent: Control
897
+ ): this;
843
898
  /**
844
899
  * The string given as "sStyleClass" will be added to the "class" attribute of this element's root HTML
845
900
  * element.
@@ -878,6 +933,103 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
878
933
  */
879
934
  sStyleClass: string
880
935
  ): MatrixLayoutCell;
936
+ /**
937
+ * Destroys all the content in the aggregation {@link #getContent content}.
938
+ *
939
+ *
940
+ * @returns Reference to `this` in order to allow method chaining
941
+ */
942
+ destroyContent(): this;
943
+ /**
944
+ * Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
945
+ *
946
+ * Determines the matrix layout cell's background design.
947
+ *
948
+ * Default value is `'Transparent'`.
949
+ *
950
+ *
951
+ * @returns Value of property `backgroundDesign`
952
+ */
953
+ getBackgroundDesign(): /* was: sap.zen.commons.BackgroundDesign */ any;
954
+ /**
955
+ * Gets current value of property {@link #getColSpan colSpan}.
956
+ *
957
+ * Determines how many columns of the underlying grid structure are occupied by this matrix layout cell.
958
+ *
959
+ * Default value is `1`.
960
+ *
961
+ *
962
+ * @returns Value of property `colSpan`
963
+ */
964
+ getColSpan(): int;
965
+ /**
966
+ * Gets content of aggregation {@link #getContent content}.
967
+ *
968
+ * The matrix layout cell's content (arbitrary controls).
969
+ *
970
+ * If the matrix row has a defined height and the matrix has layoutFixed = true, the controls inside of
971
+ * a cell should all use the same unit for its height property.
972
+ */
973
+ getContent(): Control[];
974
+ /**
975
+ * Gets current value of property {@link #getHAlign hAlign}.
976
+ *
977
+ * Determines the horizontal alignment of the matrix layout cell's content with the cell's borders.
978
+ *
979
+ * Default value is `'Begin'`.
980
+ *
981
+ *
982
+ * @returns Value of property `hAlign`
983
+ */
984
+ getHAlign(): HAlign;
985
+ /**
986
+ * Gets current value of property {@link #getPadding padding}.
987
+ *
988
+ * Determines the padding of the matrix layout cell's content within the cell's borders. The default value
989
+ * is appropriate for all cells in a form-like layout. Consider to remove the padding on the outer layout
990
+ * in case of nesting.
991
+ *
992
+ * Default value is `'End'`.
993
+ *
994
+ *
995
+ * @returns Value of property `padding`
996
+ */
997
+ getPadding(): Padding;
998
+ /**
999
+ * Gets current value of property {@link #getRowSpan rowSpan}.
1000
+ *
1001
+ * Determines how many rows of the underlying grid structure are occupied by this matrix layout cell. In
1002
+ * case a row-height is used, all rows affected by the RowSpan must have the same unit.
1003
+ *
1004
+ * Default value is `1`.
1005
+ *
1006
+ *
1007
+ * @returns Value of property `rowSpan`
1008
+ */
1009
+ getRowSpan(): int;
1010
+ /**
1011
+ * Gets current value of property {@link #getSeparation separation}.
1012
+ *
1013
+ * Determines how a matrix layout cell is separated from its predecessor, via a vertical gutter of variable
1014
+ * width, with or without a vertical line.
1015
+ *
1016
+ * Default value is `'None'`.
1017
+ *
1018
+ *
1019
+ * @returns Value of property `separation`
1020
+ */
1021
+ getSeparation(): Separation;
1022
+ /**
1023
+ * Gets current value of property {@link #getVAlign vAlign}.
1024
+ *
1025
+ * Determines the vertical alignment of the matrix layout cell's content with the cell's borders.
1026
+ *
1027
+ * Default value is `'Middle'`.
1028
+ *
1029
+ *
1030
+ * @returns Value of property `vAlign`
1031
+ */
1032
+ getVAlign(): VAlign;
881
1033
  /**
882
1034
  * Returns true if the given style class string is valid and if this Element has this style class set via
883
1035
  * a previous call to addStyleClass().
@@ -888,6 +1040,58 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
888
1040
  */
889
1041
  sStyleClass: string
890
1042
  ): boolean;
1043
+ /**
1044
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
1045
+ * its index if found or -1 otherwise.
1046
+ *
1047
+ *
1048
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1049
+ */
1050
+ indexOfContent(
1051
+ /**
1052
+ * The content whose index is looked for
1053
+ */
1054
+ oContent: Control
1055
+ ): int;
1056
+ /**
1057
+ * Inserts a content into the aggregation {@link #getContent content}.
1058
+ *
1059
+ *
1060
+ * @returns Reference to `this` in order to allow method chaining
1061
+ */
1062
+ insertContent(
1063
+ /**
1064
+ * The content to insert; if empty, nothing is inserted
1065
+ */
1066
+ oContent: Control,
1067
+ /**
1068
+ * The `0`-based index the content should be inserted at; for a negative value of `iIndex`, the content
1069
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the content
1070
+ * is inserted at the last position
1071
+ */
1072
+ iIndex: int
1073
+ ): this;
1074
+ /**
1075
+ * Removes all the controls from the aggregation {@link #getContent content}.
1076
+ *
1077
+ * Additionally, it unregisters them from the hosting UIArea.
1078
+ *
1079
+ *
1080
+ * @returns An array of the removed elements (might be empty)
1081
+ */
1082
+ removeAllContent(): Control[];
1083
+ /**
1084
+ * Removes a content from the aggregation {@link #getContent content}.
1085
+ *
1086
+ *
1087
+ * @returns The removed content or `null`
1088
+ */
1089
+ removeContent(
1090
+ /**
1091
+ * The content to remove or its index or id
1092
+ */
1093
+ vContent: int | string | Control
1094
+ ): Control | null;
891
1095
  /**
892
1096
  * Removes the given string from the list of custom style classes that have been set previously. Regular
893
1097
  * style classes like "sapUiBtn" cannot be removed.
@@ -900,6 +1104,136 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
900
1104
  */
901
1105
  sStyleClass: string
902
1106
  ): MatrixLayoutCell;
1107
+ /**
1108
+ * Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
1109
+ *
1110
+ * Determines the matrix layout cell's background design.
1111
+ *
1112
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1113
+ *
1114
+ * Default value is `'Transparent'`.
1115
+ *
1116
+ *
1117
+ * @returns Reference to `this` in order to allow method chaining
1118
+ */
1119
+ setBackgroundDesign(
1120
+ /**
1121
+ * New value for property `backgroundDesign`
1122
+ */
1123
+ sBackgroundDesign?: /* was: sap.zen.commons.BackgroundDesign */ any
1124
+ ): this;
1125
+ /**
1126
+ * Sets a new value for property {@link #getColSpan colSpan}.
1127
+ *
1128
+ * Determines how many columns of the underlying grid structure are occupied by this matrix layout cell.
1129
+ *
1130
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1131
+ *
1132
+ * Default value is `1`.
1133
+ *
1134
+ *
1135
+ * @returns Reference to `this` in order to allow method chaining
1136
+ */
1137
+ setColSpan(
1138
+ /**
1139
+ * New value for property `colSpan`
1140
+ */
1141
+ iColSpan?: int
1142
+ ): this;
1143
+ /**
1144
+ * Sets a new value for property {@link #getHAlign hAlign}.
1145
+ *
1146
+ * Determines the horizontal alignment of the matrix layout cell's content with the cell's borders.
1147
+ *
1148
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1149
+ *
1150
+ * Default value is `'Begin'`.
1151
+ *
1152
+ *
1153
+ * @returns Reference to `this` in order to allow method chaining
1154
+ */
1155
+ setHAlign(
1156
+ /**
1157
+ * New value for property `hAlign`
1158
+ */
1159
+ sHAlign?: HAlign | keyof typeof HAlign
1160
+ ): this;
1161
+ /**
1162
+ * Sets a new value for property {@link #getPadding padding}.
1163
+ *
1164
+ * Determines the padding of the matrix layout cell's content within the cell's borders. The default value
1165
+ * is appropriate for all cells in a form-like layout. Consider to remove the padding on the outer layout
1166
+ * in case of nesting.
1167
+ *
1168
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1169
+ *
1170
+ * Default value is `'End'`.
1171
+ *
1172
+ *
1173
+ * @returns Reference to `this` in order to allow method chaining
1174
+ */
1175
+ setPadding(
1176
+ /**
1177
+ * New value for property `padding`
1178
+ */
1179
+ sPadding?: Padding | keyof typeof Padding
1180
+ ): this;
1181
+ /**
1182
+ * Sets a new value for property {@link #getRowSpan rowSpan}.
1183
+ *
1184
+ * Determines how many rows of the underlying grid structure are occupied by this matrix layout cell. In
1185
+ * case a row-height is used, all rows affected by the RowSpan must have the same unit.
1186
+ *
1187
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1188
+ *
1189
+ * Default value is `1`.
1190
+ *
1191
+ *
1192
+ * @returns Reference to `this` in order to allow method chaining
1193
+ */
1194
+ setRowSpan(
1195
+ /**
1196
+ * New value for property `rowSpan`
1197
+ */
1198
+ iRowSpan?: int
1199
+ ): this;
1200
+ /**
1201
+ * Sets a new value for property {@link #getSeparation separation}.
1202
+ *
1203
+ * Determines how a matrix layout cell is separated from its predecessor, via a vertical gutter of variable
1204
+ * width, with or without a vertical line.
1205
+ *
1206
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1207
+ *
1208
+ * Default value is `'None'`.
1209
+ *
1210
+ *
1211
+ * @returns Reference to `this` in order to allow method chaining
1212
+ */
1213
+ setSeparation(
1214
+ /**
1215
+ * New value for property `separation`
1216
+ */
1217
+ sSeparation?: Separation | keyof typeof Separation
1218
+ ): this;
1219
+ /**
1220
+ * Sets a new value for property {@link #getVAlign vAlign}.
1221
+ *
1222
+ * Determines the vertical alignment of the matrix layout cell's content with the cell's borders.
1223
+ *
1224
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1225
+ *
1226
+ * Default value is `'Middle'`.
1227
+ *
1228
+ *
1229
+ * @returns Reference to `this` in order to allow method chaining
1230
+ */
1231
+ setVAlign(
1232
+ /**
1233
+ * New value for property `vAlign`
1234
+ */
1235
+ sVAlign?: VAlign | keyof typeof VAlign
1236
+ ): this;
903
1237
  }
904
1238
  /**
905
1239
  * Describes the settings that can be provided to the MatrixLayoutCell constructor.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.141.1
1
+ // For Library Version: 1.142.3
2
2
 
3
3
  declare module "sap/zen/crosstab/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.141.1
1
+ // For Library Version: 1.142.3
2
2
 
3
3
  declare module "sap/zen/dsh/library" {}
4
4