jsf.js_next_gen 1.0.0-beta-20 → 4.0.0-beta-4
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 +12 -0
- package/dist/docs/assets/search.js +1 -1
- package/dist/docs/functions/{jsf.ajax.addOnError.html → faces.ajax.addOnError.html} +11 -11
- package/dist/docs/functions/{jsf.ajax.addOnEvent.html → faces.ajax.addOnEvent.html} +11 -11
- package/dist/docs/functions/{jsf.ajax.request.html → faces.ajax.request.html} +11 -11
- package/dist/docs/functions/{jsf.ajax.response.html → faces.ajax.response.html} +11 -11
- package/dist/docs/functions/{jsf.getClientWindow.html → faces.getClientWindow.html} +12 -12
- package/dist/docs/functions/{jsf.getProjectStage.html → faces.getProjectStage.html} +13 -13
- package/dist/docs/functions/{jsf.getViewState.html → faces.getViewState.html} +13 -13
- package/dist/docs/functions/{jsf.push.close.html → faces.push.close.html} +10 -10
- package/dist/docs/functions/{jsf.push.init.html → faces.push.init.html} +10 -10
- package/dist/docs/functions/{jsf.push.open.html → faces.push.open.html} +10 -10
- package/dist/docs/functions/{jsf.util.chain.html → faces.util.chain.html} +8 -8
- package/dist/docs/functions/myfaces.ab.html +6 -6
- package/dist/docs/index.html +13 -4
- package/dist/docs/modules/{jsf.ajax.html → faces.ajax.html} +14 -14
- package/dist/docs/modules/{jsf.html → faces.html} +22 -22
- package/dist/docs/modules/{jsf.push.html → faces.push.html} +12 -12
- package/dist/docs/modules/{jsf.util.html → faces.util.html} +8 -8
- package/dist/docs/modules/myfaces.html +4 -4
- package/dist/docs/modules.html +5 -5
- package/dist/docs/variables/{jsf.implversion.html → faces.implversion.html} +12 -12
- package/dist/docs/variables/{jsf.separatorchar.html → faces.separatorchar.html} +12 -12
- package/dist/docs/variables/{jsf.specversion.html → faces.specversion.html} +13 -13
- package/dist/docs/variables/myfaces.oam.html +4 -4
- package/dist/window/faces-development.js +7699 -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 +70 -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 +244 -150
- 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 +70 -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 +6 -6
- package/src/main/types/typedefs.d.ts +2 -0
- package/src/main/typescript/api/{Jsf.ts → faces.ts} +15 -11
- package/src/main/typescript/api/jsf.ts +30 -0
- package/src/main/typescript/impl/AjaxImpl.ts +18 -16
- package/src/main/typescript/impl/PushImpl.ts +4 -4
- package/src/main/typescript/impl/core/Const.ts +53 -15
- 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 +2 -2
- package/src/main/typescript/impl/util/AsyncQueue.ts +1 -1
- package/src/main/typescript/impl/util/AsyncRunnable.ts +1 -1
- package/src/main/typescript/impl/util/ExtDomQuery.ts +33 -22
- package/src/main/typescript/impl/util/IListener.ts +1 -1
- package/src/main/typescript/impl/util/Lang.ts +1 -1
- package/src/main/typescript/impl/xhrCore/ErrorData.ts +1 -1
- package/src/main/typescript/impl/xhrCore/EventData.ts +3 -2
- package/src/main/typescript/impl/xhrCore/IResponseProcessor.ts +1 -1
- package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +2 -2
- package/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts +1 -1
- package/src/main/typescript/impl/xhrCore/Response.ts +3 -3
- package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +5 -3
- package/src/main/typescript/impl/xhrCore/XhrFormData.ts +3 -3
- package/src/main/typescript/impl/xhrCore/XhrRequest.ts +5 -6
- package/src/main/typescript/myfaces/OamSubmit.ts +1 -2
- package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +1 -1
- 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/shared/StandardInits.ts +59 -28
- package/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.ts +4 -4
- package/src/main/typescript/test/impl/ImplTest.spec.ts +13 -13
- package/src/main/typescript/test/impl/ImplTest_23.spec.ts +134 -0
- package/src/main/typescript/test/impl/SeparatorCharsTest.spec.ts +7 -4
- package/src/main/typescript/test/myfaces/OamSubmit.spec.ts +1 -1
- package/src/main/typescript/test/queue/AsynchronousProbe.ts +1 -1
- package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +2 -2
- package/src/main/typescript/test/xhrCore/EventTests.spec.ts +8 -8
- package/src/main/typescript/test/xhrCore/FakeWebsocket.ts +1 -1
- package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +6 -6
- package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +23 -23
- package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +12 -12
- package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +27 -27
- package/src/main/typescript/test/xhrCore/ShadowDomTest.spec.ts +4 -6
- package/src/main/typescript/test/xhrCore/WebsocketTest.ts +9 -9
- package/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.ts +1 -1
- package/src/main/typescript/tsconfig-typedoc.json +1 -1
- package/src/test/resources/jsf-development.js +1 -1
- package/target/api/Jsf.js +17 -245
- package/target/api/Jsf.js.map +1 -1
- package/target/api/faces.js +265 -0
- package/target/api/faces.js.map +1 -0
- package/target/impl/AjaxImpl.js +15 -14
- package/target/impl/AjaxImpl.js.map +1 -1
- package/target/impl/PushImpl.js +4 -4
- package/target/impl/PushImpl.js.map +1 -1
- package/target/impl/core/Const.js +52 -15
- package/target/impl/core/Const.js.map +1 -1
- package/target/impl/core/ImplTypes.js +1 -1
- package/target/impl/i18n/Messages.js +2 -2
- package/target/impl/i18n/Messages.js.map +1 -1
- package/target/impl/util/Assertions.js +2 -2
- package/target/impl/util/Assertions.js.map +1 -1
- package/target/impl/util/AsyncRunnable.js +1 -1
- package/target/impl/util/ExtDomQuery.js +28 -17
- package/target/impl/util/ExtDomQuery.js.map +1 -1
- package/target/impl/util/Lang.js +1 -1
- package/target/impl/xhrCore/ErrorData.js +1 -1
- package/target/impl/xhrCore/EventData.js +3 -2
- package/target/impl/xhrCore/EventData.js.map +1 -1
- package/target/impl/xhrCore/RequestDataResolver.js +2 -2
- package/target/impl/xhrCore/ResonseDataResolver.js +1 -1
- package/target/impl/xhrCore/Response.js +3 -3
- package/target/impl/xhrCore/ResponseProcessor.js +11 -11
- package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
- package/target/impl/xhrCore/XhrFormData.js +3 -3
- package/target/impl/xhrCore/XhrRequest.js +5 -4
- package/target/impl/xhrCore/XhrRequest.js.map +1 -1
- package/target/myfaces/OamSubmit.js +1 -2
- package/target/myfaces/OamSubmit.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +1 -1
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +1 -1
- package/target/test/frameworkBase/_ext/monadish/MappingProbes.js +1 -1
- package/target/test/frameworkBase/_ext/monadish/MappingTest.spec.js +1 -1
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +1 -1
- package/target/test/frameworkBase/_ext/monadish/StreamTest.spec.js +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js +64 -26
- package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js +4 -4
- package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
- package/target/test/impl/ImplTest.spec.js +54 -13
- package/target/test/impl/ImplTest.spec.js.map +1 -1
- package/target/test/impl/ImplTest_23.spec.js +165 -0
- package/target/test/impl/ImplTest_23.spec.js.map +1 -0
- package/target/test/impl/ImplTest_23.spec_.js +165 -0
- package/target/test/impl/ImplTest_23.spec_.js.map +1 -0
- package/target/test/impl/SeparatorCharsTest.spec.js +7 -3
- package/target/test/impl/SeparatorCharsTest.spec.js.map +1 -1
- package/target/test/myfaces/OamSubmit.spec.js +1 -1
- package/target/test/queue/AsynchronousProbe.js +1 -1
- package/target/test/queue/AsynchronousQueueTest.spec.js +2 -2
- package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
- package/target/test/xhrCore/EventTests.spec.js +7 -7
- package/target/test/xhrCore/EventTests.spec.js.map +1 -1
- package/target/test/xhrCore/FakeWebsocket.js +1 -1
- package/target/test/xhrCore/FileUploadTest.spec.js +5 -5
- package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestParamsTest.spec.js +23 -23
- package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest.spec.js +11 -11
- package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest.spec.js +22 -22
- package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
- package/target/test/xhrCore/ShadowDomTest.spec.js +3 -4
- package/target/test/xhrCore/ShadowDomTest.spec.js.map +1 -1
- package/target/test/xhrCore/WebsocketTest.js +8 -8
- package/target/test/xhrCore/WebsocketTest.js.map +1 -1
- package/target/test/xhrCore/XhrFormDataTest.spec.js +1 -1
- package/webpack.config.ts +23 -4
- package/integrationdeploy.cmd +0 -4
- package/integrationsdeploy.sh +0 -5
- package/remap.js +0 -44
- package/remap.js.map +0 -1
- package/webpack.config.js +0 -68
- package/webpack.config.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"parent":null,"pid":46566,"argv":["/Users/werpu2/.nvm/versions/node/v16.17.0/bin/node","/Users/werpu2/development/workspace/jsfs_js_ts/node_modules/mocha/bin/mocha.js","--ui","bdd","--reporter","/Applications/IntelliJ IDEA.app/Contents/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijReporter.js","*/test/**/*_23.spec.ts"],"execArgv":[],"cwd":"/Users/werpu2/development/workspace/jsfs_js_ts","time":1664199230891,"ppid":46564,"coverageFilename":"/Users/werpu2/development/workspace/jsfs_js_ts/.nyc_output/2303b649-59d9-485c-9228-73b0ec8787a7.json","externalId":"","uuid":"2303b649-59d9-485c-9228-73b0ec8787a7","files":["/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/Const.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncQueue.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/faces.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"parent":null,"pid":46564,"argv":["/Users/werpu2/.nvm/versions/node/v16.17.0/bin/node","/Users/werpu2/development/workspace/jsfs_js_ts/node_modules/nyc/bin/nyc.js","--reporter=lcovonly","--report-dir","/private/var/folders/8n/_lr2tnb92750c0xdpq8k0rb00000gp/T/mocha-intellij-coverage-","/Users/werpu2/development/workspace/jsfs_js_ts/node_modules/mocha/bin/mocha.js","--ui","bdd","--reporter","/Applications/IntelliJ IDEA.app/Contents/plugins/NodeJS/js/mocha-intellij/lib/mochaIntellijReporter.js","*/test/**/*_23.spec.ts"],"execArgv":[],"cwd":"/Users/werpu2/development/workspace/jsfs_js_ts","time":1664199230059,"ppid":34236,"coverageFilename":"/Users/werpu2/development/workspace/jsfs_js_ts/.nyc_output/756f2f03-c85b-4cdb-9b92-5799eb45ef1e.json","externalId":"","uuid":"756f2f03-c85b-4cdb-9b92-5799eb45ef1e","files":["/Users/werpu2/development/workspace/jsfs_js_ts/remap.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/types/typedefs.d.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/faces.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/jsf.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/Const.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncQueue.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncRunnable.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/IListener.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/IResponseProcessor.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts","/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"processes":{"2303b649-59d9-485c-9228-73b0ec8787a7":{"parent":null,"children":[]},"756f2f03-c85b-4cdb-9b92-5799eb45ef1e":{"parent":null,"children":[]}},"files":{"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/Const.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncQueue.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/faces.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts":["2303b649-59d9-485c-9228-73b0ec8787a7","756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/remap.ts":["756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/types/typedefs.d.ts":["756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/api/jsf.ts":["756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/AsyncRunnable.ts":["756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/util/IListener.ts":["756f2f03-c85b-4cdb-9b92-5799eb45ef1e"],"/Users/werpu2/development/workspace/jsfs_js_ts/src/main/typescript/impl/xhrCore/IResponseProcessor.ts":["756f2f03-c85b-4cdb-9b92-5799eb45ef1e"]},"externalIds":{}}
|
package/.nycrc
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "@istanbuljs/nyc-config-typescript",
|
|
3
3
|
"all": true,
|
|
4
|
-
"exclude": ["**/test/**/*.*","**/*.config.*", "**/Messages_*.*","**/*Probe*.*", "**/*.js"]
|
|
4
|
+
"exclude": ["**/test/**/*.*","**/*.config.*", "**/Messages_*.*","**/*Probe*.*", "**/*.js"],
|
|
5
|
+
"license": "Apache-2.0"
|
|
5
6
|
}
|
package/README.md
CHANGED
|
@@ -40,6 +40,18 @@ It has been testing in MyFaces Tobago now for a year
|
|
|
40
40
|
and atm is being integrated into MyFaces as new
|
|
41
41
|
JS codebase.
|
|
42
42
|
|
|
43
|
+
Addition, for the integration in MyFaces, the api level has been
|
|
44
|
+
uplifted to Jakarta Faces 4.0
|
|
45
|
+
Note, this introduces some breaking changes, jsf jas been replaced with jakarta
|
|
46
|
+
and javax has been replaced by faces
|
|
47
|
+
so javax.faces.request becomes jakarta.faces.request
|
|
48
|
+
|
|
49
|
+
Note, a shim layer for backwards compatibility has been provided
|
|
50
|
+
you simply just need to load the generated. jsf.js file which goes down to 2.3 compatibility level
|
|
51
|
+
while loading faces.js will provide 4.0 compatibility
|
|
52
|
+
|
|
53
|
+
For this reason the version now also in the npm package is 4.0.x
|
|
54
|
+
|
|
43
55
|
|
|
44
56
|
## Usage
|
|
45
57
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
window.searchData = JSON.parse("{\"kinds\":{\"4\":\"Namespace\",\"32\":\"Variable\",\"64\":\"Function\"},\"rows\":[{\"kind\":4,\"name\":\"
|
|
1
|
+
window.searchData = JSON.parse("{\"kinds\":{\"4\":\"Namespace\",\"32\":\"Variable\",\"64\":\"Function\"},\"rows\":[{\"kind\":4,\"name\":\"faces\",\"url\":\"modules/faces.html\",\"classes\":\"tsd-kind-namespace\"},{\"kind\":64,\"name\":\"getProjectStage\",\"url\":\"functions/faces.getProjectStage.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":64,\"name\":\"getViewState\",\"url\":\"functions/faces.getViewState.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":64,\"name\":\"getClientWindow\",\"url\":\"functions/faces.getClientWindow.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":32,\"name\":\"specversion\",\"url\":\"variables/faces.specversion.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":32,\"name\":\"implversion\",\"url\":\"variables/faces.implversion.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":32,\"name\":\"separatorchar\",\"url\":\"variables/faces.separatorchar.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":4,\"name\":\"ajax\",\"url\":\"modules/faces.ajax.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":64,\"name\":\"request\",\"url\":\"functions/faces.ajax.request.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.ajax\"},{\"kind\":64,\"name\":\"response\",\"url\":\"functions/faces.ajax.response.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.ajax\"},{\"kind\":64,\"name\":\"addOnError\",\"url\":\"functions/faces.ajax.addOnError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.ajax\"},{\"kind\":64,\"name\":\"addOnEvent\",\"url\":\"functions/faces.ajax.addOnEvent.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.ajax\"},{\"kind\":4,\"name\":\"util\",\"url\":\"modules/faces.util.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":64,\"name\":\"chain\",\"url\":\"functions/faces.util.chain.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.util\"},{\"kind\":4,\"name\":\"push\",\"url\":\"modules/faces.push.html\",\"classes\":\"tsd-kind-namespace tsd-parent-kind-namespace\",\"parent\":\"faces\"},{\"kind\":64,\"name\":\"init\",\"url\":\"functions/faces.push.init.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.push\"},{\"kind\":64,\"name\":\"open\",\"url\":\"functions/faces.push.open.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.push\"},{\"kind\":64,\"name\":\"close\",\"url\":\"functions/faces.push.close.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"faces.push\"},{\"kind\":4,\"name\":\"myfaces\",\"url\":\"modules/myfaces.html\",\"classes\":\"tsd-kind-namespace\"},{\"kind\":64,\"name\":\"ab\",\"url\":\"functions/myfaces.ab.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"myfaces\"},{\"kind\":32,\"name\":\"oam\",\"url\":\"variables/myfaces.oam.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-namespace\",\"parent\":\"myfaces\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,26.856]],[\"comment/0\",[]],[\"name/1\",[1,26.856]],[\"comment/1\",[]],[\"name/2\",[2,26.856]],[\"comment/2\",[]],[\"name/3\",[3,26.856]],[\"comment/3\",[]],[\"name/4\",[4,26.856]],[\"comment/4\",[]],[\"name/5\",[5,26.856]],[\"comment/5\",[]],[\"name/6\",[6,26.856]],[\"comment/6\",[]],[\"name/7\",[7,26.856]],[\"comment/7\",[]],[\"name/8\",[8,26.856]],[\"comment/8\",[]],[\"name/9\",[9,26.856]],[\"comment/9\",[]],[\"name/10\",[10,26.856]],[\"comment/10\",[]],[\"name/11\",[11,26.856]],[\"comment/11\",[]],[\"name/12\",[12,26.856]],[\"comment/12\",[]],[\"name/13\",[13,26.856]],[\"comment/13\",[]],[\"name/14\",[14,26.856]],[\"comment/14\",[]],[\"name/15\",[15,26.856]],[\"comment/15\",[]],[\"name/16\",[16,26.856]],[\"comment/16\",[]],[\"name/17\",[17,26.856]],[\"comment/17\",[]],[\"name/18\",[18,26.856]],[\"comment/18\",[]],[\"name/19\",[19,26.856]],[\"comment/19\",[]],[\"name/20\",[20,26.856]],[\"comment/20\",[]]],\"invertedIndex\":[[\"ab\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"addonerror\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"addonevent\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"ajax\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"chain\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"close\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"faces\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"getclientwindow\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"getprojectstage\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"getviewstate\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"implversion\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"init\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"myfaces\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"oam\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"open\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"push\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"request\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"response\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"separatorchar\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"specversion\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"util\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<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="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
16
|
+
<li><a href="faces.ajax.addOnError.html">addOnError</a></li></ul>
|
|
17
17
|
<h1>Function addOnError</h1></div>
|
|
18
18
|
<section class="tsd-panel">
|
|
19
19
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -67,18 +67,18 @@ with errorData being of following format:</p>
|
|
|
67
67
|
<ul>
|
|
68
68
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
69
69
|
<ul>
|
|
70
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
70
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
71
71
|
<ul>
|
|
72
|
-
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
73
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
74
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
72
|
+
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
73
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
74
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
75
75
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
76
76
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
77
77
|
<ul>
|
|
78
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
79
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
80
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
81
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
78
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.addOnError.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>add<wbr/>On<wbr/>Error</a></li>
|
|
79
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
80
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
81
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
82
82
|
<div class="container tsd-generator">
|
|
83
83
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
84
84
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<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="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
16
|
+
<li><a href="faces.ajax.addOnEvent.html">addOnEvent</a></li></ul>
|
|
17
17
|
<h1>Function addOnEvent</h1></div>
|
|
18
18
|
<section class="tsd-panel">
|
|
19
19
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -57,18 +57,18 @@ of following format: <i>function eventListener(<eventData>)</i></p>
|
|
|
57
57
|
<ul>
|
|
58
58
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
59
59
|
<ul>
|
|
60
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
60
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
61
61
|
<ul>
|
|
62
|
-
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
63
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
64
|
-
<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/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="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
65
65
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
66
66
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
67
67
|
<ul>
|
|
68
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
69
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
70
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
71
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
68
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.addOnError.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>add<wbr/>On<wbr/>Error</a></li>
|
|
69
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
70
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
71
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
72
72
|
<div class="container tsd-generator">
|
|
73
73
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
74
74
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<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="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
16
|
+
<li><a href="faces.ajax.request.html">request</a></li></ul>
|
|
17
17
|
<h1>Function request</h1></div>
|
|
18
18
|
<section class="tsd-panel">
|
|
19
19
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -57,18 +57,18 @@
|
|
|
57
57
|
<ul>
|
|
58
58
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
59
59
|
<ul>
|
|
60
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
60
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
61
61
|
<ul>
|
|
62
|
-
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
63
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
64
|
-
<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/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="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
65
65
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
66
66
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
67
67
|
<ul>
|
|
68
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
69
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
70
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
71
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
68
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.addOnError.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>add<wbr/>On<wbr/>Error</a></li>
|
|
69
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
70
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
71
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
72
72
|
<div class="container tsd-generator">
|
|
73
73
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
74
74
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<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="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
16
|
+
<li><a href="faces.ajax.response.html">response</a></li></ul>
|
|
17
17
|
<h1>Function response</h1></div>
|
|
18
18
|
<section class="tsd-panel">
|
|
19
19
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -52,18 +52,18 @@
|
|
|
52
52
|
<ul>
|
|
53
53
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
54
54
|
<ul>
|
|
55
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
55
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
56
56
|
<ul>
|
|
57
|
-
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
58
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
59
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
57
|
+
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
58
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
59
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
60
60
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
61
61
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
62
62
|
<ul>
|
|
63
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
64
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
65
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
66
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
63
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.addOnError.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>add<wbr/>On<wbr/>Error</a></li>
|
|
64
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
65
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
66
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
67
67
|
<div class="container tsd-generator">
|
|
68
68
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
69
69
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
14
|
-
<li><a href="../modules/
|
|
15
|
-
<li><a href="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="faces.getClientWindow.html">getClientWindow</a></li></ul>
|
|
16
16
|
<h1>Function getClientWindow</h1></div>
|
|
17
17
|
<section class="tsd-panel">
|
|
18
18
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -46,20 +46,20 @@
|
|
|
46
46
|
<ul>
|
|
47
47
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
48
48
|
<ul>
|
|
49
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
49
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
50
50
|
<ul>
|
|
51
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
52
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
53
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
51
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
52
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
53
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
54
54
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
55
55
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
56
56
|
<ul>
|
|
57
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
58
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
59
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
60
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
61
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
62
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
57
|
+
<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"><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>implversion</a></li>
|
|
58
|
+
<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>
|
|
59
|
+
<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>
|
|
60
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="faces.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
|
|
61
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
62
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
63
63
|
<div class="container tsd-generator">
|
|
64
64
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
65
65
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
14
|
-
<li><a href="../modules/
|
|
15
|
-
<li><a href="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="faces.getProjectStage.html">getProjectStage</a></li></ul>
|
|
16
16
|
<h1>Function getProjectStage</h1></div>
|
|
17
17
|
<section class="tsd-panel">
|
|
18
18
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -29,7 +29,7 @@ Valid return values are:
|
|
|
29
29
|
<li>"UnitTest"</li>
|
|
30
30
|
</li>
|
|
31
31
|
<h3>Returns</h3><p>the current project state emitted by the server side method:
|
|
32
|
-
<i>
|
|
32
|
+
<i>jakarta.faces.application.Application.getProjectStage()</i></p>
|
|
33
33
|
</div>
|
|
34
34
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4></li></ul></section></div>
|
|
35
35
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
@@ -50,20 +50,20 @@ Valid return values are:
|
|
|
50
50
|
<ul>
|
|
51
51
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
52
52
|
<ul>
|
|
53
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
53
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
54
54
|
<ul>
|
|
55
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
56
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
57
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
55
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
56
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
57
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
58
58
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
59
59
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
60
60
|
<ul>
|
|
61
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
62
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
63
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
64
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
65
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
66
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
61
|
+
<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"><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>implversion</a></li>
|
|
62
|
+
<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>
|
|
63
|
+
<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>
|
|
64
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
|
|
65
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
66
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
67
67
|
<div class="container tsd-generator">
|
|
68
68
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
69
69
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
14
|
-
<li><a href="../modules/
|
|
15
|
-
<li><a href="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="faces.getViewState.html">getViewState</a></li></ul>
|
|
16
16
|
<h1>Function getViewState</h1></div>
|
|
17
17
|
<section class="tsd-panel">
|
|
18
18
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
19
19
|
<li class="tsd-signature tsd-anchor-link" id="getViewState">get<wbr/>View<wbr/>State<span class="tsd-signature-symbol">(</span>formElement<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getViewState" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></li>
|
|
20
20
|
<li class="tsd-description">
|
|
21
21
|
<div class="tsd-comment tsd-typography"><p>collect and encode data for a given form element (must be of type form)
|
|
22
|
-
find the
|
|
22
|
+
find the jakarta.faces.ViewState element and encode its value as well!
|
|
23
23
|
return a concatenated string of the encoded values!</p>
|
|
24
24
|
|
|
25
25
|
<h3>Throws</h3><p>an exception in case of the given element not being of type form!
|
|
@@ -49,20 +49,20 @@ return a concatenated string of the encoded values!</p>
|
|
|
49
49
|
<ul>
|
|
50
50
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
51
51
|
<ul>
|
|
52
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
52
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
53
53
|
<ul>
|
|
54
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
55
|
-
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/
|
|
56
|
-
<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="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>
|
|
57
57
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
58
58
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
59
59
|
<ul>
|
|
60
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
61
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
62
|
-
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/
|
|
63
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
64
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
65
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
60
|
+
<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"><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>implversion</a></li>
|
|
61
|
+
<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>
|
|
62
|
+
<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>
|
|
63
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
|
|
64
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
65
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
|
|
66
66
|
<div class="container tsd-generator">
|
|
67
67
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
68
68
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
<div class="tsd-page-title">
|
|
12
12
|
<ul class="tsd-breadcrumb">
|
|
13
13
|
<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="
|
|
14
|
+
<li><a href="../modules/faces.html">faces</a></li>
|
|
15
|
+
<li><a href="../modules/faces.push.html">push</a></li>
|
|
16
|
+
<li><a href="faces.push.close.html">close</a></li></ul>
|
|
17
17
|
<h1>Function close</h1></div>
|
|
18
18
|
<section class="tsd-panel">
|
|
19
19
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
@@ -47,17 +47,17 @@
|
|
|
47
47
|
<ul>
|
|
48
48
|
<li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
|
|
49
49
|
<ul>
|
|
50
|
-
<li class="current tsd-kind-namespace"><a href="../modules/
|
|
50
|
+
<li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
|
|
51
51
|
<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/
|
|
52
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
|
|
53
|
+
<li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
|
|
54
|
+
<li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
|
|
55
55
|
<li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
|
|
56
56
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
57
57
|
<ul>
|
|
58
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
59
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
60
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="
|
|
58
|
+
<li class="current 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>
|
|
59
|
+
<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>
|
|
60
|
+
<li class="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
61
|
<div class="container tsd-generator">
|
|
62
62
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
63
63
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|