jsf.js_next_gen 1.0.0-beta-20 → 4.0.0-beta-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (177) hide show
  1. package/.mocharc.json +2 -1
  2. package/.nyc_output/2303b649-59d9-485c-9228-73b0ec8787a7.json +1 -0
  3. package/.nyc_output/756f2f03-c85b-4cdb-9b92-5799eb45ef1e.json +1 -0
  4. package/.nyc_output/processinfo/2303b649-59d9-485c-9228-73b0ec8787a7.json +1 -0
  5. package/.nyc_output/processinfo/756f2f03-c85b-4cdb-9b92-5799eb45ef1e.json +1 -0
  6. package/.nyc_output/processinfo/index.json +1 -0
  7. package/.nycrc +2 -1
  8. package/README.md +12 -0
  9. package/dist/docs/assets/search.js +1 -1
  10. package/dist/docs/functions/{jsf.ajax.addOnError.html → faces.ajax.addOnError.html} +11 -11
  11. package/dist/docs/functions/{jsf.ajax.addOnEvent.html → faces.ajax.addOnEvent.html} +11 -11
  12. package/dist/docs/functions/{jsf.ajax.request.html → faces.ajax.request.html} +11 -11
  13. package/dist/docs/functions/{jsf.ajax.response.html → faces.ajax.response.html} +11 -11
  14. package/dist/docs/functions/{jsf.getClientWindow.html → faces.getClientWindow.html} +12 -12
  15. package/dist/docs/functions/{jsf.getProjectStage.html → faces.getProjectStage.html} +13 -13
  16. package/dist/docs/functions/{jsf.getViewState.html → faces.getViewState.html} +13 -13
  17. package/dist/docs/functions/{jsf.push.close.html → faces.push.close.html} +10 -10
  18. package/dist/docs/functions/{jsf.push.init.html → faces.push.init.html} +10 -10
  19. package/dist/docs/functions/{jsf.push.open.html → faces.push.open.html} +10 -10
  20. package/dist/docs/functions/{jsf.util.chain.html → faces.util.chain.html} +8 -8
  21. package/dist/docs/functions/myfaces.ab.html +6 -6
  22. package/dist/docs/index.html +13 -4
  23. package/dist/docs/modules/{jsf.ajax.html → faces.ajax.html} +14 -14
  24. package/dist/docs/modules/{jsf.html → faces.html} +22 -22
  25. package/dist/docs/modules/{jsf.push.html → faces.push.html} +12 -12
  26. package/dist/docs/modules/{jsf.util.html → faces.util.html} +8 -8
  27. package/dist/docs/modules/myfaces.html +4 -4
  28. package/dist/docs/modules.html +5 -5
  29. package/dist/docs/variables/{jsf.implversion.html → faces.implversion.html} +12 -12
  30. package/dist/docs/variables/{jsf.separatorchar.html → faces.separatorchar.html} +12 -12
  31. package/dist/docs/variables/{jsf.specversion.html → faces.specversion.html} +13 -13
  32. package/dist/docs/variables/myfaces.oam.html +4 -4
  33. package/dist/window/faces-development.js +7699 -0
  34. package/dist/window/faces-development.js.br +0 -0
  35. package/dist/window/faces-development.js.gz +0 -0
  36. package/dist/window/faces-development.js.map +1 -0
  37. package/dist/window/faces.js +3 -0
  38. package/dist/window/faces.js.LICENSE.txt +70 -0
  39. package/dist/window/faces.js.br +0 -0
  40. package/dist/window/faces.js.gz +0 -0
  41. package/dist/window/faces.js.map +1 -0
  42. package/dist/window/jsf-development.js +244 -150
  43. package/dist/window/jsf-development.js.br +0 -0
  44. package/dist/window/jsf-development.js.gz +0 -0
  45. package/dist/window/jsf-development.js.map +1 -1
  46. package/dist/window/jsf.js +2 -1
  47. package/dist/window/jsf.js.LICENSE.txt +70 -0
  48. package/dist/window/jsf.js.br +0 -0
  49. package/dist/window/jsf.js.gz +0 -0
  50. package/dist/window/jsf.js.map +1 -1
  51. package/package.json +6 -6
  52. package/src/main/types/typedefs.d.ts +2 -0
  53. package/src/main/typescript/api/{Jsf.ts → faces.ts} +15 -11
  54. package/src/main/typescript/api/jsf.ts +30 -0
  55. package/src/main/typescript/impl/AjaxImpl.ts +18 -16
  56. package/src/main/typescript/impl/PushImpl.ts +4 -4
  57. package/src/main/typescript/impl/core/Const.ts +53 -15
  58. package/src/main/typescript/impl/core/ImplTypes.ts +1 -1
  59. package/src/main/typescript/impl/i18n/Messages.ts +2 -2
  60. package/src/main/typescript/impl/util/Assertions.ts +2 -2
  61. package/src/main/typescript/impl/util/AsyncQueue.ts +1 -1
  62. package/src/main/typescript/impl/util/AsyncRunnable.ts +1 -1
  63. package/src/main/typescript/impl/util/ExtDomQuery.ts +33 -22
  64. package/src/main/typescript/impl/util/IListener.ts +1 -1
  65. package/src/main/typescript/impl/util/Lang.ts +1 -1
  66. package/src/main/typescript/impl/xhrCore/ErrorData.ts +1 -1
  67. package/src/main/typescript/impl/xhrCore/EventData.ts +3 -2
  68. package/src/main/typescript/impl/xhrCore/IResponseProcessor.ts +1 -1
  69. package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +2 -2
  70. package/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts +1 -1
  71. package/src/main/typescript/impl/xhrCore/Response.ts +3 -3
  72. package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +5 -3
  73. package/src/main/typescript/impl/xhrCore/XhrFormData.ts +3 -3
  74. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +5 -6
  75. package/src/main/typescript/myfaces/OamSubmit.ts +1 -2
  76. package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +1 -1
  77. package/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.ts +1 -1
  78. package/src/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.ts +1 -1
  79. package/src/main/typescript/test/frameworkBase/_ext/monadish/MappingTest.spec.ts +1 -1
  80. package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +1 -1
  81. package/src/main/typescript/test/frameworkBase/_ext/monadish/StreamTest.spec.ts +1 -1
  82. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +59 -28
  83. package/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.ts +4 -4
  84. package/src/main/typescript/test/impl/ImplTest.spec.ts +13 -13
  85. package/src/main/typescript/test/impl/ImplTest_23.spec.ts +134 -0
  86. package/src/main/typescript/test/impl/SeparatorCharsTest.spec.ts +7 -4
  87. package/src/main/typescript/test/myfaces/OamSubmit.spec.ts +1 -1
  88. package/src/main/typescript/test/queue/AsynchronousProbe.ts +1 -1
  89. package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +2 -2
  90. package/src/main/typescript/test/xhrCore/EventTests.spec.ts +8 -8
  91. package/src/main/typescript/test/xhrCore/FakeWebsocket.ts +1 -1
  92. package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +6 -6
  93. package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +23 -23
  94. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +12 -12
  95. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +27 -27
  96. package/src/main/typescript/test/xhrCore/ShadowDomTest.spec.ts +4 -6
  97. package/src/main/typescript/test/xhrCore/WebsocketTest.ts +9 -9
  98. package/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.ts +1 -1
  99. package/src/main/typescript/tsconfig-typedoc.json +1 -1
  100. package/src/test/resources/jsf-development.js +1 -1
  101. package/target/api/Jsf.js +17 -245
  102. package/target/api/Jsf.js.map +1 -1
  103. package/target/api/faces.js +265 -0
  104. package/target/api/faces.js.map +1 -0
  105. package/target/impl/AjaxImpl.js +15 -14
  106. package/target/impl/AjaxImpl.js.map +1 -1
  107. package/target/impl/PushImpl.js +4 -4
  108. package/target/impl/PushImpl.js.map +1 -1
  109. package/target/impl/core/Const.js +52 -15
  110. package/target/impl/core/Const.js.map +1 -1
  111. package/target/impl/core/ImplTypes.js +1 -1
  112. package/target/impl/i18n/Messages.js +2 -2
  113. package/target/impl/i18n/Messages.js.map +1 -1
  114. package/target/impl/util/Assertions.js +2 -2
  115. package/target/impl/util/Assertions.js.map +1 -1
  116. package/target/impl/util/AsyncRunnable.js +1 -1
  117. package/target/impl/util/ExtDomQuery.js +28 -17
  118. package/target/impl/util/ExtDomQuery.js.map +1 -1
  119. package/target/impl/util/Lang.js +1 -1
  120. package/target/impl/xhrCore/ErrorData.js +1 -1
  121. package/target/impl/xhrCore/EventData.js +3 -2
  122. package/target/impl/xhrCore/EventData.js.map +1 -1
  123. package/target/impl/xhrCore/RequestDataResolver.js +2 -2
  124. package/target/impl/xhrCore/ResonseDataResolver.js +1 -1
  125. package/target/impl/xhrCore/Response.js +3 -3
  126. package/target/impl/xhrCore/ResponseProcessor.js +11 -11
  127. package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
  128. package/target/impl/xhrCore/XhrFormData.js +3 -3
  129. package/target/impl/xhrCore/XhrRequest.js +5 -4
  130. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  131. package/target/myfaces/OamSubmit.js +1 -2
  132. package/target/myfaces/OamSubmit.js.map +1 -1
  133. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +1 -1
  134. package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +1 -1
  135. package/target/test/frameworkBase/_ext/monadish/MappingProbes.js +1 -1
  136. package/target/test/frameworkBase/_ext/monadish/MappingTest.spec.js +1 -1
  137. package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +1 -1
  138. package/target/test/frameworkBase/_ext/monadish/StreamTest.spec.js +1 -1
  139. package/target/test/frameworkBase/_ext/shared/StandardInits.js +64 -26
  140. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
  141. package/target/test/frameworkBase/_ext/shared/XmlResponses.js +4 -4
  142. package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
  143. package/target/test/impl/ImplTest.spec.js +54 -13
  144. package/target/test/impl/ImplTest.spec.js.map +1 -1
  145. package/target/test/impl/ImplTest_23.spec.js +165 -0
  146. package/target/test/impl/ImplTest_23.spec.js.map +1 -0
  147. package/target/test/impl/ImplTest_23.spec_.js +165 -0
  148. package/target/test/impl/ImplTest_23.spec_.js.map +1 -0
  149. package/target/test/impl/SeparatorCharsTest.spec.js +7 -3
  150. package/target/test/impl/SeparatorCharsTest.spec.js.map +1 -1
  151. package/target/test/myfaces/OamSubmit.spec.js +1 -1
  152. package/target/test/queue/AsynchronousProbe.js +1 -1
  153. package/target/test/queue/AsynchronousQueueTest.spec.js +2 -2
  154. package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
  155. package/target/test/xhrCore/EventTests.spec.js +7 -7
  156. package/target/test/xhrCore/EventTests.spec.js.map +1 -1
  157. package/target/test/xhrCore/FakeWebsocket.js +1 -1
  158. package/target/test/xhrCore/FileUploadTest.spec.js +5 -5
  159. package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
  160. package/target/test/xhrCore/RequestParamsTest.spec.js +23 -23
  161. package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
  162. package/target/test/xhrCore/RequestTest.spec.js +11 -11
  163. package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
  164. package/target/test/xhrCore/ResponseTest.spec.js +22 -22
  165. package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
  166. package/target/test/xhrCore/ShadowDomTest.spec.js +3 -4
  167. package/target/test/xhrCore/ShadowDomTest.spec.js.map +1 -1
  168. package/target/test/xhrCore/WebsocketTest.js +8 -8
  169. package/target/test/xhrCore/WebsocketTest.js.map +1 -1
  170. package/target/test/xhrCore/XhrFormDataTest.spec.js +1 -1
  171. package/webpack.config.ts +23 -4
  172. package/integrationdeploy.cmd +0 -4
  173. package/integrationsdeploy.sh +0 -5
  174. package/remap.js +0 -44
  175. package/remap.js.map +0 -1
  176. package/webpack.config.js +0 -68
  177. package/webpack.config.js.map +0 -1
@@ -0,0 +1,70 @@
1
+ /*!
2
+ * Licensed to the Apache Software Foundation (ASF) under one
3
+ * or more contributor license agreements. See the NOTICE file
4
+ * distributed with this work for additional information
5
+ * regarding copyright ownership. The ASF licenses this file
6
+ * to you under the Apache License, Version 2.0 (the
7
+ * "License"); you may not use this file except in compliance
8
+ * with the License. You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing,
13
+ * software distributed under the License is distributed on an
14
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ * KIND, either express or implied. See the License for the
16
+ * specific language governing permissions and limitations
17
+ * under the License.
18
+ */
19
+
20
+ /*!
21
+ * Licensed to the Apache Software Foundation (ASF) under one or more
22
+ * contributor license agreements. See the NOTICE file distributed with
23
+ * this work for additional information regarding copyright ownership.
24
+ * The ASF licenses this file to you under the Apache License, Version 2.0
25
+ * (the "License"); you may not use this file except in compliance with
26
+ * the License. You may obtain a copy of the License at
27
+ *
28
+ * http://www.apache.org/licenses/LICENSE-2.0
29
+ *
30
+ * Unless required by applicable law or agreed to in writing, software
31
+ * distributed under the License is distributed on an "AS IS" BASIS,
32
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33
+ * See the License for the specific language governing permissions and
34
+ * limitations under the License.
35
+ */
36
+
37
+ /*! Licensed to the Apache Software Foundation (ASF) under one or more
38
+ * contributor license agreements. See the NOTICE file distributed with
39
+ * this work for additional information regarding copyright ownership.
40
+ * The ASF licenses this file to you under the Apache License, Version 2.0
41
+ * (the "License"); you may not use this file except in compliance with
42
+ * the License. You may obtain a copy of the License at
43
+ *
44
+ * http://www.apache.org/licenses/LICENSE-2.0
45
+ *
46
+ * Unless required by applicable law or agreed to in writing, software
47
+ * distributed under the License is distributed on an "AS IS" BASIS,
48
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
49
+ * See the License for the specific language governing permissions and
50
+ * limitations under the License.
51
+ *
52
+ * todo replace singleton with module definition
53
+ *
54
+ */
55
+
56
+ /*! Licensed to the Apache Software Foundation (ASF) under one or more
57
+ * contributor license agreements. See the NOTICE file distributed with
58
+ * this work for additional information regarding copyright ownership.
59
+ * The ASF licenses this file to you under the Apache License, Version 2.0
60
+ * (the "License"); you may not use this file except in compliance with
61
+ * the License. You may obtain a copy of the License at
62
+ *
63
+ * http://www.apache.org/licenses/LICENSE-2.0
64
+ *
65
+ * Unless required by applicable law or agreed to in writing, software
66
+ * distributed under the License is distributed on an "AS IS" BASIS,
67
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
68
+ * See the License for the specific language governing permissions and
69
+ * limitations under the License.
70
+ */
Binary file
Binary file