jsf.js_next_gen 1.0.0-beta-20 → 4.0.0-RC.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.
- package/.mocharc.json +2 -1
- package/.nyc_output/2303b649-59d9-485c-9228-73b0ec8787a7.json +1 -0
- package/.nyc_output/756f2f03-c85b-4cdb-9b92-5799eb45ef1e.json +1 -0
- package/.nyc_output/processinfo/2303b649-59d9-485c-9228-73b0ec8787a7.json +1 -0
- package/.nyc_output/processinfo/756f2f03-c85b-4cdb-9b92-5799eb45ef1e.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -0
- package/.nycrc +2 -1
- package/README.md +78 -24
- package/dist/docs/assets/highlight.css +21 -0
- package/dist/docs/assets/search.js +1 -1
- package/dist/docs/assets/style.css +34 -2
- package/dist/docs/functions/{jsf.ajax.addOnError.html → faces.ajax.addOnError.html} +15 -13
- package/dist/docs/functions/{jsf.ajax.addOnEvent.html → faces.ajax.addOnEvent.html} +15 -13
- package/dist/docs/functions/{jsf.ajax.request.html → faces.ajax.request.html} +15 -13
- package/dist/docs/functions/{jsf.ajax.response.html → faces.ajax.response.html} +15 -13
- package/dist/docs/functions/{jsf.getClientWindow.html → faces.getClientWindow.html} +17 -14
- package/dist/docs/functions/{jsf.getProjectStage.html → faces.getProjectStage.html} +18 -15
- package/dist/docs/functions/{jsf.getViewState.html → faces.getViewState.html} +18 -15
- package/dist/docs/functions/{jsf.push.close.html → faces.push.close.html} +15 -13
- package/dist/docs/functions/{jsf.push.init.html → faces.push.init.html} +29 -19
- package/dist/docs/functions/{jsf.push.open.html → faces.push.open.html} +15 -13
- package/dist/docs/functions/{jsf.util.chain.html → faces.util.chain.html} +12 -10
- package/dist/docs/functions/myfaces.ab.html +10 -8
- package/dist/docs/index.html +71 -29
- package/dist/docs/modules/{jsf.ajax.html → faces.ajax.html} +18 -16
- package/dist/docs/modules/faces.html +75 -0
- package/dist/docs/modules/{jsf.push.html → faces.push.html} +16 -14
- package/dist/docs/modules/{jsf.util.html → faces.util.html} +12 -10
- package/dist/docs/modules/myfaces.html +8 -6
- package/dist/docs/modules.html +9 -7
- package/dist/docs/variables/faces.contextpath.html +57 -0
- package/dist/docs/variables/{jsf.implversion.html → faces.implversion.html} +17 -14
- package/dist/docs/variables/{jsf.separatorchar.html → faces.separatorchar.html} +18 -15
- package/dist/docs/variables/faces.specversion.html +64 -0
- package/dist/docs/variables/myfaces.oam.html +8 -6
- package/dist/window/faces-development.js +7688 -0
- 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 -0
- package/dist/window/faces.js +3 -0
- package/dist/window/faces.js.LICENSE.txt +87 -0
- package/dist/window/faces.js.br +0 -0
- package/dist/window/faces.js.gz +0 -0
- package/dist/window/faces.js.map +1 -0
- package/dist/window/jsf-development.js +3011 -2963
- 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 +2 -1
- package/dist/window/jsf.js.LICENSE.txt +87 -0
- 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 +12 -12
- package/pom.xml +14 -0
- package/src/main/java/com/example/jsfs_js_ts/DecoratedFacesJS.java +94 -0
- package/src/main/java/com/example/jsfs_js_ts/DecoratingResourceHandlerWrapper.java +54 -0
- package/src/main/java/com/example/jsfs_js_ts/FacesJSMapFileResourceWrapper.java +57 -0
- package/src/main/java/com/example/jsfs_js_ts/FacesJSMappingDecorator.java +138 -0
- package/src/main/typescript/@types/definitions/index.d.ts +147 -0
- package/src/main/typescript/api/{Jsf.ts → _api.ts} +61 -49
- package/src/main/typescript/api/faces.ts +44 -0
- package/src/main/typescript/api/jsf.ts +43 -0
- package/src/main/typescript/impl/AjaxImpl.ts +39 -42
- package/src/main/typescript/impl/PushImpl.ts +27 -30
- package/src/main/typescript/impl/core/Const.ts +38 -16
- package/src/main/typescript/impl/core/ImplTypes.ts +1 -1
- package/src/main/typescript/impl/i18n/Messages.ts +2 -2
- package/src/main/typescript/impl/util/Assertions.ts +3 -3
- package/src/main/typescript/impl/util/AsyncQueue.ts +1 -1
- package/src/main/typescript/impl/util/AsyncRunnable.ts +5 -5
- package/src/main/typescript/impl/util/ExtDomQuery.ts +200 -48
- package/src/main/typescript/impl/util/IListener.ts +1 -1
- package/src/main/typescript/impl/util/Lang.ts +25 -25
- package/src/main/typescript/impl/xhrCore/ErrorData.ts +2 -3
- package/src/main/typescript/impl/xhrCore/EventData.ts +4 -3
- package/src/main/typescript/impl/xhrCore/IResponseProcessor.ts +19 -11
- package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +15 -14
- package/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts +15 -11
- package/src/main/typescript/impl/xhrCore/Response.ts +30 -24
- package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +69 -49
- package/src/main/typescript/impl/xhrCore/XhrFormData.ts +9 -7
- package/src/main/typescript/impl/xhrCore/XhrRequest.ts +76 -60
- package/src/main/typescript/myfaces/OamSubmit.ts +12 -15
- package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +277 -65
- package/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.ts +1 -1
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.ts +1 -1
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MappingTest.spec.ts +1 -1
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +1 -1
- package/src/main/typescript/test/frameworkBase/_ext/monadish/StreamTest.spec.ts +1 -1
- package/src/main/typescript/test/frameworkBase/_ext/monadish/fixtures/test.js +1 -0
- package/src/main/typescript/test/frameworkBase/_ext/monadish/fixtures/test2.js +1 -0
- package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +75 -30
- package/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.ts +44 -4
- package/src/main/typescript/test/impl/ImplTest.spec.ts +18 -22
- package/src/main/typescript/test/impl/ImplTest_23.spec.ts +129 -0
- package/src/main/typescript/test/impl/SeparatorCharsTest.spec.ts +7 -6
- package/src/main/typescript/test/myfaces/OamSubmit.spec.ts +15 -24
- package/src/main/typescript/test/queue/AsynchronousProbe.ts +1 -1
- package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/EventTests.spec.ts +15 -23
- package/src/main/typescript/test/xhrCore/FakeWebsocket.ts +3 -3
- package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +7 -32
- package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +16 -37
- package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +17 -16
- package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +364 -0
- package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +102 -47
- package/src/main/typescript/test/xhrCore/ResponseTest23.spec.ts +362 -0
- package/src/main/typescript/test/xhrCore/ShadowDomTest.spec.ts +6 -9
- package/src/main/typescript/test/xhrCore/WebsocketTest.ts +15 -15
- package/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.ts +3 -3
- package/{target/main/typescript/impl/util/AsyncRunnable.js → src/main/typescript/test/xhrCore/fixtures/addedViewHead1.js} +4 -6
- package/src/main/typescript/test/xhrCore/fixtures/addedViewHead2.css +18 -0
- package/src/main/typescript/test/xhrCore/fixtures/addedViewHead2.js +16 -0
- package/src/main/typescript/test/xhrCore/fixtures/addedViewHead3.js +16 -0
- package/src/main/typescript/test/xhrCore/fixtures/nonce_script.js +16 -0
- package/src/main/typescript/tsconfig-typedoc.json +17 -1
- package/src/main/typescript/tsconfig.json +23 -5
- package/src/test/resources/jsf-development.js +1 -1
- package/src/test.html +75 -0
- package/src/tmp/test.html +92 -0
- package/target/api/{Jsf.js → _api.js} +68 -70
- package/target/api/_api.js.map +1 -0
- package/target/api/faces.js +45 -0
- package/target/api/faces.js.map +1 -0
- package/target/api/jsf.js +45 -0
- package/target/api/jsf.js.map +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/AjaxImpl.js +85 -93
- package/target/impl/AjaxImpl.js.map +1 -1
- package/target/impl/PushImpl.js +63 -64
- package/target/impl/PushImpl.js.map +1 -1
- package/target/impl/core/Const.js +38 -19
- package/target/impl/core/Const.js.map +1 -1
- package/target/impl/core/ImplTypes.js +10 -15
- package/target/impl/core/ImplTypes.js.map +1 -1
- package/target/impl/i18n/Messages.js +5 -6
- package/target/impl/i18n/Messages.js.map +1 -1
- package/target/impl/util/Assertions.js +12 -21
- package/target/impl/util/Assertions.js.map +1 -1
- package/target/impl/util/AsyncQueue.js +28 -36
- package/target/impl/util/AsyncQueue.js.map +1 -1
- package/target/impl/util/AsyncRunnable.js +1 -1
- package/target/impl/util/ExtDomQuery.js +235 -138
- package/target/impl/util/ExtDomQuery.js.map +1 -1
- package/target/impl/util/Lang.js +43 -50
- package/target/impl/util/Lang.js.map +1 -1
- package/target/impl/xhrCore/ErrorData.js +37 -62
- package/target/impl/xhrCore/ErrorData.js.map +1 -1
- package/target/impl/xhrCore/EventData.js +12 -14
- package/target/impl/xhrCore/EventData.js.map +1 -1
- package/target/impl/xhrCore/RequestDataResolver.js +27 -29
- package/target/impl/xhrCore/RequestDataResolver.js.map +1 -1
- package/target/impl/xhrCore/ResonseDataResolver.js +25 -23
- package/target/impl/xhrCore/ResonseDataResolver.js.map +1 -1
- package/target/impl/xhrCore/Response.js +40 -36
- package/target/impl/xhrCore/Response.js.map +1 -1
- package/target/impl/xhrCore/ResponseProcessor.js +165 -167
- package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
- package/target/impl/xhrCore/XhrFormData.js +75 -103
- package/target/impl/xhrCore/XhrFormData.js.map +1 -1
- package/target/impl/xhrCore/XhrRequest.js +160 -145
- package/target/impl/xhrCore/XhrRequest.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/myfaces/OamSubmit.js +32 -20
- package/target/myfaces/OamSubmit.js.map +1 -1
- package/target/surefire-reports/TEST-com.example.jsfs_js_ts.JsfsJsTsApplicationTests.xml +78 -0
- package/target/surefire-reports/com.example.jsfs_js_ts.JsfsJsTsApplicationTests.txt +7 -0
- package/target/test/frameworkBase/LangTest.spec.js +46 -32
- package/target/test/frameworkBase/LangTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +372 -134
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +46 -32
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MappingProbes.js +25 -34
- package/target/test/frameworkBase/_ext/monadish/MappingProbes.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MappingTest.spec.js +9 -9
- package/target/test/frameworkBase/_ext/monadish/MappingTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +32 -32
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/StreamTest.spec.js +51 -49
- package/target/test/frameworkBase/_ext/monadish/StreamTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js +277 -124
- package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js +199 -18
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
- package/target/test/impl/ImplTest.spec.js +45 -33
- package/target/test/impl/ImplTest.spec.js.map +1 -1
- package/target/test/impl/ImplTest_23.spec.js +133 -0
- package/target/test/impl/ImplTest_23.spec.js.map +1 -0
- package/target/test/impl/SeparatorCharsTest.spec.js +22 -20
- package/target/test/impl/SeparatorCharsTest.spec.js.map +1 -1
- package/target/test/myfaces/OamSubmit.spec.js +35 -42
- package/target/test/myfaces/OamSubmit.spec.js.map +1 -1
- package/target/test/queue/AsynchronousProbe.js +24 -30
- package/target/test/queue/AsynchronousProbe.js.map +1 -1
- package/target/test/queue/AsynchronousQueueTest.spec.js +40 -71
- package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
- package/target/test/xhrCore/EventTests.spec.js +47 -83
- package/target/test/xhrCore/EventTests.spec.js.map +1 -1
- package/target/test/xhrCore/FakeWebsocket.js +15 -17
- package/target/test/xhrCore/FakeWebsocket.js.map +1 -1
- package/target/test/xhrCore/FileUploadTest.spec.js +50 -91
- package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestParamsTest.spec.js +49 -98
- package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest.spec.js +84 -120
- package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
- package/target/test/{typescript/xhrCore/RequestTest.js → xhrCore/RequestTest_23.spec.js} +142 -127
- package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -0
- package/target/test/xhrCore/ResponseTest.spec.js +183 -105
- package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest23.spec.js +312 -0
- package/target/test/xhrCore/ResponseTest23.spec.js.map +1 -0
- package/target/test/xhrCore/ShadowDomTest.spec.js +33 -66
- package/target/test/xhrCore/ShadowDomTest.spec.js.map +1 -1
- package/target/test/xhrCore/WebsocketTest.js +64 -97
- package/target/test/xhrCore/WebsocketTest.js.map +1 -1
- package/target/test/xhrCore/XhrFormDataTest.spec.js +42 -16
- package/target/test/xhrCore/XhrFormDataTest.spec.js.map +1 -1
- package/target/test-classes/jsf-development.js +452 -3674
- package/target/test-classes/jsf.js +1 -1
- package/target/test-classes/jsf.js.br +0 -0
- package/target/test-classes/jsf.js.gz +0 -0
- package/webpack.config.js +7 -4
- package/webpack.config.js.map +1 -1
- package/webpack.config.ts +23 -4
- package/dist/docs/modules/jsf.html +0 -71
- package/dist/docs/variables/jsf.specversion.html +0 -52
- package/integrationdeploy.cmd +0 -4
- package/integrationsdeploy.sh +0 -5
- package/remap.js +0 -44
- package/remap.js.map +0 -1
- package/src/main/java/com/example/jsfs_js_ts/JsfsJsTsApplication.java +0 -12
- package/src/main/types/typedefs.d.ts +0 -66
- package/target/api/Jsf.js.map +0 -1
- package/target/classes/com/example/jsfs_js_ts/JsfsJsTsApplication.class +0 -0
- package/target/impl/util/ListenerQueue.js +0 -3
- package/target/impl/util/ListenerQueue.js.map +0 -1
- package/target/main/typescript/api/Jsf.js +0 -258
- package/target/main/typescript/api/Jsf.js.map +0 -1
- package/target/main/typescript/impl/AjaxImpl.js +0 -569
- package/target/main/typescript/impl/AjaxImpl.js.map +0 -1
- package/target/main/typescript/impl/PushImpl.js +0 -215
- package/target/main/typescript/impl/PushImpl.js.map +0 -1
- package/target/main/typescript/impl/core/Const.js +0 -135
- package/target/main/typescript/impl/core/Const.js.map +0 -1
- package/target/main/typescript/impl/core/ImplTypes.js +0 -43
- package/target/main/typescript/impl/core/ImplTypes.js.map +0 -1
- package/target/main/typescript/impl/i18n/Messages.js +0 -114
- package/target/main/typescript/impl/i18n/Messages.js.map +0 -1
- package/target/main/typescript/impl/util/Assertions.js +0 -90
- package/target/main/typescript/impl/util/Assertions.js.map +0 -1
- package/target/main/typescript/impl/util/AsyncQueue.js +0 -104
- package/target/main/typescript/impl/util/AsyncQueue.js.map +0 -1
- package/target/main/typescript/impl/util/AsyncRunnable.js.map +0 -1
- package/target/main/typescript/impl/util/ExtDomQuery.js +0 -129
- package/target/main/typescript/impl/util/ExtDomQuery.js.map +0 -1
- package/target/main/typescript/impl/util/Lang.js +0 -215
- package/target/main/typescript/impl/util/Lang.js.map +0 -1
- package/target/main/typescript/impl/util/ListenerQueue.js +0 -3
- package/target/main/typescript/impl/util/ListenerQueue.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/ErrorData.js +0 -89
- package/target/main/typescript/impl/xhrCore/ErrorData.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/EventData.js +0 -30
- package/target/main/typescript/impl/xhrCore/EventData.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/IResponseProcessor.js +0 -3
- package/target/main/typescript/impl/xhrCore/IResponseProcessor.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/RequestDataResolver.js +0 -143
- package/target/main/typescript/impl/xhrCore/RequestDataResolver.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/ResonseDataResolver.js +0 -103
- package/target/main/typescript/impl/xhrCore/ResonseDataResolver.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/Response.js +0 -167
- package/target/main/typescript/impl/xhrCore/Response.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/ResponseProcessor.js +0 -368
- package/target/main/typescript/impl/xhrCore/ResponseProcessor.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/XhrFormData.js +0 -272
- package/target/main/typescript/impl/xhrCore/XhrFormData.js.map +0 -1
- package/target/main/typescript/impl/xhrCore/XhrRequest.js +0 -281
- package/target/main/typescript/impl/xhrCore/XhrRequest.js.map +0 -1
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.js +0 -293
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.js.map +0 -1
- package/target/test/frameworkBase/_ext/monadish/LangTest.js +0 -89
- package/target/test/frameworkBase/_ext/monadish/LangTest.js.map +0 -1
- package/target/test/frameworkBase/_ext/monadish/MappingTest.js +0 -39
- package/target/test/frameworkBase/_ext/monadish/MappingTest.js.map +0 -1
- package/target/test/frameworkBase/_ext/monadish/MonadTest.js +0 -155
- package/target/test/frameworkBase/_ext/monadish/MonadTest.js.map +0 -1
- package/target/test/frameworkBase/_ext/monadish/StreamTest.js +0 -176
- package/target/test/frameworkBase/_ext/monadish/StreamTest.js.map +0 -1
- package/target/test/frameworkBase/_ext/monadish/XmlQueryTest.js +0 -1
- package/target/test/frameworkBase/_ext/monadish/XmlQueryTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/LangTest.js +0 -112
- package/target/test/typescript/frameworkBase/LangTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/DomQueryTest.js +0 -293
- package/target/test/typescript/frameworkBase/_ext/monadish/DomQueryTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/LangTest.js +0 -89
- package/target/test/typescript/frameworkBase/_ext/monadish/LangTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/MappingProbes.js +0 -115
- package/target/test/typescript/frameworkBase/_ext/monadish/MappingProbes.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/MappingTest.js +0 -39
- package/target/test/typescript/frameworkBase/_ext/monadish/MappingTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/MonadTest.js +0 -155
- package/target/test/typescript/frameworkBase/_ext/monadish/MonadTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/StreamTest.js +0 -176
- package/target/test/typescript/frameworkBase/_ext/monadish/StreamTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/XmlQueryTest.js +0 -1
- package/target/test/typescript/frameworkBase/_ext/monadish/XmlQueryTest.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/shared/StandardInits.js +0 -264
- package/target/test/typescript/frameworkBase/_ext/shared/StandardInits.js.map +0 -1
- package/target/test/typescript/frameworkBase/_ext/shared/XmlResponses.js +0 -23
- package/target/test/typescript/frameworkBase/_ext/shared/XmlResponses.js.map +0 -1
- package/target/test/typescript/impl/ImplTest.js +0 -98
- package/target/test/typescript/impl/ImplTest.js.map +0 -1
- package/target/test/typescript/impl/SeparatorCharsTest.js +0 -72
- package/target/test/typescript/impl/SeparatorCharsTest.js.map +0 -1
- package/target/test/typescript/queue/AsynchronousProbe.js +0 -99
- package/target/test/typescript/queue/AsynchronousProbe.js.map +0 -1
- package/target/test/typescript/queue/AsynchronousQueueTest.js +0 -130
- package/target/test/typescript/queue/AsynchronousQueueTest.js.map +0 -1
- package/target/test/typescript/xhrCore/EventTests.js +0 -155
- package/target/test/typescript/xhrCore/EventTests.js.map +0 -1
- package/target/test/typescript/xhrCore/FakeWebsocket.js +0 -25
- package/target/test/typescript/xhrCore/FakeWebsocket.js.map +0 -1
- package/target/test/typescript/xhrCore/FileUploadTest.js +0 -166
- package/target/test/typescript/xhrCore/FileUploadTest.js.map +0 -1
- package/target/test/typescript/xhrCore/RequestParamsTest.js +0 -151
- package/target/test/typescript/xhrCore/RequestParamsTest.js.map +0 -1
- package/target/test/typescript/xhrCore/RequestTest.js.map +0 -1
- package/target/test/typescript/xhrCore/ResponseTest.js +0 -257
- package/target/test/typescript/xhrCore/ResponseTest.js.map +0 -1
- package/target/test/typescript/xhrCore/ShadowDomTest.js +0 -122
- package/target/test/typescript/xhrCore/ShadowDomTest.js.map +0 -1
- package/target/test/typescript/xhrCore/WebsocketTest.js +0 -182
- package/target/test/typescript/xhrCore/WebsocketTest.js.map +0 -1
- package/target/test/typescript/xhrCore/XhrFormDataTest.js +0 -58
- package/target/test/typescript/xhrCore/XhrFormDataTest.js.map +0 -1
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>open | jsf.js_next_gen</title><meta name="description" content="Documentation for jsf.js_next_gen"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
|
-
<div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
4
|
+
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
5
|
+
<div class="field">
|
|
6
|
+
<div id="tsd-toolbar-links"></div></div>
|
|
5
7
|
<ul class="results">
|
|
6
8
|
<li class="state loading">Preparing search index...</li>
|
|
7
9
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
|
|
8
|
-
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
10
|
+
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
9
11
|
<div class="container container-main">
|
|
10
12
|
<div class="col-8 col-content">
|
|
11
13
|
<div class="tsd-page-title">
|
|
12
14
|
<ul class="tsd-breadcrumb">
|
|
13
15
|
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
14
|
-
<li><a href="../modules/
|
|
15
|
-
<li><a href="../modules/
|
|
16
|
-
<li><a href="
|
|
16
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
17
|
+
<li><a href="../modules/faces.push.html">push</a></li>
|
|
18
|
+
<li><a href="faces.push.open.html">open</a></li></ul>
|
|
17
19
|
<h1>Function open</h1></div>
|
|
18
20
|
<section class="tsd-panel">
|
|
19
21
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -21,7 +23,7 @@
|
|
|
21
23
|
<li class="tsd-description">
|
|
22
24
|
<div class="tsd-comment tsd-typography"><p>Open the web socket on the given channel.</p>
|
|
23
25
|
|
|
24
|
-
<h3>Throws</h3><p>
|
|
26
|
+
<h3>Throws</h3><p>Error is thrown, if the channel is unknown.</p>
|
|
25
27
|
</div>
|
|
26
28
|
<div class="tsd-parameters">
|
|
27
29
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -47,17 +49,17 @@
|
|
|
47
49
|
<ul>
|
|
48
50
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
49
51
|
<ul>
|
|
50
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
52
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
51
53
|
<ul>
|
|
52
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
53
|
-
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
54
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
54
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
55
|
+
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
56
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
55
57
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
56
58
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
57
59
|
<ul>
|
|
58
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
59
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
60
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
60
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.push.close.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>close</a></li>
|
|
61
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.push.init.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>init</a></li>
|
|
62
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="faces.push.open.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>open</a></li></ul></nav></div></div>
|
|
61
63
|
<div class="container tsd-generator">
|
|
62
64
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
63
65
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>chain | jsf.js_next_gen</title><meta name="description" content="Documentation for jsf.js_next_gen"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
|
-
<div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
4
|
+
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
5
|
+
<div class="field">
|
|
6
|
+
<div id="tsd-toolbar-links"></div></div>
|
|
5
7
|
<ul class="results">
|
|
6
8
|
<li class="state loading">Preparing search index...</li>
|
|
7
9
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
|
|
8
|
-
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
10
|
+
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
9
11
|
<div class="container container-main">
|
|
10
12
|
<div class="col-8 col-content">
|
|
11
13
|
<div class="tsd-page-title">
|
|
12
14
|
<ul class="tsd-breadcrumb">
|
|
13
15
|
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
14
|
-
<li><a href="../modules/
|
|
15
|
-
<li><a href="../modules/
|
|
16
|
-
<li><a href="
|
|
16
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
17
|
+
<li><a href="../modules/faces.util.html">util</a></li>
|
|
18
|
+
<li><a href="faces.util.chain.html">chain</a></li></ul>
|
|
17
19
|
<h1>Function chain</h1></div>
|
|
18
20
|
<section class="tsd-panel">
|
|
19
21
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -55,15 +57,15 @@ is terminated prematurely skipping the rest of the code!</p>
|
|
|
55
57
|
<ul>
|
|
56
58
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
57
59
|
<ul>
|
|
58
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
60
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
59
61
|
<ul>
|
|
60
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
61
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
62
|
-
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
62
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
63
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
64
|
+
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
63
65
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
64
66
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
65
67
|
<ul>
|
|
66
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
68
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="faces.util.chain.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>chain</a></li></ul></nav></div></div>
|
|
67
69
|
<div class="container tsd-generator">
|
|
68
70
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
69
71
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ab | jsf.js_next_gen</title><meta name="description" content="Documentation for jsf.js_next_gen"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
|
-
<div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
4
|
+
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
5
|
+
<div class="field">
|
|
6
|
+
<div id="tsd-toolbar-links"></div></div>
|
|
5
7
|
<ul class="results">
|
|
6
8
|
<li class="state loading">Preparing search index...</li>
|
|
7
9
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
|
|
8
|
-
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
10
|
+
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
9
11
|
<div class="container container-main">
|
|
10
12
|
<div class="col-8 col-content">
|
|
11
13
|
<div class="tsd-page-title">
|
|
@@ -35,11 +37,11 @@ Code provided by Thomas Andraschko</p>
|
|
|
35
37
|
</div></li>
|
|
36
38
|
<li>
|
|
37
39
|
<h5>eventName: <span class="tsd-signature-type">string</span></h5>
|
|
38
|
-
<div class="tsd-comment tsd-typography"><p>event name for java.
|
|
40
|
+
<div class="tsd-comment tsd-typography"><p>event name for java.jakarta.faces.behavior.evemnt</p>
|
|
39
41
|
</div></li>
|
|
40
42
|
<li>
|
|
41
43
|
<h5>execute: <span class="tsd-signature-type">string</span></h5>
|
|
42
|
-
<div class="tsd-comment tsd-typography"><p>execute list as passed down in
|
|
44
|
+
<div class="tsd-comment tsd-typography"><p>execute list as passed down in faces.ajax.request</p>
|
|
43
45
|
</div></li>
|
|
44
46
|
<li>
|
|
45
47
|
<h5>render: <span class="tsd-signature-type">string</span></h5></li>
|
|
@@ -64,11 +66,11 @@ Code provided by Thomas Andraschko</p>
|
|
|
64
66
|
<ul>
|
|
65
67
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
66
68
|
<ul>
|
|
67
|
-
<li class="tsd-kind-namespace"><a href="../modules/
|
|
69
|
+
<li class="tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
68
70
|
<ul>
|
|
69
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
70
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
71
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
71
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
72
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
73
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
72
74
|
<li class="current tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
73
75
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
74
76
|
<ul>
|
package/dist/docs/index.html
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>jsf.js_next_gen</title><meta name="description" content="Documentation for jsf.js_next_gen"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base=".">
|
|
4
|
-
<div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
4
|
+
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
5
|
+
<div class="field">
|
|
6
|
+
<div id="tsd-toolbar-links"></div></div>
|
|
5
7
|
<ul class="results">
|
|
6
8
|
<li class="state loading">Preparing search index...</li>
|
|
7
9
|
<li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">jsf.js_next_gen</a></div>
|
|
8
|
-
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
10
|
+
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
9
11
|
<div class="container container-main">
|
|
10
12
|
<div class="col-8 col-content">
|
|
11
13
|
<div class="tsd-page-title">
|
|
@@ -19,41 +21,68 @@
|
|
|
19
21
|
<h2>What is this?</h2>
|
|
20
22
|
</a>
|
|
21
23
|
<p>This project is a work in progress for a next gen typescript based
|
|
22
|
-
reimplementation of jsf.js</p>
|
|
24
|
+
reimplementation of jsf.js/faces.js</p>
|
|
23
25
|
<p>The main goal is maintainability. It omits legacy browsers
|
|
24
|
-
with
|
|
26
|
+
with Edge 14 and Ecmascript 2015 being the browser and ES baseline for the moment.</p>
|
|
25
27
|
<p>It uses functional constructs on micro scale
|
|
26
28
|
to keep the maintainability and uses
|
|
27
29
|
my own <a href="https://github.com/werpu/mona-dish/">mona-dish</a> project as core framework base, to avoid
|
|
28
30
|
unnecessary colliding dependencies.</p>
|
|
29
|
-
<p>I might roll in MonaDish in the future
|
|
30
|
-
via npm, but for now simply having it in the codebase suffices
|
|
31
|
-
and prevents collisions with other frameworks.</p>
|
|
32
31
|
<p>But it still uses classes modules and inheritance
|
|
33
32
|
for code structuring.
|
|
34
33
|
The reason for this is, I do not like the one function for all
|
|
35
|
-
approach,
|
|
36
|
-
|
|
34
|
+
approach, especially given we have Typescript now as implementation language
|
|
35
|
+
which allows a proper code structuring and modularization.</p>
|
|
36
|
+
<p>Webpack can take care of the packaging.</p>
|
|
37
|
+
<p>Having smaller code parts, makes it easier to test certain
|
|
37
38
|
aspects of the implementation.</p>
|
|
38
|
-
<p>Also one additional aspect of the new implementation it has a proper
|
|
39
|
-
test coverage via unit tests.</p>
|
|
39
|
+
<p>Also one additional aspect of the new implementation: it has a proper
|
|
40
|
+
test coverage via Mocha based unit tests.</p>
|
|
40
41
|
<p>This was also severely lacking in my old implementation
|
|
41
42
|
where I just ran a set of 20 integration tests on macro scale.</p>
|
|
42
43
|
|
|
43
44
|
<a href="#status" id="status" style="color: inherit; text-decoration: none;">
|
|
44
45
|
<h2>Status</h2>
|
|
45
46
|
</a>
|
|
46
|
-
<p>ATM I am function
|
|
47
|
+
<p>ATM I am function in beta bugfixing stage, and the code
|
|
47
48
|
can be tested (final beta stages)
|
|
48
|
-
I probably will make a release
|
|
49
|
+
I probably will make a release at the same time MyFaces 4.0
|
|
50
|
+
final hits the scene.
|
|
49
51
|
It has been testing in MyFaces Tobago now for a year
|
|
50
52
|
and atm is being integrated into MyFaces as new
|
|
51
|
-
JS codebase.</p>
|
|
53
|
+
JS/TS codebase.</p>
|
|
54
|
+
<p>Addition, for the integration in MyFaces, the api level has been
|
|
55
|
+
uplifted to Jakarta Faces 4.0
|
|
56
|
+
Note, this introduces some breaking changes, jsf jas been replaced with jakarta
|
|
57
|
+
and javax has been replaced by faces
|
|
58
|
+
so javax.faces.request becomes jakarta.faces.request</p>
|
|
59
|
+
<p>Note, a shim layer for backwards compatibility has been provided
|
|
60
|
+
you simply just need to load the generated. jsf.js file which goes down to 2.3 compatibility level
|
|
61
|
+
while loading faces.js will provide 4.0 compatibility</p>
|
|
62
|
+
<p>For this reason the version now also in the npm package is 4.0.x
|
|
63
|
+
(the pre changes code can still be reached in the 2.3 branch although
|
|
64
|
+
this branch is basically legacy, given we have the SHIM layer doing both)</p>
|
|
65
|
+
|
|
66
|
+
<a href="#special-info" id="special-info" style="color: inherit; text-decoration: none;">
|
|
67
|
+
<h3>Special info</h3>
|
|
68
|
+
</a>
|
|
69
|
+
<p>Due to a small api change, if you want to embed the 4.0 version (faces.js)
|
|
70
|
+
in your code, a new attribute specified by the Faces 4.0 spec is not set
|
|
71
|
+
at its proper value, <em>contextpath</em>. This attribute atm is a value expression
|
|
72
|
+
which needs to be set by the loading implementation.</p>
|
|
73
|
+
<p>Now if you want to provide your own embedded solution and you will have
|
|
74
|
+
to set this value yourself. While my code does not use the attribute in the faces
|
|
75
|
+
namespace, other libraries or the users might.</p>
|
|
76
|
+
<p>If you serve the code from MyFaces 4 instead of embedding it, the value will be preset
|
|
77
|
+
by the internal resource loader.</p>
|
|
78
|
+
<p>The JSF 2.3 version (jsf.js) is not affected by this change, so nothing needs to be done.
|
|
79
|
+
In fact the <em>contextpath</em> attribute is not present there.
|
|
80
|
+
All other attributes behave the same in both versions as in the original legacy codebase.</p>
|
|
52
81
|
|
|
53
82
|
<a href="#usage" id="usage" style="color: inherit; text-decoration: none;">
|
|
54
83
|
<h2>Usage</h2>
|
|
55
84
|
</a>
|
|
56
|
-
<p>It still is
|
|
85
|
+
<p>It still is code complete and in bugfixing phase, for testing purposes
|
|
57
86
|
it can be used (check the dist directory for builds, I consider
|
|
58
87
|
stable enough for testing, or your own builds)</p>
|
|
59
88
|
|
|
@@ -109,7 +138,7 @@ so it is gone now</p>
|
|
|
109
138
|
<li><p>pps disabled for the moment</p>
|
|
110
139
|
</li>
|
|
111
140
|
</ul>
|
|
112
|
-
<p>
|
|
141
|
+
<p>We had a special pps handling introduced in myfaces, a feature
|
|
113
142
|
probably never used (you basically could reduce the parameters
|
|
114
143
|
sent down by sending a list of pps ids). I have disabled it for the time being.
|
|
115
144
|
The code still is in there for the moment, but will be dropped
|
|
@@ -120,31 +149,44 @@ if no demand arises to enable it again.</p>
|
|
|
120
149
|
<p>In order to improve the maintainability I have dropped a lot
|
|
121
150
|
of shim and legacy code which was needed to support old browsers.
|
|
122
151
|
Since our main aim is long term maintainability there is a clear cut.
|
|
123
|
-
The lowest supported browser for the moment is
|
|
124
|
-
|
|
152
|
+
The lowest supported browser for the moment is Edge 14.
|
|
153
|
+
Older browsers are now cut off. This should suffice for most, if
|
|
125
154
|
not all important environments. If you still use an older browser than
|
|
126
|
-
|
|
155
|
+
Edge 14 you still can revert to the old codebase for the time being
|
|
127
156
|
(final cutoff point probably will come within the next few years)</p>
|
|
128
|
-
<p>IE11 might be cut off in the future, depending on the business requirements
|
|
129
|
-
by the myfaces users</p>
|
|
130
157
|
<ul>
|
|
131
158
|
<li>performance</li>
|
|
132
159
|
</ul>
|
|
133
160
|
<p>Given that we now have faster browsers and end user devices in the mobile
|
|
134
|
-
area than 10 years ago, my main focus was maintainability.
|
|
161
|
+
area than 10 years ago and the spec conformity has improved a lot, my main focus was maintainability.
|
|
135
162
|
Maintainability and readability now comes before performance. So I sacrificed some
|
|
136
163
|
of the performance to achieve it.
|
|
137
164
|
Given that the most critical performance hits do not happen in the ajax area
|
|
138
|
-
this is a sacrifice I can live with for the time being.</p>
|
|
165
|
+
this is a sacrifice I can live with, for the time being.</p>
|
|
139
166
|
<ul>
|
|
140
167
|
<li>Client side i18n</li>
|
|
141
168
|
</ul>
|
|
142
169
|
<p>The client side i18n error message translations have become more
|
|
143
170
|
of a liability than a feature.
|
|
144
171
|
For the time being all client side errors are reported in english.
|
|
145
|
-
I can reintroduce them, if there is
|
|
146
|
-
But the size and maintainability tradeoff compared to what they
|
|
172
|
+
I can reintroduce them, if there is real demand.
|
|
173
|
+
But the size and maintainability tradeoff, compared to what they
|
|
147
174
|
bring was not worth it to keep them anymore.</p>
|
|
175
|
+
<ul>
|
|
176
|
+
<li>Mapping file support</li>
|
|
177
|
+
</ul>
|
|
178
|
+
<p>The original implementation had various builds to support easier debugging (split, combined, compressed)</p>
|
|
179
|
+
<p>We now have only two builds prod and development.
|
|
180
|
+
However I have introduced a mapping file support.
|
|
181
|
+
To enable this support you have to reference the FacesJSMappingDecorator unless the mapping file
|
|
182
|
+
is reachable via the normal request (mapping files are bundled).
|
|
183
|
+
This works for normal includes, but if you include the jsf.js in a resource library you have to use
|
|
184
|
+
the decorator provided.</p>
|
|
185
|
+
<p>Usage <em>faces-config.xml</em></p>
|
|
186
|
+
<pre><code class="language-xml"><br/><span class="hl-0"><</span><span class="hl-1">application</span><span class="hl-0">></span><br/><span class="hl-2"> </span><span class="hl-0"><</span><span class="hl-1">resource-handler</span><span class="hl-0">></span><span class="hl-2">com.example.jsfs_js_ts.FacesJSMapFileResourceWrapper</span><span class="hl-0"></</span><span class="hl-1">resource-handler</span><span class="hl-0">></span><br/><span class="hl-0"></</span><span class="hl-1">application</span><span class="hl-0">></span>
|
|
187
|
+
</code></pre>
|
|
188
|
+
<p>This resource decorator detects automatically a faces*.js file coming from a resource library
|
|
189
|
+
and adjusts the references in the resource accordingly to the request patterns</p>
|
|
148
190
|
</div></div>
|
|
149
191
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
150
192
|
<div class="tsd-navigation settings">
|
|
@@ -164,11 +206,11 @@ bring was not worth it to keep them anymore.</p>
|
|
|
164
206
|
<ul>
|
|
165
207
|
<li class="current selected"><a href="modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
166
208
|
<ul>
|
|
167
|
-
<li class="tsd-kind-namespace"><a href="modules/
|
|
209
|
+
<li class="tsd-kind-namespace"><a href="modules/faces.html">faces</a>
|
|
168
210
|
<ul>
|
|
169
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="modules/
|
|
170
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="modules/
|
|
171
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="modules/
|
|
211
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="modules/faces.ajax.html">ajax</a></li>
|
|
212
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="modules/faces.push.html">push</a></li>
|
|
213
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="modules/faces.util.html">util</a></li></ul></li>
|
|
172
214
|
<li class="tsd-kind-namespace"><a href="modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
173
215
|
<nav class="tsd-navigation secondary menu-sticky"></nav></div></div>
|
|
174
216
|
<div class="container tsd-generator">
|
|
@@ -1,28 +1,30 @@
|
|
|
1
1
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ajax | jsf.js_next_gen</title><meta name="description" content="Documentation for jsf.js_next_gen"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
|
-
<div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
4
|
+
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
5
|
+
<div class="field">
|
|
6
|
+
<div id="tsd-toolbar-links"></div></div>
|
|
5
7
|
<ul class="results">
|
|
6
8
|
<li class="state loading">Preparing search index...</li>
|
|
7
9
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
|
|
8
|
-
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
10
|
+
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
9
11
|
<div class="container container-main">
|
|
10
12
|
<div class="col-8 col-content">
|
|
11
13
|
<div class="tsd-page-title">
|
|
12
14
|
<ul class="tsd-breadcrumb">
|
|
13
15
|
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
14
|
-
<li><a href="
|
|
15
|
-
<li><a href="
|
|
16
|
+
<li><a href="faces.html">faces</a></li>
|
|
17
|
+
<li><a href="faces.ajax.html">ajax</a></li></ul>
|
|
16
18
|
<h1>Namespace ajax</h1></div>
|
|
17
19
|
<section class="tsd-panel-group tsd-index-group">
|
|
18
20
|
<section class="tsd-panel tsd-index-panel">
|
|
19
21
|
<h3 class="tsd-index-heading uppercase">Index</h3>
|
|
20
22
|
<section class="tsd-index-section">
|
|
21
23
|
<h3 class="tsd-index-heading">Functions</h3>
|
|
22
|
-
<div class="tsd-index-list"><a href="../functions/
|
|
23
|
-
<a href="../functions/
|
|
24
|
-
<a href="../functions/
|
|
25
|
-
<a href="../functions/
|
|
24
|
+
<div class="tsd-index-list"><a href="../functions/faces.ajax.addOnError.html" class="tsd-index-link tsd-kind-function tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>add<wbr/>On<wbr/>Error</span></a>
|
|
25
|
+
<a href="../functions/faces.ajax.addOnEvent.html" class="tsd-index-link tsd-kind-function tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>add<wbr/>On<wbr/>Event</span></a>
|
|
26
|
+
<a href="../functions/faces.ajax.request.html" class="tsd-index-link tsd-kind-function tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>request</span></a>
|
|
27
|
+
<a href="../functions/faces.ajax.response.html" class="tsd-index-link tsd-kind-function tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>response</span></a>
|
|
26
28
|
</div></section></section></section></div>
|
|
27
29
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
28
30
|
<div class="tsd-navigation settings">
|
|
@@ -42,18 +44,18 @@
|
|
|
42
44
|
<ul>
|
|
43
45
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
44
46
|
<ul>
|
|
45
|
-
<li class="current tsd-kind-namespace"><a href="
|
|
47
|
+
<li class="current tsd-kind-namespace"><a href="faces.html">faces</a>
|
|
46
48
|
<ul>
|
|
47
|
-
<li class="current selected tsd-kind-namespace tsd-parent-kind-namespace"><a href="
|
|
48
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="
|
|
49
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="
|
|
49
|
+
<li class="current selected tsd-kind-namespace tsd-parent-kind-namespace"><a href="faces.ajax.html">ajax</a></li>
|
|
50
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="faces.push.html">push</a></li>
|
|
51
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="faces.util.html">util</a></li></ul></li>
|
|
50
52
|
<li class="tsd-kind-namespace"><a href="myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
51
53
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
52
54
|
<ul>
|
|
53
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/
|
|
54
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/
|
|
55
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/
|
|
56
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/
|
|
55
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.ajax.addOnError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>add<wbr/>On<wbr/>Error</a></li>
|
|
56
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.ajax.addOnEvent.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>add<wbr/>On<wbr/>Event</a></li>
|
|
57
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.ajax.request.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>request</a></li>
|
|
58
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.ajax.response.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>response</a></li></ul></nav></div></div>
|
|
57
59
|
<div class="container tsd-generator">
|
|
58
60
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
59
61
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>faces | jsf.js_next_gen</title><meta name="description" content="Documentation for jsf.js_next_gen"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
|
+
<div class="tsd-toolbar-contents container">
|
|
3
|
+
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
|
+
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
5
|
+
<div class="field">
|
|
6
|
+
<div id="tsd-toolbar-links"></div></div>
|
|
7
|
+
<ul class="results">
|
|
8
|
+
<li class="state loading">Preparing search index...</li>
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
|
|
10
|
+
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
11
|
+
<div class="container container-main">
|
|
12
|
+
<div class="col-8 col-content">
|
|
13
|
+
<div class="tsd-page-title">
|
|
14
|
+
<ul class="tsd-breadcrumb">
|
|
15
|
+
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
16
|
+
<li><a href="faces.html">faces</a></li></ul>
|
|
17
|
+
<h1>Namespace faces</h1></div>
|
|
18
|
+
<section class="tsd-panel-group tsd-index-group">
|
|
19
|
+
<section class="tsd-panel tsd-index-panel">
|
|
20
|
+
<h3 class="tsd-index-heading uppercase">Index</h3>
|
|
21
|
+
<section class="tsd-index-section">
|
|
22
|
+
<h3 class="tsd-index-heading">Namespaces</h3>
|
|
23
|
+
<div class="tsd-index-list"><a href="faces.ajax.html" class="tsd-index-link tsd-kind-namespace tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4-path"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)" id="icon-4-text"></path></svg><span>ajax</span></a>
|
|
24
|
+
<a href="faces.push.html" class="tsd-index-link tsd-kind-namespace tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4-path"></use><use href="#icon-4-text"></use></svg><span>push</span></a>
|
|
25
|
+
<a href="faces.util.html" class="tsd-index-link tsd-kind-namespace tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4-path"></use><use href="#icon-4-text"></use></svg><span>util</span></a>
|
|
26
|
+
</div></section>
|
|
27
|
+
<section class="tsd-index-section">
|
|
28
|
+
<h3 class="tsd-index-heading">Variables</h3>
|
|
29
|
+
<div class="tsd-index-list"><a href="../variables/faces.contextpath.html" class="tsd-index-link tsd-kind-variable tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-32-path"></rect><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)" id="icon-32-text"></path></svg><span>contextpath</span></a>
|
|
30
|
+
<a href="../variables/faces.implversion.html" class="tsd-index-link tsd-kind-variable tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg><span>implversion</span></a>
|
|
31
|
+
<a href="../variables/faces.separatorchar.html" class="tsd-index-link tsd-kind-variable tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg><span>separatorchar</span></a>
|
|
32
|
+
<a href="../variables/faces.specversion.html" class="tsd-index-link tsd-kind-variable tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg><span>specversion</span></a>
|
|
33
|
+
</div></section>
|
|
34
|
+
<section class="tsd-index-section">
|
|
35
|
+
<h3 class="tsd-index-heading">Functions</h3>
|
|
36
|
+
<div class="tsd-index-list"><a href="../functions/faces.getClientWindow.html" class="tsd-index-link tsd-kind-function tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>get<wbr/>Client<wbr/>Window</span></a>
|
|
37
|
+
<a href="../functions/faces.getProjectStage.html" class="tsd-index-link tsd-kind-function tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>get<wbr/>Project<wbr/>Stage</span></a>
|
|
38
|
+
<a href="../functions/faces.getViewState.html" class="tsd-index-link tsd-kind-function tsd-parent-kind-namespace"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg><span>get<wbr/>View<wbr/>State</span></a>
|
|
39
|
+
</div></section></section></section></div>
|
|
40
|
+
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
41
|
+
<div class="tsd-navigation settings">
|
|
42
|
+
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
43
|
+
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
|
|
44
|
+
<div class="tsd-accordion-details">
|
|
45
|
+
<div class="tsd-filter-visibility">
|
|
46
|
+
<h4 class="uppercase">Member Visibility</h4><form>
|
|
47
|
+
<ul id="tsd-filter-options">
|
|
48
|
+
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></form></div>
|
|
49
|
+
<div class="tsd-theme-toggle">
|
|
50
|
+
<h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
|
|
51
|
+
<nav class="tsd-navigation primary">
|
|
52
|
+
<details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
|
|
53
|
+
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
|
54
|
+
<div class="tsd-accordion-details">
|
|
55
|
+
<ul>
|
|
56
|
+
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
57
|
+
<ul>
|
|
58
|
+
<li class="current selected tsd-kind-namespace"><a href="faces.html">faces</a>
|
|
59
|
+
<ul>
|
|
60
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="faces.ajax.html">ajax</a></li>
|
|
61
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="faces.push.html">push</a></li>
|
|
62
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="faces.util.html">util</a></li></ul></li>
|
|
63
|
+
<li class="tsd-kind-namespace"><a href="myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
64
|
+
<nav class="tsd-navigation secondary menu-sticky">
|
|
65
|
+
<ul>
|
|
66
|
+
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.contextpath.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg>contextpath</a></li>
|
|
67
|
+
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.implversion.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg>implversion</a></li>
|
|
68
|
+
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.separatorchar.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg>separatorchar</a></li>
|
|
69
|
+
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.specversion.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-32-path"></use><use href="#icon-32-text"></use></svg>specversion</a></li>
|
|
70
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getClientWindow.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>get<wbr/>Client<wbr/>Window</a></li>
|
|
71
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getProjectStage.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>get<wbr/>Project<wbr/>Stage</a></li>
|
|
72
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getViewState.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>get<wbr/>View<wbr/>State</a></li></ul></nav></div></div>
|
|
73
|
+
<div class="container tsd-generator">
|
|
74
|
+
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
75
|
+
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|