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