jsf.js_next_gen 4.0.4-beta.6 → 4.0.4-beta.8

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 (156) hide show
  1. package/dist/docs/functions/myfaces.ab.html +8 -3
  2. package/dist/window/faces-development.js +157 -147
  3. package/dist/window/faces-development.js.map +1 -1
  4. package/dist/window/faces.js +1 -1
  5. package/dist/window/faces.js.map +1 -1
  6. package/dist/window/jsf-development.js +157 -147
  7. package/dist/window/jsf-development.js.map +1 -1
  8. package/dist/window/jsf.js +1 -1
  9. package/dist/window/jsf.js.map +1 -1
  10. package/package.json +6 -6
  11. package/src/main/typescript/@types/definitions/index.d.ts +1 -1
  12. package/src/main/typescript/api/_api.ts +31 -15
  13. package/src/main/typescript/impl/AjaxImpl.ts +5 -5
  14. package/src/main/typescript/impl/util/Assertions.ts +1 -1
  15. package/src/main/typescript/impl/util/Lang.ts +2 -2
  16. package/src/main/typescript/impl/util/XhrQueueController.ts +1 -1
  17. package/src/main/typescript/impl/xhrCore/ErrorData.ts +2 -2
  18. package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +1 -1
  19. package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +5 -5
  20. package/src/main/typescript/impl/xhrCore/XhrFormData.ts +1 -1
  21. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +1 -1
  22. package/src/main/typescript/myfaces/OamSubmit.ts +1 -1
  23. package/src/main/typescript/test/api/MyFacesABTest.spec.ts +117 -0
  24. package/src/main/typescript/test/frameworkBase/LangTest.spec.ts +11 -14
  25. package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +8 -10
  26. package/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.ts +6 -2
  27. package/src/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.ts +9 -9
  28. package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +5 -4
  29. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +30 -30
  30. package/src/main/typescript/test/impl/ImplTest.spec.ts +2 -2
  31. package/src/main/typescript/test/impl/ImplTest_23.spec.ts +2 -2
  32. package/src/main/typescript/test/impl/SeparatorCharsTest.spec.ts +2 -2
  33. package/src/main/typescript/test/impl/util/ExtDomQueryTest.spec.ts +1 -1
  34. package/src/main/typescript/test/myfaces/OamSubmit.spec.ts +4 -4
  35. package/src/main/typescript/test/myfaces/OnLoad.spec.ts +1 -1
  36. package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +4 -4
  37. package/src/main/typescript/test/xhrCore/ClientWindow.spec.ts +3 -3
  38. package/src/main/typescript/test/xhrCore/ErrorChainTest.spec.ts +5 -5
  39. package/src/main/typescript/test/xhrCore/EventTests.spec.ts +4 -4
  40. package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +3 -3
  41. package/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.ts +5 -5
  42. package/src/main/typescript/test/xhrCore/OamSubmitTest.spec.ts +4 -4
  43. package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +5 -5
  44. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +10 -10
  45. package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +9 -9
  46. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +24 -24
  47. package/src/main/typescript/test/xhrCore/ResponseTest23.spec.ts +25 -25
  48. package/src/main/typescript/test/xhrCore/ShadowDomTest.spec.ts +3 -3
  49. package/src/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.ts +3 -3
  50. package/src/main/typescript/test/xhrCore/WebsocketTest.ts +8 -8
  51. package/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.ts +10 -10
  52. package/src/main/typescript/test/xhrCore/XhrRequestProgress.spec.ts +3 -3
  53. package/target/api/_api.js +17 -3
  54. package/target/api/_api.js.map +1 -1
  55. package/target/impl/AjaxImpl.js +5 -5
  56. package/target/impl/AjaxImpl.js.map +1 -1
  57. package/target/impl/util/Assertions.js.map +1 -1
  58. package/target/impl/util/Lang.js.map +1 -1
  59. package/target/impl/util/XhrQueueController.js +1 -1
  60. package/target/impl/util/XhrQueueController.js.map +1 -1
  61. package/target/impl/xhrCore/ErrorData.js +2 -2
  62. package/target/impl/xhrCore/ErrorData.js.map +1 -1
  63. package/target/impl/xhrCore/RequestDataResolver.js.map +1 -1
  64. package/target/impl/xhrCore/ResponseProcessor.js +2 -2
  65. package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
  66. package/target/impl/xhrCore/XhrFormData.js +1 -1
  67. package/target/impl/xhrCore/XhrFormData.js.map +1 -1
  68. package/target/impl/xhrCore/XhrRequest.js +1 -1
  69. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  70. package/target/myfaces/OamSubmit.js +1 -1
  71. package/target/myfaces/OamSubmit.js.map +1 -1
  72. package/target/test/api/MyFacesABTest.spec.js +117 -0
  73. package/target/test/api/MyFacesABTest.spec.js.map +1 -0
  74. package/target/test/frameworkBase/LangTest.spec.js +8 -11
  75. package/target/test/frameworkBase/LangTest.spec.js.map +1 -1
  76. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +3 -5
  77. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
  78. package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +15 -8
  79. package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js.map +1 -1
  80. package/target/test/frameworkBase/_ext/monadish/MappingProbes.js.map +1 -1
  81. package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +44 -40
  82. package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +1 -1
  83. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
  84. package/target/test/impl/ImplTest.spec.js +1 -1
  85. package/target/test/impl/ImplTest.spec.js.map +1 -1
  86. package/target/test/impl/ImplTest_23.spec.js +1 -1
  87. package/target/test/impl/ImplTest_23.spec.js.map +1 -1
  88. package/target/test/impl/SeparatorCharsTest.spec.js +2 -2
  89. package/target/test/impl/SeparatorCharsTest.spec.js.map +1 -1
  90. package/target/test/impl/util/ExtDomQueryTest.spec.js +1 -1
  91. package/target/test/impl/util/ExtDomQueryTest.spec.js.map +1 -1
  92. package/target/test/myfaces/OamSubmit.spec.js +4 -4
  93. package/target/test/myfaces/OamSubmit.spec.js.map +1 -1
  94. package/target/test/myfaces/OnLoad.spec.js +1 -1
  95. package/target/test/myfaces/OnLoad.spec.js.map +1 -1
  96. package/target/test/queue/AsynchronousQueueTest.spec.js +1 -1
  97. package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
  98. package/target/test/xhrCore/ClientWindow.spec.js.map +1 -1
  99. package/target/test/xhrCore/ErrorChainTest.spec.js +2 -2
  100. package/target/test/xhrCore/ErrorChainTest.spec.js.map +1 -1
  101. package/target/test/xhrCore/EventTests.spec.js +2 -2
  102. package/target/test/xhrCore/EventTests.spec.js.map +1 -1
  103. package/target/test/xhrCore/FileUploadTest.spec.js +1 -1
  104. package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
  105. package/target/test/xhrCore/NamespacesRequestTest.spec.js +2 -2
  106. package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +1 -1
  107. package/target/test/xhrCore/OamSubmitTest.spec.js +1 -1
  108. package/target/test/xhrCore/OamSubmitTest.spec.js.map +1 -1
  109. package/target/test/xhrCore/RequestParamsTest.spec.js +2 -2
  110. package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
  111. package/target/test/xhrCore/RequestTest.spec.js +4 -4
  112. package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
  113. package/target/test/xhrCore/RequestTest_23.spec.js +3 -3
  114. package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -1
  115. package/target/test/xhrCore/ResponseTest.spec.js +2 -2
  116. package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
  117. package/target/test/xhrCore/ResponseTest23.spec.js +3 -2
  118. package/target/test/xhrCore/ResponseTest23.spec.js.map +1 -1
  119. package/target/test/xhrCore/ShadowDomTest.spec.js +1 -1
  120. package/target/test/xhrCore/ShadowDomTest.spec.js.map +1 -1
  121. package/target/test/xhrCore/TobagoFileUploadTest.spec.js +1 -1
  122. package/target/test/xhrCore/TobagoFileUploadTest.spec.js.map +1 -1
  123. package/target/test/xhrCore/WebsocketTest.js +2 -2
  124. package/target/test/xhrCore/WebsocketTest.js.map +1 -1
  125. package/target/test/xhrCore/XhrFormDataTest.spec.js +1 -1
  126. package/target/test/xhrCore/XhrFormDataTest.spec.js.map +1 -1
  127. package/target/test/xhrCore/XhrRequestProgress.spec.js +1 -1
  128. package/target/test/xhrCore/XhrRequestProgress.spec.js.map +1 -1
  129. package/webpack.config.ts +2 -2
  130. package/faulty_response.html +0 -167
  131. package/pom.xml +0 -68
  132. package/remap.js +0 -43
  133. package/remap.js.map +0 -1
  134. package/target/classes/application.properties +0 -1
  135. package/target/classes/com/example/jsfs_js_ts/DecoratedFacesJS.class +0 -0
  136. package/target/classes/com/example/jsfs_js_ts/DecoratingResourceHandlerWrapper.class +0 -0
  137. package/target/classes/com/example/jsfs_js_ts/FacesJSMapFileResourceWrapper.class +0 -0
  138. package/target/classes/com/example/jsfs_js_ts/FacesJSMappingDecorator.class +0 -0
  139. package/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -4
  140. package/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -4
  141. package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +0 -1
  142. package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +0 -1
  143. package/target/surefire-reports/TEST-com.example.jsfs_js_ts.JsfsJsTsApplicationTests.xml +0 -76
  144. package/target/surefire-reports/com.example.jsfs_js_ts.JsfsJsTsApplicationTests.txt +0 -7
  145. package/target/test-classes/.gz +0 -0
  146. package/target/test-classes/com/example/jsfs_js_ts/JsfsJsTsApplicationTests.class +0 -0
  147. package/target/test-classes/fileuploadtest.html +0 -24
  148. package/target/test-classes/jsf-development.js +0 -3559
  149. package/target/test-classes/jsf-development.js.br +0 -0
  150. package/target/test-classes/jsf-development.js.gz +0 -0
  151. package/target/test-classes/jsf-development.js.map +0 -1
  152. package/target/test-classes/jsf.js +0 -3
  153. package/target/test-classes/jsf.js.br +0 -0
  154. package/target/test-classes/jsf.js.gz +0 -0
  155. package/webpack.config.js +0 -54
  156. package/webpack.config.js.map +0 -1
@@ -18,7 +18,7 @@
18
18
  <h1>Function ab</h1></div>
19
19
  <section class="tsd-panel">
20
20
  <ul class="tsd-signatures">
21
- <li class="tsd-signature tsd-anchor-link" id="ab"><span class="tsd-kind-call-signature">ab</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">source</span>, <span class="tsd-kind-parameter">event</span>, <span class="tsd-kind-parameter">eventName</span>, <span class="tsd-kind-parameter">execute</span>, <span class="tsd-kind-parameter">render</span>, <span class="tsd-kind-parameter">options</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="#ab" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" id="icon-anchor"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></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"></path></g></svg></a></li>
21
+ <li class="tsd-signature tsd-anchor-link" id="ab"><span class="tsd-kind-call-signature">ab</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">source</span>, <span class="tsd-kind-parameter">event</span>, <span class="tsd-kind-parameter">eventName</span>, <span class="tsd-kind-parameter">execute</span>, <span class="tsd-kind-parameter">render</span>, <span class="tsd-kind-parameter">options</span><span class="tsd-signature-symbol">?</span>, <span class="tsd-kind-parameter">userParameters</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="#ab" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" id="icon-anchor"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></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"></path></g></svg></a></li>
22
22
  <li class="tsd-description">
23
23
  <div class="tsd-comment tsd-typography"><p>AB function similar to mojarra and Primefaces
24
24
  not part of the spec but a convenience accessor method
@@ -39,7 +39,7 @@ Code provided by Thomas Andraschko</p>
39
39
  <div class="tsd-comment tsd-typography"></div></li>
40
40
  <li>
41
41
  <h5><span class="tsd-kind-parameter">eventName</span>: <span class="tsd-signature-type">string</span></h5>
42
- <div class="tsd-comment tsd-typography"><p>event name for java.jakarta.faces.behavior.evemnt</p>
42
+ <div class="tsd-comment tsd-typography"><p>event name for java.jakarta.faces.behavior.event</p>
43
43
  </div>
44
44
  <div class="tsd-comment tsd-typography"></div></li>
45
45
  <li>
@@ -54,7 +54,12 @@ Code provided by Thomas Andraschko</p>
54
54
  <div class="tsd-comment tsd-typography"></div></li>
55
55
  <li>
56
56
  <h5><span class="tsd-kind-parameter">options</span>: <span class="tsd-signature-type ">Options</span><span class="tsd-signature-symbol"> = {}</span></h5>
57
- <div class="tsd-comment tsd-typography"><p>the options which need to be mered in</p>
57
+ <div class="tsd-comment tsd-typography"><p>the options which need to be merged in</p>
58
+ </div>
59
+ <div class="tsd-comment tsd-typography"></div></li>
60
+ <li>
61
+ <h5><span class="tsd-kind-parameter">userParameters</span>: <span class="tsd-signature-type ">Options</span><span class="tsd-signature-symbol"> = {}</span></h5>
62
+ <div class="tsd-comment tsd-typography"><p>a set of user parameters which go into the final options under params, they can overide whatever is passed via options</p>
58
63
  </div>
59
64
  <div class="tsd-comment tsd-typography"></div></li></ul></div>
60
65
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>