jsf.js_next_gen 4.0.2-beta.2 → 4.0.2-beta.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/dist/docs/assets/main.js +3 -3
- package/dist/docs/assets/search.js +1 -1
- package/dist/docs/assets/style.css +450 -362
- package/dist/docs/functions/faces.ajax.addOnError.html +41 -32
- package/dist/docs/functions/faces.ajax.addOnEvent.html +41 -32
- package/dist/docs/functions/faces.ajax.request.html +41 -32
- package/dist/docs/functions/faces.ajax.response.html +42 -32
- package/dist/docs/functions/faces.getClientWindow.html +32 -34
- package/dist/docs/functions/faces.getProjectStage.html +31 -34
- package/dist/docs/functions/faces.getViewState.html +33 -35
- package/dist/docs/functions/faces.push.close.html +40 -31
- package/dist/docs/functions/faces.push.init.html +62 -45
- package/dist/docs/functions/faces.push.open.html +40 -31
- package/dist/docs/functions/faces.util.chain.html +39 -31
- package/dist/docs/functions/myfaces.ab.html +40 -39
- package/dist/docs/functions/myfaces.onDomReady.html +25 -29
- package/dist/docs/index.html +45 -72
- package/dist/docs/modules/faces.ajax.html +36 -29
- package/dist/docs/modules/faces.html +35 -38
- package/dist/docs/modules/faces.push.html +34 -27
- package/dist/docs/modules/faces.util.html +30 -23
- package/dist/docs/modules/myfaces.html +21 -27
- package/dist/docs/modules.html +15 -23
- package/dist/docs/variables/faces.contextpath.html +28 -30
- package/dist/docs/variables/faces.implversion.html +29 -31
- package/dist/docs/variables/faces.separatorchar.html +28 -30
- package/dist/docs/variables/faces.specversion.html +29 -31
- package/dist/docs/variables/myfaces.oam.html +21 -26
- package/dist/window/faces-development.js +14 -14
- package/dist/window/faces-development.js.br +0 -0
- package/dist/window/faces-development.js.gz +0 -0
- package/dist/window/faces-development.js.map +1 -1
- package/dist/window/faces.js +1 -1
- package/dist/window/faces.js.br +0 -0
- package/dist/window/faces.js.gz +0 -0
- package/dist/window/faces.js.map +1 -1
- package/dist/window/jsf-development.js +14 -14
- package/dist/window/jsf-development.js.br +0 -0
- package/dist/window/jsf-development.js.gz +0 -0
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js +1 -1
- package/dist/window/jsf.js.br +0 -0
- package/dist/window/jsf.js.gz +0 -0
- package/dist/window/jsf.js.map +1 -1
- package/package.json +17 -17
- package/target/api/_api.js +2 -2
- package/target/api/_api.js.map +1 -1
- package/target/impl/AjaxImpl.js +1 -1
- package/target/impl/AjaxImpl.js.map +1 -1
- package/target/impl/PushImpl.js +1 -1
- package/target/impl/PushImpl.js.map +1 -1
- package/target/impl/util/Assertions.js +1 -1
- package/target/impl/util/Assertions.js.map +1 -1
- package/target/impl/util/Lang.js +1 -1
- package/target/impl/util/Lang.js.map +1 -1
- package/target/impl/xhrCore/ErrorData.js +1 -1
- package/target/impl/xhrCore/ErrorData.js.map +1 -1
- package/target/impl/xhrCore/Response.js +1 -1
- package/target/impl/xhrCore/Response.js.map +1 -1
- package/target/myfaces/OamSubmit.js +1 -1
- package/target/myfaces/OamSubmit.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js +1 -1
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
|
@@ -2506,12 +2506,12 @@ class DomQuery {
|
|
|
2506
2506
|
}
|
|
2507
2507
|
}
|
|
2508
2508
|
}
|
|
2509
|
+
exports.DomQuery = DomQuery;
|
|
2509
2510
|
DomQuery.absent = new DomQuery();
|
|
2510
2511
|
/**
|
|
2511
2512
|
* reference to the environmental global object
|
|
2512
2513
|
*/
|
|
2513
2514
|
DomQuery.global = Global_1._global$;
|
|
2514
|
-
exports.DomQuery = DomQuery;
|
|
2515
2515
|
/**
|
|
2516
2516
|
* Various collectors
|
|
2517
2517
|
* which can be used in conjunction with Streams
|
|
@@ -2911,7 +2911,7 @@ var Lang;
|
|
|
2911
2911
|
return to;
|
|
2912
2912
|
}
|
|
2913
2913
|
Lang.objAssign = objAssign;
|
|
2914
|
-
})(Lang
|
|
2914
|
+
})(Lang || (exports.Lang = Lang = {}));
|
|
2915
2915
|
|
|
2916
2916
|
|
|
2917
2917
|
/***/ }),
|
|
@@ -3193,9 +3193,9 @@ class Optional extends Monad {
|
|
|
3193
3193
|
});
|
|
3194
3194
|
}
|
|
3195
3195
|
}
|
|
3196
|
+
exports.Optional = Optional;
|
|
3196
3197
|
/*default value for absent*/
|
|
3197
3198
|
Optional.absent = Optional.fromNullable(null);
|
|
3198
|
-
exports.Optional = Optional;
|
|
3199
3199
|
// --------------------- From here onwards we break out the side effect free limits ------------
|
|
3200
3200
|
/**
|
|
3201
3201
|
* ValueEmbedder is the writeable version
|
|
@@ -3248,9 +3248,9 @@ class ValueEmbedder extends Optional {
|
|
|
3248
3248
|
return new ValueEmbedder(value, valueKey);
|
|
3249
3249
|
}
|
|
3250
3250
|
}
|
|
3251
|
+
exports.ValueEmbedder = ValueEmbedder;
|
|
3251
3252
|
/*default value for absent*/
|
|
3252
3253
|
ValueEmbedder.absent = ValueEmbedder.fromNullable(null);
|
|
3253
|
-
exports.ValueEmbedder = ValueEmbedder;
|
|
3254
3254
|
|
|
3255
3255
|
|
|
3256
3256
|
/***/ }),
|
|
@@ -3297,7 +3297,7 @@ var ITERATION_STATUS;
|
|
|
3297
3297
|
(function (ITERATION_STATUS) {
|
|
3298
3298
|
ITERATION_STATUS["EO_STRM"] = "__EO_STRM__";
|
|
3299
3299
|
ITERATION_STATUS["BEF_STRM"] = "___BEF_STRM__";
|
|
3300
|
-
})(ITERATION_STATUS
|
|
3300
|
+
})(ITERATION_STATUS || (exports.ITERATION_STATUS = ITERATION_STATUS = {}));
|
|
3301
3301
|
function calculateSkips(next_strm) {
|
|
3302
3302
|
let pos = 1;
|
|
3303
3303
|
while (next_strm.lookAhead(pos) != ITERATION_STATUS.EO_STRM) {
|
|
@@ -4115,7 +4115,7 @@ var faces;
|
|
|
4115
4115
|
}
|
|
4116
4116
|
push.close = close;
|
|
4117
4117
|
})(push = faces.push || (faces.push = {}));
|
|
4118
|
-
})(faces
|
|
4118
|
+
})(faces || (exports.faces = faces = {}));
|
|
4119
4119
|
var myfaces;
|
|
4120
4120
|
(function (myfaces) {
|
|
4121
4121
|
/**
|
|
@@ -4185,7 +4185,7 @@ var myfaces;
|
|
|
4185
4185
|
* legacy oam functions
|
|
4186
4186
|
*/
|
|
4187
4187
|
myfaces.oam = OamSubmit_1.oam;
|
|
4188
|
-
})(myfaces
|
|
4188
|
+
})(myfaces || (exports.myfaces = myfaces = {}));
|
|
4189
4189
|
|
|
4190
4190
|
|
|
4191
4191
|
/***/ }),
|
|
@@ -4928,7 +4928,7 @@ var Implementation;
|
|
|
4928
4928
|
return new Function("event", sourceCode).call(source, event) !== false;
|
|
4929
4929
|
}
|
|
4930
4930
|
}
|
|
4931
|
-
})(Implementation
|
|
4931
|
+
})(Implementation || (exports.Implementation = Implementation = {}));
|
|
4932
4932
|
|
|
4933
4933
|
|
|
4934
4934
|
/***/ }),
|
|
@@ -5196,7 +5196,7 @@ var PushImpl;
|
|
|
5196
5196
|
}) {
|
|
5197
5197
|
return ((typeof fn !== "function") && (fn = mona_dish_1.DQ.global()[fn]), fn);
|
|
5198
5198
|
}
|
|
5199
|
-
})(PushImpl
|
|
5199
|
+
})(PushImpl || (exports.PushImpl = PushImpl = {}));
|
|
5200
5200
|
|
|
5201
5201
|
|
|
5202
5202
|
/***/ }),
|
|
@@ -5653,7 +5653,7 @@ var Assertions;
|
|
|
5653
5653
|
}
|
|
5654
5654
|
}
|
|
5655
5655
|
Assertions.assertDelay = assertDelay;
|
|
5656
|
-
})(Assertions
|
|
5656
|
+
})(Assertions || (exports.Assertions = Assertions = {}));
|
|
5657
5657
|
|
|
5658
5658
|
|
|
5659
5659
|
/***/ }),
|
|
@@ -6515,7 +6515,7 @@ var ExtLang;
|
|
|
6515
6515
|
throw makeException(new Error(), null, null, "Impl", "getForm", getMessage("ERR_FORM"));
|
|
6516
6516
|
}
|
|
6517
6517
|
}
|
|
6518
|
-
})(ExtLang
|
|
6518
|
+
})(ExtLang || (exports.ExtLang = ExtLang = {}));
|
|
6519
6519
|
|
|
6520
6520
|
|
|
6521
6521
|
/***/ }),
|
|
@@ -6655,7 +6655,7 @@ var ErrorType;
|
|
|
6655
6655
|
ErrorType["HTTP_ERROR"] = "httpError";
|
|
6656
6656
|
ErrorType["CLIENT_ERROR"] = "clientErrror";
|
|
6657
6657
|
ErrorType["TIMEOUT"] = "timeout";
|
|
6658
|
-
})(ErrorType
|
|
6658
|
+
})(ErrorType || (exports.ErrorType = ErrorType = {}));
|
|
6659
6659
|
/**
|
|
6660
6660
|
* the spec has a problem of having the error
|
|
6661
6661
|
* object somewhat underspecified, there is no clear
|
|
@@ -7265,7 +7265,7 @@ var Response;
|
|
|
7265
7265
|
break;
|
|
7266
7266
|
}
|
|
7267
7267
|
}
|
|
7268
|
-
})(Response
|
|
7268
|
+
})(Response || (exports.Response = Response = {}));
|
|
7269
7269
|
|
|
7270
7270
|
|
|
7271
7271
|
/***/ }),
|
|
@@ -8407,7 +8407,7 @@ var oam;
|
|
|
8407
8407
|
});
|
|
8408
8408
|
return false;
|
|
8409
8409
|
};
|
|
8410
|
-
})(oam
|
|
8410
|
+
})(oam || (exports.oam = oam = {}));
|
|
8411
8411
|
|
|
8412
8412
|
|
|
8413
8413
|
/***/ })
|
|
Binary file
|
|
Binary file
|