jsf.js_next_gen 4.0.5-beta.4 → 4.0.5-beta.6
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 +1 -1
- package/dist/window/faces-development.js.map +1 -1
- package/dist/window/faces.js.map +1 -1
- package/dist/window/jsf-development.js +1 -1
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js.map +1 -1
- package/package.json +2 -2
- package/src/main/typescript/mona_dish_shim.ts +33 -0
- package/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.ts +4 -2
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +2 -2
- package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +0 -1
- package/src/main/typescript/test/xhrCore/ResponseTest23.spec.ts +0 -2
- package/src/main/typescript/tsconfig.json +4 -0
- package/target/mona_dish_shim.js +70 -0
- package/target/mona_dish_shim.js.map +1 -0
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +14 -10
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +44 -41
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +1 -1
- package/target/test/xhrCore/FileUploadTest.spec.js +0 -1
- package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest23.spec.js.map +1 -1
- package/tsconfig.json +9 -0
- package/webpack.config.ts +6 -3
|
@@ -2836,7 +2836,7 @@ var Lang;
|
|
|
2836
2836
|
* </code>
|
|
2837
2837
|
*
|
|
2838
2838
|
* @param resolverProducer a lambda which can produce the value
|
|
2839
|
-
* @param defaultValue an optional default value if the producer
|
|
2839
|
+
* @param defaultValue an optional default value if the producer fails to produce anything
|
|
2840
2840
|
* @returns an Optional of the produced value
|
|
2841
2841
|
*/
|
|
2842
2842
|
function saveResolve(resolverProducer, defaultValue = null) {
|