@sapui5/sap.fe.test 1.114.1 → 1.114.3
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/src/sap/fe/test/.library +1 -1
- package/src/sap/fe/test/builder/MdcTableBuilder.js +4 -0
- package/src/sap/fe/test/library-preload.js +6 -2
- package/src/sap/fe/test/library-preload.js.map +1 -1
- package/src/sap/fe/test/library.js +1 -1
- package/src/sap/fe/test/manifest.json +1 -1
package/package.json
CHANGED
package/src/sap/fe/test/.library
CHANGED
|
@@ -1013,6 +1013,10 @@ sap.ui.define(
|
|
|
1013
1013
|
},
|
|
1014
1014
|
cellValue: function (vColumn, vExpectedValue) {
|
|
1015
1015
|
return function (oRow) {
|
|
1016
|
+
if (oRow.isA("sap.m.GroupHeaderListItem")) {
|
|
1017
|
+
// don´t check grouping rows
|
|
1018
|
+
return null;
|
|
1019
|
+
}
|
|
1016
1020
|
var oCellField = TableBuilder.Row.Matchers.cell(vColumn)(oRow);
|
|
1017
1021
|
while (oCellField.isA("sap.fe.macros.MacroAPI")) {
|
|
1018
1022
|
oCellField = oCellField.getContent();
|
|
@@ -17066,6 +17066,10 @@ sap.ui.predefine(
|
|
|
17066
17066
|
},
|
|
17067
17067
|
cellValue: function (vColumn, vExpectedValue) {
|
|
17068
17068
|
return function (oRow) {
|
|
17069
|
+
if (oRow.isA("sap.m.GroupHeaderListItem")) {
|
|
17070
|
+
// don´t check grouping rows
|
|
17071
|
+
return null;
|
|
17072
|
+
}
|
|
17069
17073
|
var oCellField = TableBuilder.Row.Matchers.cell(vColumn)(oRow);
|
|
17070
17074
|
while (oCellField.isA("sap.fe.macros.MacroAPI")) {
|
|
17071
17075
|
oCellField = oCellField.getContent();
|
|
@@ -18132,12 +18136,12 @@ sap.ui.predefine("sap/fe/test/library", ["sap/ui/core/Core", "sap/ui/core/librar
|
|
|
18132
18136
|
controls: [],
|
|
18133
18137
|
elements: [],
|
|
18134
18138
|
// eslint-disable-next-line no-template-curly-in-string
|
|
18135
|
-
version: "1.114.
|
|
18139
|
+
version: "1.114.3",
|
|
18136
18140
|
noLibraryCSS: true
|
|
18137
18141
|
});
|
|
18138
18142
|
return thisLib;
|
|
18139
18143
|
}, false);
|
|
18140
18144
|
sap.ui.require.preload({
|
|
18141
|
-
"sap/fe/test/manifest.json":'{"_version":"1.21.0","sap.app":{"id":"sap.fe.test","type":"library","embeds":[],"applicationVersion":{"version":"1.114.
|
|
18145
|
+
"sap/fe/test/manifest.json":'{"_version":"1.21.0","sap.app":{"id":"sap.fe.test","type":"library","embeds":[],"applicationVersion":{"version":"1.114.3"},"title":"UI5 library: sap.fe.test","description":"UI5 library: sap.fe.test","resources":"resources.json","offline":true},"sap.ui":{"technology":"UI5","supportedThemes":[]},"sap.ui5":{"dependencies":{"libs":{"sap.ui.core":{}}},"library":{"i18n":false,"content":{"controls":[],"elements":[],"types":[],"interfaces":[]}}}}'
|
|
18142
18146
|
});
|
|
18143
18147
|
//# sourceMappingURL=library-preload.js.map
|