jsf.js_next_gen 4.0.1-beta.2 → 4.0.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/docs/assets/search.js +1 -1
- package/dist/docs/functions/myfaces.ab.html +1 -1
- package/dist/docs/functions/{myfaces.onOnDomReady.html → myfaces.onDomReady.html} +5 -5
- package/dist/docs/index.html +9 -0
- package/dist/docs/modules/myfaces.html +2 -2
- package/dist/docs/variables/myfaces.oam.html +1 -1
- package/dist/window/faces-development.js +1285 -1295
- package/dist/window/faces-development.js.br +0 -0
- package/dist/window/faces-development.js.gz +0 -0
- package/dist/window/faces-development.js.map +1 -1
- package/dist/window/faces.js +1 -1
- package/dist/window/faces.js.br +0 -0
- package/dist/window/faces.js.gz +0 -0
- package/dist/window/faces.js.map +1 -1
- package/dist/window/jsf-development.js +1285 -1295
- package/dist/window/jsf-development.js.br +0 -0
- package/dist/window/jsf-development.js.gz +0 -0
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js +1 -1
- package/dist/window/jsf.js.br +0 -0
- package/dist/window/jsf.js.gz +0 -0
- package/dist/window/jsf.js.map +1 -1
- package/package.json +5 -5
- package/plans for 4.0.1.txt +8 -0
- package/src/main/typescript/api/_api.ts +1 -1
- package/src/main/typescript/impl/AjaxImpl.ts +60 -44
- package/src/main/typescript/impl/core/Const.ts +5 -2
- package/src/main/typescript/impl/util/AsyncRunnable.ts +81 -6
- package/src/main/typescript/impl/util/ExtDomQuery.ts +7 -9
- package/src/main/typescript/impl/util/FileUtils.ts +26 -22
- package/src/main/typescript/impl/util/HiddenInputBuilder.ts +7 -3
- package/src/main/typescript/impl/util/Lang.ts +61 -4
- package/src/main/typescript/impl/util/XhrQueueController.ts +112 -0
- package/src/main/typescript/impl/xhrCore/EventData.ts +3 -3
- package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +12 -10
- package/src/main/typescript/impl/xhrCore/XhrFormData.ts +32 -19
- package/src/main/typescript/impl/xhrCore/XhrRequest.ts +51 -72
- package/src/main/typescript/myfaces/OamSubmit.ts +6 -6
- package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +179 -40
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +4 -4
- package/src/main/typescript/test/frameworkBase/_ext/monadish/fixtures/blank.css +0 -0
- package/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-with-header.ts +921 -0
- package/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-without-header.ts +108 -0
- package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +3 -2
- package/src/main/typescript/test/frameworkBase/_ext/shared/fixtures/jakarta.faces.resource/faces.js.jsf +0 -0
- package/src/main/typescript/test/myfaces/OnLoadSpec.ts +52 -0
- package/src/main/typescript/test/queue/AsynchronousProbe.ts +5 -5
- package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +4 -3
- package/src/main/typescript/test/xhrCore/EventTests.spec.ts +28 -22
- package/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +2 -2
- package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +80 -6
- package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +6 -1
- package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +23 -22
- package/target/api/_api.js +2 -2
- package/target/api/_api.js.map +1 -1
- package/target/impl/AjaxImpl.js +48 -38
- package/target/impl/AjaxImpl.js.map +1 -1
- package/target/impl/core/Const.js +7 -5
- package/target/impl/core/Const.js.map +1 -1
- package/target/impl/util/AsyncRunnable.js +60 -0
- package/target/impl/util/AsyncRunnable.js.map +1 -1
- package/target/impl/util/ExtDomQuery.js +8 -8
- package/target/impl/util/ExtDomQuery.js.map +1 -1
- package/target/impl/util/FileUtils.js +21 -20
- package/target/impl/util/FileUtils.js.map +1 -1
- package/target/impl/util/HiddenInputBuilder.js +7 -3
- package/target/impl/util/HiddenInputBuilder.js.map +1 -1
- package/target/impl/util/Lang.js +52 -1
- package/target/impl/util/Lang.js.map +1 -1
- package/target/impl/xhrCore/EventData.js +2 -2
- package/target/impl/xhrCore/EventData.js.map +1 -1
- package/target/impl/xhrCore/ResponseProcessor.js +9 -7
- package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
- package/target/impl/xhrCore/XhrFormData.js +29 -15
- package/target/impl/xhrCore/XhrFormData.js.map +1 -1
- package/target/impl/xhrCore/XhrRequest.js +43 -64
- package/target/impl/xhrCore/XhrRequest.js.map +1 -1
- package/target/myfaces/OamSubmit.js +5 -3
- package/target/myfaces/OamSubmit.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +138 -37
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +4 -4
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js +3 -2
- package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
- package/target/test/queue/AsynchronousQueueTest.spec.js +3 -3
- package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
- package/target/test/xhrCore/EventTests.spec.js +26 -19
- package/target/test/xhrCore/EventTests.spec.js.map +1 -1
- package/target/test/xhrCore/NamespacesRequestTest.spec.js +3 -3
- package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestParamsTest.spec.js +1 -1
- package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest.spec.js +73 -4
- package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest_23.spec.js +6 -0
- package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest.spec.js +22 -15
- package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
- package/src/main/typescript/impl/util/AsyncQueue.ts +0 -133
- package/src/main/typescript/test/frameworkBase/_ext/monadish/StreamTest.spec.ts +0 -231
package/README.md
CHANGED
|
@@ -162,4 +162,10 @@ Usage *faces-config.xml*
|
|
|
162
162
|
This resource decorator detects automatically a faces*.js file coming from a resource library
|
|
163
163
|
and adjusts the references in the resource accordingly to the request patterns
|
|
164
164
|
|
|
165
|
+
## Changes since 4.0
|
|
166
|
+
|
|
167
|
+
* Elimination of Streams in favor of native arrays
|
|
168
|
+
* Providing an internal non intrusive shim for browsers which do not have array map and flapMap
|
|
169
|
+
(older Edge and Chromium versions) - done in mona-dish
|
|
170
|
+
|
|
165
171
|
|
|
@@ -1 +1 @@
|
|
|
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\":32,\"name\":\"contextpath\",\"url\":\"variables/faces.contextpath.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\":64,\"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\":32,\"name\":\"contextpath\",\"url\":\"variables/faces.contextpath.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\":64,\"name\":\"onDomReady\",\"url\":\"functions/myfaces.onDomReady.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,27.726]],[\"comment/0\",[]],[\"name/1\",[1,27.726]],[\"comment/1\",[]],[\"name/2\",[2,27.726]],[\"comment/2\",[]],[\"name/3\",[3,27.726]],[\"comment/3\",[]],[\"name/4\",[4,27.726]],[\"comment/4\",[]],[\"name/5\",[5,27.726]],[\"comment/5\",[]],[\"name/6\",[6,27.726]],[\"comment/6\",[]],[\"name/7\",[7,27.726]],[\"comment/7\",[]],[\"name/8\",[8,27.726]],[\"comment/8\",[]],[\"name/9\",[9,27.726]],[\"comment/9\",[]],[\"name/10\",[10,27.726]],[\"comment/10\",[]],[\"name/11\",[11,27.726]],[\"comment/11\",[]],[\"name/12\",[12,27.726]],[\"comment/12\",[]],[\"name/13\",[13,27.726]],[\"comment/13\",[]],[\"name/14\",[14,27.726]],[\"comment/14\",[]],[\"name/15\",[15,27.726]],[\"comment/15\",[]],[\"name/16\",[16,27.726]],[\"comment/16\",[]],[\"name/17\",[17,27.726]],[\"comment/17\",[]],[\"name/18\",[18,27.726]],[\"comment/18\",[]],[\"name/19\",[19,27.726]],[\"comment/19\",[]],[\"name/20\",[20,27.726]],[\"comment/20\",[]],[\"name/21\",[21,27.726]],[\"comment/21\",[]],[\"name/22\",[22,27.726]],[\"comment/22\",[]]],\"invertedIndex\":[[\"ab\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"addonerror\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"addonevent\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"ajax\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"chain\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"close\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"contextpath\",{\"_index\":7,\"name\":{\"7\":{}},\"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\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"myfaces\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"oam\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"ondomready\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"open\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"push\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"request\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"response\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"separatorchar\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"specversion\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"util\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
|
|
@@ -80,7 +80,7 @@ Code provided by Thomas Andraschko</p>
|
|
|
80
80
|
<ul>
|
|
81
81
|
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/myfaces.oam.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>oam</a></li>
|
|
82
82
|
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="myfaces.ab.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>ab</a></li>
|
|
83
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="myfaces.
|
|
83
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="myfaces.onDomReady.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>on<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
|
|
84
84
|
<div class="container tsd-generator">
|
|
85
85
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
86
86
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>onDomReady | 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
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>
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
<ul class="tsd-breadcrumb">
|
|
15
15
|
<li><a href="../modules.html">jsf.js_next_gen</a></li>
|
|
16
16
|
<li><a href="../modules/myfaces.html">myfaces</a></li>
|
|
17
|
-
<li><a href="myfaces.
|
|
18
|
-
<h1>Function
|
|
17
|
+
<li><a href="myfaces.onDomReady.html">onDomReady</a></li></ul>
|
|
18
|
+
<h1>Function onDomReady</h1></div>
|
|
19
19
|
<section class="tsd-panel">
|
|
20
20
|
<ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
|
|
21
|
-
<li class="tsd-signature tsd-anchor-link" id="
|
|
21
|
+
<li class="tsd-signature tsd-anchor-link" id="onDomReady">on<wbr/>Dom<wbr/>Ready<span class="tsd-signature-symbol">(</span>executionFunc<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#onDomReady" 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>
|
|
22
22
|
<li class="tsd-description">
|
|
23
23
|
<div class="tsd-comment tsd-typography"><p>Helper function in the myfaces namespace to handle document ready properly for the load case
|
|
24
24
|
the ajax case, does not need proper treatment, since it is deferred anyway.
|
|
@@ -66,7 +66,7 @@ Used by command script as helper function!</p>
|
|
|
66
66
|
<ul>
|
|
67
67
|
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/myfaces.oam.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>oam</a></li>
|
|
68
68
|
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="myfaces.ab.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>ab</a></li>
|
|
69
|
-
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="myfaces.
|
|
69
|
+
<li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="myfaces.onDomReady.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>on<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
|
|
70
70
|
<div class="container tsd-generator">
|
|
71
71
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
72
72
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
package/dist/docs/index.html
CHANGED
|
@@ -171,6 +171,15 @@ the decorator provided.</p>
|
|
|
171
171
|
</code></pre>
|
|
172
172
|
<p>This resource decorator detects automatically a faces*.js file coming from a resource library
|
|
173
173
|
and adjusts the references in the resource accordingly to the request patterns</p>
|
|
174
|
+
|
|
175
|
+
<a href="#changes-since-40" id="changes-since-40" style="color: inherit; text-decoration: none;">
|
|
176
|
+
<h2>Changes since 4.0</h2>
|
|
177
|
+
</a>
|
|
178
|
+
<ul>
|
|
179
|
+
<li>Elimination of Streams in favor of native arrays</li>
|
|
180
|
+
<li>Providing an internal non intrusive shim for browsers which do not have array map and flapMap
|
|
181
|
+
(older Edge and Chromium versions) - done in mona-dish</li>
|
|
182
|
+
</ul>
|
|
174
183
|
</div></div>
|
|
175
184
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
176
185
|
<div class="tsd-navigation settings">
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<section class="tsd-index-section">
|
|
26
26
|
<h3 class="tsd-index-heading">Functions</h3>
|
|
27
27
|
<div class="tsd-index-list"><a href="../functions/myfaces.ab.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>ab</span></a>
|
|
28
|
-
<a href="../functions/myfaces.
|
|
28
|
+
<a href="../functions/myfaces.onDomReady.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>on<wbr/>Dom<wbr/>Ready</span></a>
|
|
29
29
|
</div></section></section></section></div>
|
|
30
30
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
31
31
|
<div class="tsd-navigation settings">
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
<ul>
|
|
56
56
|
<li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/myfaces.oam.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>oam</a></li>
|
|
57
57
|
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/myfaces.ab.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>ab</a></li>
|
|
58
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/myfaces.
|
|
58
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/myfaces.onDomReady.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>on<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
|
|
59
59
|
<div class="container tsd-generator">
|
|
60
60
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
61
61
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<ul>
|
|
48
48
|
<li class="current tsd-kind-variable tsd-parent-kind-namespace"><a href="myfaces.oam.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>oam</a></li>
|
|
49
49
|
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/myfaces.ab.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>ab</a></li>
|
|
50
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/myfaces.
|
|
50
|
+
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/myfaces.onDomReady.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>on<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
|
|
51
51
|
<div class="container tsd-generator">
|
|
52
52
|
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
53
53
|
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|