jsf.js_next_gen 4.0.4-beta.4 → 4.0.4-beta.5
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/dist/window/faces-development.js +2 -3
- package/dist/window/faces-development.js.map +1 -1
- package/dist/window/faces.js +1 -1
- package/dist/window/faces.js.map +1 -1
- package/dist/window/jsf-development.js +2 -3
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js +1 -1
- package/dist/window/jsf.js.map +1 -1
- package/package.json +1 -1
- package/src/main/typescript/@types/definitions/index.d.ts +1 -1
- package/src/main/typescript/impl/xhrCore/ErrorData.ts +1 -1
- package/src/main/typescript/impl/xhrCore/EventData.ts +2 -2
- package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +1 -0
- package/target/classes/com/example/jsfs_js_ts/DecoratedFacesJS.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/DecoratingResourceHandlerWrapper.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/FacesJSMapFileResourceWrapper.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/FacesJSMappingDecorator.class +0 -0
- package/target/impl/xhrCore/ErrorData.js +1 -1
- package/target/impl/xhrCore/ErrorData.js.map +1 -1
- package/target/impl/xhrCore/EventData.js +1 -2
- package/target/impl/xhrCore/EventData.js.map +1 -1
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +4 -0
- package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +1 -0
- package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +1 -0
- package/target/surefire-reports/TEST-com.example.jsfs_js_ts.JsfsJsTsApplicationTests.xml +76 -0
- package/target/surefire-reports/com.example.jsfs_js_ts.JsfsJsTsApplicationTests.txt +7 -0
- package/target/test/xhrCore/RequestTest_23.spec.js +1 -0
- package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -1
- package/target/test-classes/com/example/jsfs_js_ts/JsfsJsTsApplicationTests.class +0 -0
- package/target/test/util/ExtDomQueryTest.spec.js +0 -4
- package/target/test/util/ExtDomQueryTest.spec.js.map +0 -1
|
@@ -6789,7 +6789,7 @@ class ErrorData extends EventData_1.EventData {
|
|
|
6789
6789
|
this.errorName = errorName;
|
|
6790
6790
|
//tck requires that the type is prefixed to the message itself (jsdoc also) in case of a server error
|
|
6791
6791
|
this.errorMessage = errorMessage;
|
|
6792
|
-
this.responseCode =
|
|
6792
|
+
this.responseCode = responseCode;
|
|
6793
6793
|
this.responseText = responseText;
|
|
6794
6794
|
this.responseXML = responseXML;
|
|
6795
6795
|
this.status = statusOverride;
|
|
@@ -6857,7 +6857,6 @@ const mona_dish_1 = __webpack_require__(/*! mona-dish */ "./node_modules/mona-di
|
|
|
6857
6857
|
const Const_1 = __webpack_require__(/*! ../core/Const */ "./src/main/typescript/impl/core/Const.ts");
|
|
6858
6858
|
class EventData {
|
|
6859
6859
|
static createFromRequest(request, context, /*event name*/ name) {
|
|
6860
|
-
var _a;
|
|
6861
6860
|
let eventData = new EventData();
|
|
6862
6861
|
eventData.type = Const_1.EVENT;
|
|
6863
6862
|
eventData.status = name;
|
|
@@ -6869,7 +6868,7 @@ class EventData {
|
|
|
6869
6868
|
eventData.source = mona_dish_1.DQ.byId(sourceId, true).first().value.value;
|
|
6870
6869
|
}
|
|
6871
6870
|
if (name !== Const_1.BEGIN) {
|
|
6872
|
-
eventData.responseCode =
|
|
6871
|
+
eventData.responseCode = request === null || request === void 0 ? void 0 : request.status;
|
|
6873
6872
|
eventData.responseText = request === null || request === void 0 ? void 0 : request.responseText;
|
|
6874
6873
|
eventData.responseXML = request === null || request === void 0 ? void 0 : request.responseXML;
|
|
6875
6874
|
}
|