jsf.js_next_gen 4.0.0 → 4.0.1-alpha.0

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.
Files changed (113) hide show
  1. package/README.md +7 -0
  2. package/dist/docs/assets/search.js +1 -1
  3. package/dist/docs/functions/faces.ajax.addOnError.html +4 -4
  4. package/dist/docs/functions/faces.ajax.request.html +7 -7
  5. package/dist/docs/functions/faces.ajax.response.html +1 -0
  6. package/dist/docs/functions/faces.util.chain.html +3 -3
  7. package/dist/docs/functions/myfaces.ab.html +1 -1
  8. package/dist/docs/functions/{myfaces.onOnDomReady.html → myfaces.onDomReady.html} +5 -5
  9. package/dist/docs/index.html +9 -0
  10. package/dist/docs/modules/myfaces.html +2 -2
  11. package/dist/docs/variables/myfaces.oam.html +1 -1
  12. package/dist/window/faces-development.js +1021 -628
  13. package/dist/window/faces-development.js.br +0 -0
  14. package/dist/window/faces-development.js.gz +0 -0
  15. package/dist/window/faces-development.js.map +1 -1
  16. package/dist/window/faces.js +1 -1
  17. package/dist/window/faces.js.br +0 -0
  18. package/dist/window/faces.js.gz +0 -0
  19. package/dist/window/faces.js.map +1 -1
  20. package/dist/window/jsf-development.js +1021 -628
  21. package/dist/window/jsf-development.js.br +0 -0
  22. package/dist/window/jsf-development.js.gz +0 -0
  23. package/dist/window/jsf-development.js.map +1 -1
  24. package/dist/window/jsf.js +1 -1
  25. package/dist/window/jsf.js.br +0 -0
  26. package/dist/window/jsf.js.gz +0 -0
  27. package/dist/window/jsf.js.map +1 -1
  28. package/package.json +3 -3
  29. package/plans for 4.0.1.txt +8 -0
  30. package/pom.xml +1 -1
  31. package/src/main/typescript/@types/definitions/index.d.ts +5 -5
  32. package/src/main/typescript/api/_api.ts +13 -12
  33. package/src/main/typescript/impl/AjaxImpl.ts +59 -45
  34. package/src/main/typescript/impl/core/Const.ts +5 -2
  35. package/src/main/typescript/impl/util/AsyncRunnable.ts +81 -6
  36. package/src/main/typescript/impl/util/ExtDomQuery.ts +7 -9
  37. package/src/main/typescript/impl/util/FileUtils.ts +26 -22
  38. package/src/main/typescript/impl/util/HiddenInputBuilder.ts +7 -3
  39. package/src/main/typescript/impl/util/Lang.ts +61 -4
  40. package/src/main/typescript/impl/util/XhrQueueController.ts +112 -0
  41. package/src/main/typescript/impl/xhrCore/EventData.ts +3 -3
  42. package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +12 -10
  43. package/src/main/typescript/impl/xhrCore/XhrFormData.ts +32 -19
  44. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +51 -72
  45. package/src/main/typescript/myfaces/OamSubmit.ts +6 -6
  46. package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +179 -40
  47. package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +4 -4
  48. package/src/main/typescript/test/frameworkBase/_ext/monadish/fixtures/blank.css +0 -0
  49. package/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-with-header.ts +921 -0
  50. package/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-without-header.ts +108 -0
  51. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +3 -2
  52. package/src/main/typescript/test/frameworkBase/_ext/shared/fixtures/jakarta.faces.resource/faces.js.jsf +0 -0
  53. package/src/main/typescript/test/myfaces/OnLoadSpec.ts +52 -0
  54. package/src/main/typescript/test/queue/AsynchronousProbe.ts +5 -5
  55. package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +4 -3
  56. package/src/main/typescript/test/xhrCore/EventTests.spec.ts +28 -22
  57. package/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.ts +4 -4
  58. package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +2 -2
  59. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +80 -6
  60. package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +6 -1
  61. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +23 -22
  62. package/target/api/_api.js +12 -11
  63. package/target/api/_api.js.map +1 -1
  64. package/target/impl/AjaxImpl.js +50 -39
  65. package/target/impl/AjaxImpl.js.map +1 -1
  66. package/target/impl/core/Const.js +7 -5
  67. package/target/impl/core/Const.js.map +1 -1
  68. package/target/impl/util/AsyncRunnable.js +60 -0
  69. package/target/impl/util/AsyncRunnable.js.map +1 -1
  70. package/target/impl/util/ExtDomQuery.js +8 -8
  71. package/target/impl/util/ExtDomQuery.js.map +1 -1
  72. package/target/impl/util/FileUtils.js +21 -20
  73. package/target/impl/util/FileUtils.js.map +1 -1
  74. package/target/impl/util/HiddenInputBuilder.js +7 -3
  75. package/target/impl/util/HiddenInputBuilder.js.map +1 -1
  76. package/target/impl/util/IAsyncRunnable.js +27 -0
  77. package/target/impl/util/IAsyncRunnable.js.map +1 -0
  78. package/target/impl/util/Lang.js +52 -1
  79. package/target/impl/util/Lang.js.map +1 -1
  80. package/target/impl/util/XhrQueueController.js +33 -8
  81. package/target/impl/util/XhrQueueController.js.map +1 -1
  82. package/target/impl/xhrCore/EventData.js +2 -2
  83. package/target/impl/xhrCore/EventData.js.map +1 -1
  84. package/target/impl/xhrCore/ResponseProcessor.js +9 -7
  85. package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
  86. package/target/impl/xhrCore/XhrFormData.js +29 -15
  87. package/target/impl/xhrCore/XhrFormData.js.map +1 -1
  88. package/target/impl/xhrCore/XhrRequest.js +43 -64
  89. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  90. package/target/myfaces/OamSubmit.js +5 -3
  91. package/target/myfaces/OamSubmit.js.map +1 -1
  92. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +138 -37
  93. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
  94. package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +4 -4
  95. package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +1 -1
  96. package/target/test/frameworkBase/_ext/shared/StandardInits.js +3 -2
  97. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
  98. package/target/test/queue/AsynchronousQueueTest.spec.js +3 -3
  99. package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
  100. package/target/test/xhrCore/EventTests.spec.js +26 -19
  101. package/target/test/xhrCore/EventTests.spec.js.map +1 -1
  102. package/target/test/xhrCore/NamespacesRequestTest.spec.js +3 -3
  103. package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +1 -1
  104. package/target/test/xhrCore/RequestParamsTest.spec.js +1 -1
  105. package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
  106. package/target/test/xhrCore/RequestTest.spec.js +73 -4
  107. package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
  108. package/target/test/xhrCore/RequestTest_23.spec.js +6 -0
  109. package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -1
  110. package/target/test/xhrCore/ResponseTest.spec.js +22 -15
  111. package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
  112. package/src/main/typescript/impl/util/AsyncQueue.ts +0 -133
  113. package/src/main/typescript/test/frameworkBase/_ext/monadish/StreamTest.spec.ts +0 -231
package/README.md CHANGED
@@ -58,6 +58,7 @@ In fact the *contextpath* attribute is not present there.
58
58
  All other attributes behave the same in both versions as in the original legacy codebase.
59
59
 
60
60
 
61
+
61
62
  ## Usage
62
63
 
63
64
  It still is code complete and in bugfixing phase, for testing purposes
@@ -167,4 +168,10 @@ Usage *faces-config.xml*
167
168
  This resource decorator detects automatically a faces*.js file coming from a resource library
168
169
  and adjusts the references in the resource accordingly to the request patterns
169
170
 
171
+ ## Changes since 4.0
172
+
173
+ * Elimination of Streams in favor of native arrays
174
+ * Providing an internal non intrusive shim for browsers which do not have array map and flapMap
175
+ (older Edge and Chromium versions) - done in mona-dish
176
+
170
177
 
@@ -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\":\"onOnDomReady\",\"url\":\"functions/myfaces.onOnDomReady.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\":{}}],[\"onondomready\",{\"_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\":[]}}");
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\":[]}}");
@@ -29,10 +29,10 @@ with errorData being of following format:</p>
29
29
  <li> errorData.status : the error status message</li>
30
30
  <li> errorData.serverErrorName : the server error name in case of a server error</li>
31
31
  <li> errorData.serverErrorMessage : the server error message in case of a server error</li>
32
- <li> errorData.source : the issuing source element which triggered the request </li>
33
- <li> eventData.responseCode: the response code (aka http request response code, 401 etc...) </li>
34
- <li> eventData.responseText: the request response text </li>
35
- <li> eventData.responseXML: the request response xml </li>
32
+ <li> errorData.source : the issuing source element which triggered the requestInternal </li>
33
+ <li> eventData.responseCode: the response code (aka http requestInternal response code, 401 etc...) </li>
34
+ <li> eventData.responseText: the requestInternal response text </li>
35
+ <li> eventData.responseXML: the requestInternal response xml </li>
36
36
  </ul></div>
37
37
  <div class="tsd-parameters">
38
38
  <h4 class="tsd-parameters-title">Parameters</h4>
@@ -19,15 +19,15 @@
19
19
  <h1>Function request</h1></div>
20
20
  <section class="tsd-panel">
21
21
  <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
22
- <li class="tsd-signature tsd-anchor-link" id="request">request<span class="tsd-signature-symbol">(</span>element<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Element</span>, event<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Event</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Options</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#request" 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
+ <li class="tsd-signature tsd-anchor-link" id="request">request<span class="tsd-signature-symbol">(</span>element<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Element</span>, event<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Event</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Context</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#request" 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>
23
23
  <li class="tsd-description">
24
24
  <div class="tsd-comment tsd-typography"><p>this function has to send the ajax requests</p>
25
- <p>following request conditions must be met:</p>
25
+ <p>following requestInternal conditions must be met:</p>
26
26
  <ul>
27
- <li> the request must be sent asynchronously! </li>
28
- <li> the request must be a POST!!! request </li>
29
- <li> the request url must be the form action attribute </li>
30
- <li> all requests must be queued with a client side request queue to ensure the request ordering!</li>
27
+ <li> the requestInternal must be sent asynchronously! </li>
28
+ <li> the requestInternal must be a POST!!! requestInternal </li>
29
+ <li> the requestInternal url must be the form action attribute </li>
30
+ <li> all requests must be queued with a client side requestInternal queue to ensure the requestInternal ordering!</li>
31
31
  </ul></div>
32
32
  <div class="tsd-parameters">
33
33
  <h4 class="tsd-parameters-title">Parameters</h4>
@@ -37,7 +37,7 @@
37
37
  <li>
38
38
  <h5><code class="tsd-tag ts-flagOptional">Optional</code> event: <span class="tsd-signature-type">Event</span></h5></li>
39
39
  <li>
40
- <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <span class="tsd-signature-type">Options</span></h5>
40
+ <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <span class="tsd-signature-type">Context</span></h5>
41
41
  <div class="tsd-comment tsd-typography"><p>: map of options being pushed into the ajax cycle</p>
42
42
  </div></li></ul></div>
43
43
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></div>
@@ -33,6 +33,7 @@
33
33
  <li>
34
34
  <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">Context</span></h5>
35
35
  <div class="tsd-comment tsd-typography"><p>the request context</p>
36
+ <p>TODO add info on what can be in the context</p>
36
37
  </div></li></ul></div>
37
38
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></div>
38
39
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
@@ -19,7 +19,7 @@
19
19
  <h1>Function chain</h1></div>
20
20
  <section class="tsd-panel">
21
21
  <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
22
- <li class="tsd-signature tsd-anchor-link" id="chain">chain<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">HTMLElement</span>, event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span>, <span class="tsd-signature-symbol">...</span>funcs<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Function</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">boolean</span><a href="#chain" 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
+ <li class="tsd-signature tsd-anchor-link" id="chain">chain<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, <span class="tsd-signature-symbol">...</span>funcs<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Function</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">boolean</span><a href="#chain" 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>
23
23
  <li class="tsd-description">
24
24
  <div class="tsd-comment tsd-typography"><p>varargs function which executes a chain of code (functions or any other code)</p>
25
25
  <p>if any of the code returns false, the execution
@@ -31,9 +31,9 @@ is terminated prematurely skipping the rest of the code!</p>
31
31
  <h4 class="tsd-parameters-title">Parameters</h4>
32
32
  <ul class="tsd-parameter-list">
33
33
  <li>
34
- <h5>source: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">HTMLElement</span></h5></li>
34
+ <h5>source: <span class="tsd-signature-type">any</span></h5></li>
35
35
  <li>
36
- <h5>event: <span class="tsd-signature-type">Event</span></h5></li>
36
+ <h5>event: <span class="tsd-signature-type">any</span></h5></li>
37
37
  <li>
38
38
  <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>funcs: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Function</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5>
39
39
  <div class="tsd-comment tsd-typography"><p>... arbitrary array of functions or strings</p>
@@ -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.onOnDomReady.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/>On<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
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>onOnDomReady | 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">
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.onOnDomReady.html">onOnDomReady</a></li></ul>
18
- <h1>Function onOnDomReady</h1></div>
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="onOnDomReady">on<wbr/>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"> =&gt; </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="#onOnDomReady" 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>
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"> =&gt; </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.onOnDomReady.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/>On<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
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>
@@ -176,6 +176,15 @@ the decorator provided.</p>
176
176
  </code></pre>
177
177
  <p>This resource decorator detects automatically a faces*.js file coming from a resource library
178
178
  and adjusts the references in the resource accordingly to the request patterns</p>
179
+
180
+ <a href="#changes-since-40" id="changes-since-40" style="color: inherit; text-decoration: none;">
181
+ <h2>Changes since 4.0</h2>
182
+ </a>
183
+ <ul>
184
+ <li>Elimination of Streams in favor of native arrays</li>
185
+ <li>Providing an internal non intrusive shim for browsers which do not have array map and flapMap
186
+ (older Edge and Chromium versions) - done in mona-dish</li>
187
+ </ul>
179
188
  </div></div>
180
189
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
181
190
  <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.onOnDomReady.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/>On<wbr/>Dom<wbr/>Ready</span></a>
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.onOnDomReady.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/>On<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
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.onOnDomReady.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/>On<wbr/>Dom<wbr/>Ready</a></li></ul></nav></div></div>
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>