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

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 (138) hide show
  1. package/.nyc_output/2303b649-59d9-485c-9228-73b0ec8787a7.json +1 -0
  2. package/.nyc_output/756f2f03-c85b-4cdb-9b92-5799eb45ef1e.json +1 -0
  3. package/.nyc_output/processinfo/2303b649-59d9-485c-9228-73b0ec8787a7.json +1 -0
  4. package/.nyc_output/processinfo/756f2f03-c85b-4cdb-9b92-5799eb45ef1e.json +1 -0
  5. package/.nyc_output/processinfo/index.json +1 -0
  6. package/README.md +12 -0
  7. package/dist/docs/assets/search.js +1 -1
  8. package/dist/docs/functions/{jsf.ajax.addOnError.html → faces.ajax.addOnError.html} +11 -11
  9. package/dist/docs/functions/{jsf.ajax.addOnEvent.html → faces.ajax.addOnEvent.html} +11 -11
  10. package/dist/docs/functions/{jsf.ajax.request.html → faces.ajax.request.html} +11 -11
  11. package/dist/docs/functions/{jsf.ajax.response.html → faces.ajax.response.html} +11 -11
  12. package/dist/docs/functions/{jsf.getClientWindow.html → faces.getClientWindow.html} +12 -12
  13. package/dist/docs/functions/{jsf.getProjectStage.html → faces.getProjectStage.html} +13 -13
  14. package/dist/docs/functions/{jsf.getViewState.html → faces.getViewState.html} +13 -13
  15. package/dist/docs/functions/{jsf.push.close.html → faces.push.close.html} +10 -10
  16. package/dist/docs/functions/{jsf.push.init.html → faces.push.init.html} +10 -10
  17. package/dist/docs/functions/{jsf.push.open.html → faces.push.open.html} +10 -10
  18. package/dist/docs/functions/{jsf.util.chain.html → faces.util.chain.html} +8 -8
  19. package/dist/docs/functions/myfaces.ab.html +6 -6
  20. package/dist/docs/index.html +13 -4
  21. package/dist/docs/modules/{jsf.ajax.html → faces.ajax.html} +14 -14
  22. package/dist/docs/modules/{jsf.html → faces.html} +22 -22
  23. package/dist/docs/modules/{jsf.push.html → faces.push.html} +12 -12
  24. package/dist/docs/modules/{jsf.util.html → faces.util.html} +8 -8
  25. package/dist/docs/modules/myfaces.html +4 -4
  26. package/dist/docs/modules.html +5 -5
  27. package/dist/docs/variables/{jsf.implversion.html → faces.implversion.html} +12 -12
  28. package/dist/docs/variables/{jsf.separatorchar.html → faces.separatorchar.html} +12 -12
  29. package/dist/docs/variables/{jsf.specversion.html → faces.specversion.html} +13 -13
  30. package/dist/docs/variables/myfaces.oam.html +4 -4
  31. package/dist/window/faces-development.js +7695 -0
  32. package/dist/window/faces-development.js.br +0 -0
  33. package/dist/window/faces-development.js.gz +0 -0
  34. package/dist/window/faces-development.js.map +1 -0
  35. package/dist/window/faces.js +2 -0
  36. package/dist/window/faces.js.br +0 -0
  37. package/dist/window/faces.js.gz +0 -0
  38. package/dist/window/faces.js.map +1 -0
  39. package/dist/window/jsf-development.js +192 -102
  40. package/dist/window/jsf-development.js.br +0 -0
  41. package/dist/window/jsf-development.js.gz +0 -0
  42. package/dist/window/jsf-development.js.map +1 -1
  43. package/dist/window/jsf.js +1 -1
  44. package/dist/window/jsf.js.br +0 -0
  45. package/dist/window/jsf.js.gz +0 -0
  46. package/dist/window/jsf.js.map +1 -1
  47. package/package.json +2 -2
  48. package/src/main/types/typedefs.d.ts +2 -0
  49. package/src/main/typescript/api/{Jsf.ts → faces.ts} +14 -10
  50. package/src/main/typescript/api/jsf.ts +30 -0
  51. package/src/main/typescript/impl/AjaxImpl.ts +17 -15
  52. package/src/main/typescript/impl/PushImpl.ts +3 -3
  53. package/src/main/typescript/impl/core/Const.ts +52 -14
  54. package/src/main/typescript/impl/i18n/Messages.ts +1 -1
  55. package/src/main/typescript/impl/util/Assertions.ts +1 -1
  56. package/src/main/typescript/impl/util/ExtDomQuery.ts +32 -21
  57. package/src/main/typescript/impl/xhrCore/EventData.ts +2 -1
  58. package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +1 -1
  59. package/src/main/typescript/impl/xhrCore/Response.ts +2 -2
  60. package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +4 -2
  61. package/src/main/typescript/impl/xhrCore/XhrFormData.ts +2 -2
  62. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +4 -5
  63. package/src/main/typescript/myfaces/OamSubmit.ts +0 -1
  64. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +58 -27
  65. package/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.ts +4 -4
  66. package/src/main/typescript/test/impl/ImplTest.spec.ts +12 -12
  67. package/src/main/typescript/test/impl/ImplTest_23.spec.ts +134 -0
  68. package/src/main/typescript/test/impl/SeparatorCharsTest.spec.ts +6 -3
  69. package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +1 -1
  70. package/src/main/typescript/test/xhrCore/EventTests.spec.ts +7 -7
  71. package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +5 -5
  72. package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +22 -22
  73. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +11 -11
  74. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +26 -26
  75. package/src/main/typescript/test/xhrCore/ShadowDomTest.spec.ts +3 -5
  76. package/src/main/typescript/test/xhrCore/WebsocketTest.ts +8 -8
  77. package/src/main/typescript/tsconfig-typedoc.json +1 -1
  78. package/src/test/resources/jsf-development.js +1 -1
  79. package/target/api/Jsf.js +16 -244
  80. package/target/api/Jsf.js.map +1 -1
  81. package/target/api/faces.js +265 -0
  82. package/target/api/faces.js.map +1 -0
  83. package/target/impl/AjaxImpl.js +14 -13
  84. package/target/impl/AjaxImpl.js.map +1 -1
  85. package/target/impl/PushImpl.js +3 -3
  86. package/target/impl/PushImpl.js.map +1 -1
  87. package/target/impl/core/Const.js +51 -14
  88. package/target/impl/core/Const.js.map +1 -1
  89. package/target/impl/i18n/Messages.js +1 -1
  90. package/target/impl/i18n/Messages.js.map +1 -1
  91. package/target/impl/util/Assertions.js +1 -1
  92. package/target/impl/util/Assertions.js.map +1 -1
  93. package/target/impl/util/ExtDomQuery.js +27 -16
  94. package/target/impl/util/ExtDomQuery.js.map +1 -1
  95. package/target/impl/xhrCore/EventData.js +2 -1
  96. package/target/impl/xhrCore/EventData.js.map +1 -1
  97. package/target/impl/xhrCore/RequestDataResolver.js +1 -1
  98. package/target/impl/xhrCore/Response.js +2 -2
  99. package/target/impl/xhrCore/ResponseProcessor.js +10 -10
  100. package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
  101. package/target/impl/xhrCore/XhrFormData.js +2 -2
  102. package/target/impl/xhrCore/XhrRequest.js +4 -3
  103. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  104. package/target/myfaces/OamSubmit.js +0 -1
  105. package/target/myfaces/OamSubmit.js.map +1 -1
  106. package/target/test/frameworkBase/_ext/shared/StandardInits.js +63 -25
  107. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
  108. package/target/test/frameworkBase/_ext/shared/XmlResponses.js +4 -4
  109. package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
  110. package/target/test/impl/ImplTest.spec.js +53 -12
  111. package/target/test/impl/ImplTest.spec.js.map +1 -1
  112. package/target/test/impl/ImplTest_23.spec.js +165 -0
  113. package/target/test/impl/ImplTest_23.spec.js.map +1 -0
  114. package/target/test/impl/ImplTest_23.spec_.js +165 -0
  115. package/target/test/impl/ImplTest_23.spec_.js.map +1 -0
  116. package/target/test/impl/SeparatorCharsTest.spec.js +6 -2
  117. package/target/test/impl/SeparatorCharsTest.spec.js.map +1 -1
  118. package/target/test/queue/AsynchronousQueueTest.spec.js +1 -1
  119. package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
  120. package/target/test/xhrCore/EventTests.spec.js +6 -6
  121. package/target/test/xhrCore/EventTests.spec.js.map +1 -1
  122. package/target/test/xhrCore/FileUploadTest.spec.js +4 -4
  123. package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
  124. package/target/test/xhrCore/RequestParamsTest.spec.js +22 -22
  125. package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
  126. package/target/test/xhrCore/RequestTest.spec.js +10 -10
  127. package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
  128. package/target/test/xhrCore/ResponseTest.spec.js +21 -21
  129. package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
  130. package/target/test/xhrCore/ShadowDomTest.spec.js +2 -3
  131. package/target/test/xhrCore/ShadowDomTest.spec.js.map +1 -1
  132. package/target/test/xhrCore/WebsocketTest.js +7 -7
  133. package/target/test/xhrCore/WebsocketTest.js.map +1 -1
  134. package/webpack.config.js +7 -4
  135. package/webpack.config.js.map +1 -1
  136. package/webpack.config.ts +7 -4
  137. package/integrationdeploy.cmd +0 -4
  138. package/integrationsdeploy.sh +0 -5
@@ -11,8 +11,8 @@
11
11
  <div class="tsd-page-title">
12
12
  <ul class="tsd-breadcrumb">
13
13
  <li><a href="../modules.html">jsf.js_next_gen</a></li>
14
- <li><a href="../modules/jsf.html">jsf</a></li>
15
- <li><a href="jsf.implversion.html">implversion</a></li></ul>
14
+ <li><a href="../modules/faces.html">faces</a></li>
15
+ <li><a href="faces.implversion.html">implversion</a></li></ul>
16
16
  <h1>Variable implversion</h1></div>
17
17
  <div class="tsd-signature">implversion<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 0</span></div>
18
18
  <div class="tsd-comment tsd-typography"><p>Implementation version as specified within the jsf specification.</p>
@@ -38,20 +38,20 @@ and reset by moving to a new spec release number
38
38
  <ul>
39
39
  <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
40
40
  <ul>
41
- <li class="current tsd-kind-namespace"><a href="../modules/jsf.html">jsf</a>
41
+ <li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
42
42
  <ul>
43
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.ajax.html">ajax</a></li>
44
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.push.html">push</a></li>
45
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.util.html">util</a></li></ul></li>
43
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
44
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
45
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
46
46
  <li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
47
47
  <nav class="tsd-navigation secondary menu-sticky">
48
48
  <ul>
49
- <li class="current tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.implversion.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>implversion</a></li>
50
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.separatorchar.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>separatorchar</a></li>
51
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.specversion.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>specversion</a></li>
52
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
53
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getProjectStage.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>get<wbr/>Project<wbr/>Stage</a></li>
54
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getViewState.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>get<wbr/>View<wbr/>State</a></li></ul></nav></div></div>
49
+ <li class="current tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.implversion.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>implversion</a></li>
50
+ <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.separatorchar.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>separatorchar</a></li>
51
+ <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.specversion.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>specversion</a></li>
52
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
53
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getProjectStage.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>get<wbr/>Project<wbr/>Stage</a></li>
54
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getViewState.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>get<wbr/>View<wbr/>State</a></li></ul></nav></div></div>
55
55
  <div class="container tsd-generator">
56
56
  <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
57
57
  <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -11,8 +11,8 @@
11
11
  <div class="tsd-page-title">
12
12
  <ul class="tsd-breadcrumb">
13
13
  <li><a href="../modules.html">jsf.js_next_gen</a></li>
14
- <li><a href="../modules/jsf.html">jsf</a></li>
15
- <li><a href="jsf.separatorchar.html">separatorchar</a></li></ul>
14
+ <li><a href="../modules/faces.html">faces</a></li>
15
+ <li><a href="faces.separatorchar.html">separatorchar</a></li></ul>
16
16
  <h1>Variable separatorchar</h1></div>
17
17
  <div class="tsd-signature">separatorchar<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> = ...</span></div>
18
18
  <div class="tsd-comment tsd-typography"><p>SeparatorChar as defined by UINamingContainer.getNamingContainerSeparatorChar()</p>
@@ -35,20 +35,20 @@
35
35
  <ul>
36
36
  <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
37
37
  <ul>
38
- <li class="current tsd-kind-namespace"><a href="../modules/jsf.html">jsf</a>
38
+ <li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
39
39
  <ul>
40
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.ajax.html">ajax</a></li>
41
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.push.html">push</a></li>
42
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.util.html">util</a></li></ul></li>
40
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
41
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
42
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
43
43
  <li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
44
44
  <nav class="tsd-navigation secondary menu-sticky">
45
45
  <ul>
46
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.implversion.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>implversion</a></li>
47
- <li class="current tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.separatorchar.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>separatorchar</a></li>
48
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.specversion.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>specversion</a></li>
49
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
50
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getProjectStage.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>get<wbr/>Project<wbr/>Stage</a></li>
51
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getViewState.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>get<wbr/>View<wbr/>State</a></li></ul></nav></div></div>
46
+ <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.implversion.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>implversion</a></li>
47
+ <li class="current tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.separatorchar.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>separatorchar</a></li>
48
+ <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.specversion.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>specversion</a></li>
49
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
50
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getProjectStage.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>get<wbr/>Project<wbr/>Stage</a></li>
51
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getViewState.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>get<wbr/>View<wbr/>State</a></li></ul></nav></div></div>
52
52
  <div class="container tsd-generator">
53
53
  <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
54
54
  <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -11,10 +11,10 @@
11
11
  <div class="tsd-page-title">
12
12
  <ul class="tsd-breadcrumb">
13
13
  <li><a href="../modules.html">jsf.js_next_gen</a></li>
14
- <li><a href="../modules/jsf.html">jsf</a></li>
15
- <li><a href="jsf.specversion.html">specversion</a></li></ul>
14
+ <li><a href="../modules/faces.html">faces</a></li>
15
+ <li><a href="faces.specversion.html">specversion</a></li></ul>
16
16
  <h1>Variable specversion</h1></div>
17
- <div class="tsd-signature">specversion<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 220000</span></div></div>
17
+ <div class="tsd-signature">specversion<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 400000</span></div></div>
18
18
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
19
19
  <div class="tsd-navigation settings">
20
20
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
@@ -33,20 +33,20 @@
33
33
  <ul>
34
34
  <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
35
35
  <ul>
36
- <li class="current tsd-kind-namespace"><a href="../modules/jsf.html">jsf</a>
36
+ <li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
37
37
  <ul>
38
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.ajax.html">ajax</a></li>
39
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.push.html">push</a></li>
40
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.util.html">util</a></li></ul></li>
38
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
39
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
40
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
41
41
  <li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
42
42
  <nav class="tsd-navigation secondary menu-sticky">
43
43
  <ul>
44
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.implversion.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>implversion</a></li>
45
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.separatorchar.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>separatorchar</a></li>
46
- <li class="current tsd-kind-variable tsd-parent-kind-namespace"><a href="jsf.specversion.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>specversion</a></li>
47
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
48
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getProjectStage.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>get<wbr/>Project<wbr/>Stage</a></li>
49
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/jsf.getViewState.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>get<wbr/>View<wbr/>State</a></li></ul></nav></div></div>
44
+ <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.implversion.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>implversion</a></li>
45
+ <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.separatorchar.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>separatorchar</a></li>
46
+ <li class="current tsd-kind-variable tsd-parent-kind-namespace"><a href="faces.specversion.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>specversion</a></li>
47
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getClientWindow.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>get<wbr/>Client<wbr/>Window</a></li>
48
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getProjectStage.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>get<wbr/>Project<wbr/>Stage</a></li>
49
+ <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/faces.getViewState.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>get<wbr/>View<wbr/>State</a></li></ul></nav></div></div>
50
50
  <div class="container tsd-generator">
51
51
  <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
52
52
  <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -35,11 +35,11 @@
35
35
  <ul>
36
36
  <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
37
37
  <ul>
38
- <li class="tsd-kind-namespace"><a href="../modules/jsf.html">jsf</a>
38
+ <li class="tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
39
39
  <ul>
40
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.ajax.html">ajax</a></li>
41
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.push.html">push</a></li>
42
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/jsf.util.html">util</a></li></ul></li>
40
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
41
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
42
+ <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
43
43
  <li class="current tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
44
44
  <nav class="tsd-navigation secondary menu-sticky">
45
45
  <ul>