jsf.js_next_gen 4.0.2-beta.1 → 4.0.2-beta.10

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 (106) hide show
  1. package/dist/docs/assets/main.js +3 -3
  2. package/dist/docs/assets/search.js +1 -1
  3. package/dist/docs/assets/style.css +450 -362
  4. package/dist/docs/functions/faces.ajax.addOnError.html +41 -32
  5. package/dist/docs/functions/faces.ajax.addOnEvent.html +41 -32
  6. package/dist/docs/functions/faces.ajax.request.html +41 -32
  7. package/dist/docs/functions/faces.ajax.response.html +42 -32
  8. package/dist/docs/functions/faces.getClientWindow.html +32 -34
  9. package/dist/docs/functions/faces.getProjectStage.html +31 -34
  10. package/dist/docs/functions/faces.getViewState.html +33 -35
  11. package/dist/docs/functions/faces.push.close.html +40 -31
  12. package/dist/docs/functions/faces.push.init.html +62 -45
  13. package/dist/docs/functions/faces.push.open.html +40 -31
  14. package/dist/docs/functions/faces.util.chain.html +39 -31
  15. package/dist/docs/functions/myfaces.ab.html +40 -39
  16. package/dist/docs/functions/myfaces.onDomReady.html +25 -29
  17. package/dist/docs/index.html +45 -72
  18. package/dist/docs/modules/faces.ajax.html +36 -29
  19. package/dist/docs/modules/faces.html +35 -38
  20. package/dist/docs/modules/faces.push.html +34 -27
  21. package/dist/docs/modules/faces.util.html +30 -23
  22. package/dist/docs/modules/myfaces.html +21 -27
  23. package/dist/docs/modules.html +15 -23
  24. package/dist/docs/variables/faces.contextpath.html +28 -30
  25. package/dist/docs/variables/faces.implversion.html +29 -31
  26. package/dist/docs/variables/faces.separatorchar.html +28 -30
  27. package/dist/docs/variables/faces.specversion.html +29 -31
  28. package/dist/docs/variables/myfaces.oam.html +21 -26
  29. package/dist/window/faces-development.js +166 -68
  30. package/dist/window/faces-development.js.map +1 -1
  31. package/dist/window/faces.js +1 -1
  32. package/dist/window/faces.js.map +1 -1
  33. package/dist/window/jsf-development.js +166 -68
  34. package/dist/window/jsf-development.js.map +1 -1
  35. package/dist/window/jsf.js +1 -1
  36. package/dist/window/jsf.js.map +1 -1
  37. package/faulty_response.html +167 -0
  38. package/package.json +17 -18
  39. package/src/main/typescript/impl/AjaxImpl.ts +22 -19
  40. package/src/main/typescript/impl/PushImpl.ts +1 -1
  41. package/src/main/typescript/impl/util/FileUtils.ts +3 -2
  42. package/src/main/typescript/impl/util/HiddenInputBuilder.ts +2 -2
  43. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +28 -8
  44. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +50 -0
  45. package/src/main/typescript/test/impl/ImplTest.spec.ts +85 -0
  46. package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +299 -1
  47. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +245 -1
  48. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +3 -3
  49. package/target/api/_api.js +2 -2
  50. package/target/api/_api.js.map +1 -1
  51. package/target/classes/com/example/jsfs_js_ts/DecoratedFacesJS.class +0 -0
  52. package/target/classes/com/example/jsfs_js_ts/DecoratingResourceHandlerWrapper.class +0 -0
  53. package/target/classes/com/example/jsfs_js_ts/FacesJSMapFileResourceWrapper.class +0 -0
  54. package/target/classes/com/example/jsfs_js_ts/FacesJSMappingDecorator.class +0 -0
  55. package/target/impl/AjaxImpl.js +22 -20
  56. package/target/impl/AjaxImpl.js.map +1 -1
  57. package/target/impl/PushImpl.js +4 -4
  58. package/target/impl/PushImpl.js.map +1 -1
  59. package/target/impl/util/Assertions.js +1 -1
  60. package/target/impl/util/Assertions.js.map +1 -1
  61. package/target/impl/util/FileUtils.js +3 -2
  62. package/target/impl/util/FileUtils.js.map +1 -1
  63. package/target/impl/util/HiddenInputBuilder.js +2 -2
  64. package/target/impl/util/HiddenInputBuilder.js.map +1 -1
  65. package/target/impl/util/Lang.js +1 -1
  66. package/target/impl/util/Lang.js.map +1 -1
  67. package/target/impl/xhrCore/ErrorData.js +1 -1
  68. package/target/impl/xhrCore/ErrorData.js.map +1 -1
  69. package/target/impl/xhrCore/Response.js +1 -1
  70. package/target/impl/xhrCore/Response.js.map +1 -1
  71. package/target/impl/xhrCore/XhrRequest.js +25 -7
  72. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  73. package/target/myfaces/OamSubmit.js +1 -1
  74. package/target/myfaces/OamSubmit.js.map +1 -1
  75. package/target/test/frameworkBase/_ext/shared/StandardInits.js +47 -1
  76. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
  77. package/target/test/frameworkBase/_ext/shared/XmlResponses.js +1 -1
  78. package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
  79. package/target/test/impl/ImplTest.spec.js +64 -0
  80. package/target/test/impl/ImplTest.spec.js.map +1 -1
  81. package/target/test/xhrCore/RequestParamsTest.spec.js +283 -0
  82. package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
  83. package/target/test/xhrCore/RequestTest.spec.js +212 -0
  84. package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
  85. package/target/test/xhrCore/ResponseTest.spec.js +3 -3
  86. package/target/test-classes/.gz +0 -0
  87. package/target/test-classes/com/example/jsfs_js_ts/JsfsJsTsApplicationTests.class +0 -0
  88. package/target/test-classes/fileuploadtest.html +24 -0
  89. package/target/test-classes/jsf-development.js +3559 -0
  90. package/target/test-classes/jsf-development.js.br +0 -0
  91. package/target/test-classes/jsf-development.js.gz +0 -0
  92. package/target/test-classes/jsf-development.js.map +1 -0
  93. package/target/test-classes/jsf.js +3 -0
  94. package/target/test-classes/jsf.js.br +0 -0
  95. package/target/test-classes/jsf.js.gz +0 -0
  96. package/webpack.config.ts +1 -23
  97. package/dist/window/faces-development.js.br +0 -0
  98. package/dist/window/faces-development.js.gz +0 -0
  99. package/dist/window/faces.js.br +0 -0
  100. package/dist/window/faces.js.gz +0 -0
  101. package/dist/window/jsf-development.js.br +0 -0
  102. package/dist/window/jsf-development.js.gz +0 -0
  103. package/dist/window/jsf.js.br +0 -0
  104. package/dist/window/jsf.js.gz +0 -0
  105. package/webpack.config.js +0 -71
  106. package/webpack.config.js.map +0 -1
@@ -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>response | 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>response | 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 defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-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>
@@ -9,7 +9,7 @@
9
9
  <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
- <div class="col-8 col-content">
12
+ <div class="col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
15
  <li><a href="../modules.html">jsf.js_next_gen</a></li>
@@ -18,8 +18,8 @@
18
18
  <li><a href="faces.ajax.response.html">response</a></li></ul>
19
19
  <h1>Function response</h1></div>
20
20
  <section class="tsd-panel">
21
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
22
- <li class="tsd-signature tsd-anchor-link" id="response">response<span class="tsd-signature-symbol">(</span>request<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">XMLHttpRequest</span>, context<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="#response" 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
+ <ul class="tsd-signatures">
22
+ <li class="tsd-signature tsd-anchor-link" id="response"><span class="tsd-kind-call-signature">response</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">request</span>, <span class="tsd-kind-parameter">context</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="#response" 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>
23
23
  <li class="tsd-description">
24
24
  <div class="tsd-comment tsd-typography"><p>response handler</p>
25
25
  </div>
@@ -27,44 +27,54 @@
27
27
  <h4 class="tsd-parameters-title">Parameters</h4>
28
28
  <ul class="tsd-parameter-list">
29
29
  <li>
30
- <h5>request: <span class="tsd-signature-type">XMLHttpRequest</span></h5>
30
+ <h5><span class="tsd-kind-parameter">request</span>: <span class="tsd-signature-type ">XMLHttpRequest</span></h5>
31
31
  <div class="tsd-comment tsd-typography"><p>the request object having triggered this response</p>
32
- </div></li>
32
+ </div>
33
+ <div class="tsd-comment tsd-typography"></div></li>
33
34
  <li>
34
- <h5><code class="tsd-tag ts-flagOptional">Optional</code> context: <span class="tsd-signature-type">Context</span></h5>
35
+ <h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">context</span>: <span class="tsd-signature-type ">Context</span></h5>
35
36
  <div class="tsd-comment tsd-typography"><p>the request context</p>
36
- </div></li></ul></div>
37
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></div>
38
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
37
+ </div>
38
+ <div class="tsd-comment tsd-typography"></div></li></ul></div>
39
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
40
+ <div class="tsd-comment tsd-typography"></div></li></ul></section></div>
41
+ <div class="col-sidebar">
42
+ <div class="page-menu">
39
43
  <div class="tsd-navigation settings">
40
44
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
41
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
45
+ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)" id="icon-chevronDown"></path></svg>Settings</h3></summary>
42
46
  <div class="tsd-accordion-details">
43
47
  <div class="tsd-filter-visibility">
44
48
  <h4 class="uppercase">Member Visibility</h4><form>
45
49
  <ul id="tsd-filter-options">
46
50
  <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></form></div>
47
51
  <div class="tsd-theme-toggle">
48
- <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
49
- <nav class="tsd-navigation primary">
50
- <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
51
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
52
+ <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
53
+ <div class="site-menu">
54
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>jsf.js_<wbr/>next_<wbr/>gen</span></a>
55
+ <ul class="tsd-small-nested-navigation">
56
+ <li>
57
+ <details class="tsd-index-accordion" open data-key="faces"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg><a href="../modules/faces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>faces</span></a></summary>
58
+ <div class="tsd-accordion-details">
59
+ <ul class="tsd-nested-navigation">
60
+ <li>
61
+ <details class="tsd-index-accordion" open data-key="faces.ajax"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg><a href="../modules/faces.ajax.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>ajax</span></a></summary>
52
62
  <div class="tsd-accordion-details">
53
- <ul>
54
- <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
55
- <ul>
56
- <li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
57
- <ul>
58
- <li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
59
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
60
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
61
- <li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
62
- <nav class="tsd-navigation secondary menu-sticky">
63
- <ul>
64
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.addOnError.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>add<wbr/>On<wbr/>Error</a></li>
65
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.addOnEvent.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>add<wbr/>On<wbr/>Event</a></li>
66
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.request.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>request</a></li>
67
- <li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="faces.ajax.response.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>response</a></li></ul></nav></div></div>
68
- <div class="container tsd-generator">
63
+ <ul class="tsd-nested-navigation">
64
+ <li><a href="faces.ajax.addOnError.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-64"><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"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g></svg><span>add<wbr/>On<wbr/>Error</span></a></li>
65
+ <li><a href="faces.ajax.addOnEvent.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>add<wbr/>On<wbr/>Event</span></a></li>
66
+ <li><a href="faces.ajax.request.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>request</span></a></li>
67
+ <li><a href="faces.ajax.response.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>response</span></a></li></ul></div></details></li>
68
+ <li><a href="../modules/faces.push.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>push</span></a></li>
69
+ <li><a href="../modules/faces.util.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>util</span></a></li>
70
+ <li><a href="../variables/faces.contextpath.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-32"><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"></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)"></path></g></svg><span>contextpath</span></a></li>
71
+ <li><a href="../variables/faces.implversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>implversion</span></a></li>
72
+ <li><a href="../variables/faces.separatorchar.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>separatorchar</span></a></li>
73
+ <li><a href="../variables/faces.specversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>specversion</span></a></li>
74
+ <li><a href="faces.getClientWindow.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>Client<wbr/>Window</span></a></li>
75
+ <li><a href="faces.getProjectStage.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>Project<wbr/>Stage</span></a></li>
76
+ <li><a href="faces.getViewState.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>View<wbr/>State</span></a></li></ul></div></details></li>
77
+ <li><a href="../modules/myfaces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>myfaces</span></a></li></ul></nav></div></div></div>
78
+ <div class="tsd-generator">
69
79
  <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
70
- <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
80
+ <div class="overlay"></div></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>getClientWindow | 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>getClientWindow | 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 defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-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>
@@ -9,7 +9,7 @@
9
9
  <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
- <div class="col-8 col-content">
12
+ <div class="col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
15
  <li><a href="../modules.html">jsf.js_next_gen</a></li>
@@ -17,52 +17,50 @@
17
17
  <li><a href="faces.getClientWindow.html">getClientWindow</a></li></ul>
18
18
  <h1>Function getClientWindow</h1></div>
19
19
  <section class="tsd-panel">
20
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
21
- <li class="tsd-signature tsd-anchor-link" id="getClientWindow">get<wbr/>Client<wbr/>Window<span class="tsd-signature-symbol">(</span>rootNode<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getClientWindow" 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>
20
+ <ul class="tsd-signatures">
21
+ <li class="tsd-signature tsd-anchor-link" id="getClientWindow"><span class="tsd-kind-call-signature">get<wbr/>Client<wbr/>Window</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">rootNode</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getClientWindow" 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>returns the window identifier for the given node / window</p>
24
-
25
- <h3>Returns</h3><p>the window identifier or null if none is found</p>
26
24
  </div>
27
25
  <div class="tsd-parameters">
28
26
  <h4 class="tsd-parameters-title">Parameters</h4>
29
27
  <ul class="tsd-parameter-list">
30
28
  <li>
31
- <h5><code class="tsd-tag ts-flagOptional">Optional</code> rootNode: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></h5></li></ul></div>
32
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4></li></ul></section></div>
33
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
29
+ <h5><code class="tsd-tag ts-flagOptional">Optional</code> <span class="tsd-kind-parameter">rootNode</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type ">Element</span></h5>
30
+ <div class="tsd-comment tsd-typography"></div></li></ul></div>
31
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><p>the window identifier or null if none is found</p>
32
+
33
+ <div class="tsd-comment tsd-typography"></div></li></ul></section></div>
34
+ <div class="col-sidebar">
35
+ <div class="page-menu">
34
36
  <div class="tsd-navigation settings">
35
37
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
36
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
38
+ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)" id="icon-chevronDown"></path></svg>Settings</h3></summary>
37
39
  <div class="tsd-accordion-details">
38
40
  <div class="tsd-filter-visibility">
39
41
  <h4 class="uppercase">Member Visibility</h4><form>
40
42
  <ul id="tsd-filter-options">
41
43
  <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></form></div>
42
44
  <div class="tsd-theme-toggle">
43
- <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
44
- <nav class="tsd-navigation primary">
45
- <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
46
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
45
+ <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
46
+ <div class="site-menu">
47
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>jsf.js_<wbr/>next_<wbr/>gen</span></a>
48
+ <ul class="tsd-small-nested-navigation">
49
+ <li>
50
+ <details class="tsd-index-accordion" open data-key="faces"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg><a href="../modules/faces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>faces</span></a></summary>
47
51
  <div class="tsd-accordion-details">
48
- <ul>
49
- <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
50
- <ul>
51
- <li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
52
- <ul>
53
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
54
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
55
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
56
- <li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
57
- <nav class="tsd-navigation secondary menu-sticky">
58
- <ul>
59
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.contextpath.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>contextpath</a></li>
60
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.implversion.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>implversion</a></li>
61
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/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>
62
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/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>
63
- <li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
64
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
65
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
66
- <div class="container tsd-generator">
52
+ <ul class="tsd-nested-navigation">
53
+ <li><a href="../modules/faces.ajax.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>ajax</span></a></li>
54
+ <li><a href="../modules/faces.push.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>push</span></a></li>
55
+ <li><a href="../modules/faces.util.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>util</span></a></li>
56
+ <li><a href="../variables/faces.contextpath.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-32"><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"></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)"></path></g></svg><span>contextpath</span></a></li>
57
+ <li><a href="../variables/faces.implversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>implversion</span></a></li>
58
+ <li><a href="../variables/faces.separatorchar.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>separatorchar</span></a></li>
59
+ <li><a href="../variables/faces.specversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>specversion</span></a></li>
60
+ <li><a href="faces.getClientWindow.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-64"><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"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g></svg><span>get<wbr/>Client<wbr/>Window</span></a></li>
61
+ <li><a href="faces.getProjectStage.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>Project<wbr/>Stage</span></a></li>
62
+ <li><a href="faces.getViewState.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>View<wbr/>State</span></a></li></ul></div></details></li>
63
+ <li><a href="../modules/myfaces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>myfaces</span></a></li></ul></nav></div></div></div>
64
+ <div class="tsd-generator">
67
65
  <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
68
- <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
66
+ <div class="overlay"></div></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>getProjectStage | 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>getProjectStage | 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 defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-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>
@@ -9,7 +9,7 @@
9
9
  <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
- <div class="col-8 col-content">
12
+ <div class="col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
15
  <li><a href="../modules.html">jsf.js_next_gen</a></li>
@@ -17,8 +17,8 @@
17
17
  <li><a href="faces.getProjectStage.html">getProjectStage</a></li></ul>
18
18
  <h1>Function getProjectStage</h1></div>
19
19
  <section class="tsd-panel">
20
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
21
- <li class="tsd-signature tsd-anchor-link" id="getProjectStage">get<wbr/>Project<wbr/>Stage<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getProjectStage" 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>
20
+ <ul class="tsd-signatures">
21
+ <li class="tsd-signature tsd-anchor-link" id="getProjectStage"><span class="tsd-kind-call-signature">get<wbr/>Project<wbr/>Stage</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getProjectStage" 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>This method is responsible for the return of a given project stage as defined
24
24
  by the jsf specification.</p>
@@ -29,44 +29,41 @@ Valid return values are:
29
29
  <li>&quot;Development&quot;</li>
30
30
  <li>&quot;SystemTest&quot;</li>
31
31
  <li>&quot;UnitTest&quot;</li>
32
- </li>
33
- <h3>Returns</h3><p>the current project state emitted by the server side method:
32
+ </li></div>
33
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><p>the current project state emitted by the server side method:
34
34
  <i>jakarta.faces.application.Application.getProjectStage()</i></p>
35
- </div>
36
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4></li></ul></section></div>
37
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
35
+
36
+ <div class="tsd-comment tsd-typography"></div></li></ul></section></div>
37
+ <div class="col-sidebar">
38
+ <div class="page-menu">
38
39
  <div class="tsd-navigation settings">
39
40
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
40
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
41
+ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)" id="icon-chevronDown"></path></svg>Settings</h3></summary>
41
42
  <div class="tsd-accordion-details">
42
43
  <div class="tsd-filter-visibility">
43
44
  <h4 class="uppercase">Member Visibility</h4><form>
44
45
  <ul id="tsd-filter-options">
45
46
  <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></form></div>
46
47
  <div class="tsd-theme-toggle">
47
- <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
48
- <nav class="tsd-navigation primary">
49
- <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
50
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
48
+ <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
49
+ <div class="site-menu">
50
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>jsf.js_<wbr/>next_<wbr/>gen</span></a>
51
+ <ul class="tsd-small-nested-navigation">
52
+ <li>
53
+ <details class="tsd-index-accordion" open data-key="faces"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg><a href="../modules/faces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>faces</span></a></summary>
51
54
  <div class="tsd-accordion-details">
52
- <ul>
53
- <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
54
- <ul>
55
- <li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
56
- <ul>
57
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
58
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
59
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
60
- <li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
61
- <nav class="tsd-navigation secondary menu-sticky">
62
- <ul>
63
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.contextpath.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>contextpath</a></li>
64
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.implversion.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>implversion</a></li>
65
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/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>
66
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/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>
67
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
68
- <li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
69
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
70
- <div class="container tsd-generator">
55
+ <ul class="tsd-nested-navigation">
56
+ <li><a href="../modules/faces.ajax.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>ajax</span></a></li>
57
+ <li><a href="../modules/faces.push.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>push</span></a></li>
58
+ <li><a href="../modules/faces.util.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>util</span></a></li>
59
+ <li><a href="../variables/faces.contextpath.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-32"><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"></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)"></path></g></svg><span>contextpath</span></a></li>
60
+ <li><a href="../variables/faces.implversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>implversion</span></a></li>
61
+ <li><a href="../variables/faces.separatorchar.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>separatorchar</span></a></li>
62
+ <li><a href="../variables/faces.specversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>specversion</span></a></li>
63
+ <li><a href="faces.getClientWindow.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-64"><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"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g></svg><span>get<wbr/>Client<wbr/>Window</span></a></li>
64
+ <li><a href="faces.getProjectStage.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>Project<wbr/>Stage</span></a></li>
65
+ <li><a href="faces.getViewState.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>View<wbr/>State</span></a></li></ul></div></details></li>
66
+ <li><a href="../modules/myfaces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>myfaces</span></a></li></ul></nav></div></div></div>
67
+ <div class="tsd-generator">
71
68
  <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
72
- <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
69
+ <div class="overlay"></div></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>getViewState | 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>getViewState | 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 defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-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>
@@ -9,7 +9,7 @@
9
9
  <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">jsf.js_next_gen</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
- <div class="col-8 col-content">
12
+ <div class="col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
15
  <li><a href="../modules.html">jsf.js_next_gen</a></li>
@@ -17,55 +17,53 @@
17
17
  <li><a href="faces.getViewState.html">getViewState</a></li></ul>
18
18
  <h1>Function getViewState</h1></div>
19
19
  <section class="tsd-panel">
20
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-namespace">
21
- <li class="tsd-signature tsd-anchor-link" id="getViewState">get<wbr/>View<wbr/>State<span class="tsd-signature-symbol">(</span>formElement<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getViewState" 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>
20
+ <ul class="tsd-signatures">
21
+ <li class="tsd-signature tsd-anchor-link" id="getViewState"><span class="tsd-kind-call-signature">get<wbr/>View<wbr/>State</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">formElement</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getViewState" 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>collect and encode data for a given form element (must be of type form)
24
24
  find the jakarta.faces.ViewState element and encode its value as well!
25
25
  return a concatenated string of the encoded values!</p>
26
-
27
- <h3>Throws</h3><p>an exception in case of the given element not being of type form!
28
- <a href="https://issues.apache.org/jira/browse/MYFACES-2110">https://issues.apache.org/jira/browse/MYFACES-2110</a></p>
29
26
  </div>
30
27
  <div class="tsd-parameters">
31
28
  <h4 class="tsd-parameters-title">Parameters</h4>
32
29
  <ul class="tsd-parameter-list">
33
30
  <li>
34
- <h5>formElement: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></h5></li></ul></div>
35
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4></li></ul></section></div>
36
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
31
+ <h5><span class="tsd-kind-parameter">formElement</span>: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type ">Element</span></h5></li></ul></div>
32
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
33
+ <div class="tsd-comment tsd-typography">
34
+ <h4>Throws</h4><p>an exception in case of the given element not being of type form!
35
+ <a href="https://issues.apache.org/jira/browse/MYFACES-2110">https://issues.apache.org/jira/browse/MYFACES-2110</a></p>
36
+ </div></li></ul></section></div>
37
+ <div class="col-sidebar">
38
+ <div class="page-menu">
37
39
  <div class="tsd-navigation settings">
38
40
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
39
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
41
+ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)" id="icon-chevronDown"></path></svg>Settings</h3></summary>
40
42
  <div class="tsd-accordion-details">
41
43
  <div class="tsd-filter-visibility">
42
44
  <h4 class="uppercase">Member Visibility</h4><form>
43
45
  <ul id="tsd-filter-options">
44
46
  <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></form></div>
45
47
  <div class="tsd-theme-toggle">
46
- <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
47
- <nav class="tsd-navigation primary">
48
- <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
49
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
48
+ <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
49
+ <div class="site-menu">
50
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>jsf.js_<wbr/>next_<wbr/>gen</span></a>
51
+ <ul class="tsd-small-nested-navigation">
52
+ <li>
53
+ <details class="tsd-index-accordion" open data-key="faces"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg><a href="../modules/faces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>faces</span></a></summary>
50
54
  <div class="tsd-accordion-details">
51
- <ul>
52
- <li class="current"><a href="../modules.html">jsf.js_<wbr/>next_<wbr/>gen</a>
53
- <ul>
54
- <li class="current tsd-kind-namespace"><a href="../modules/faces.html">faces</a>
55
- <ul>
56
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.ajax.html">ajax</a></li>
57
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.push.html">push</a></li>
58
- <li class="tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/faces.util.html">util</a></li></ul></li>
59
- <li class="tsd-kind-namespace"><a href="../modules/myfaces.html">myfaces</a></li></ul></li></ul></div></details></nav>
60
- <nav class="tsd-navigation secondary menu-sticky">
61
- <ul>
62
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.contextpath.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>contextpath</a></li>
63
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/faces.implversion.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>implversion</a></li>
64
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/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>
65
- <li class="tsd-kind-variable tsd-parent-kind-namespace"><a href="../variables/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>
66
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
67
- <li class="tsd-kind-function tsd-parent-kind-namespace"><a href="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>
68
- <li class="current tsd-kind-function tsd-parent-kind-namespace"><a href="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>
69
- <div class="container tsd-generator">
55
+ <ul class="tsd-nested-navigation">
56
+ <li><a href="../modules/faces.ajax.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>ajax</span></a></li>
57
+ <li><a href="../modules/faces.push.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>push</span></a></li>
58
+ <li><a href="../modules/faces.util.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>util</span></a></li>
59
+ <li><a href="../variables/faces.contextpath.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-32"><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"></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)"></path></g></svg><span>contextpath</span></a></li>
60
+ <li><a href="../variables/faces.implversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>implversion</span></a></li>
61
+ <li><a href="../variables/faces.separatorchar.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>separatorchar</span></a></li>
62
+ <li><a href="../variables/faces.specversion.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-32"></use></svg><span>specversion</span></a></li>
63
+ <li><a href="faces.getClientWindow.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-64"><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"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g></svg><span>get<wbr/>Client<wbr/>Window</span></a></li>
64
+ <li><a href="faces.getProjectStage.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>Project<wbr/>Stage</span></a></li>
65
+ <li><a href="faces.getViewState.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-64"></use></svg><span>get<wbr/>View<wbr/>State</span></a></li></ul></div></details></li>
66
+ <li><a href="../modules/myfaces.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-4"></use></svg><span>myfaces</span></a></li></ul></nav></div></div></div>
67
+ <div class="tsd-generator">
70
68
  <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
71
- <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
69
+ <div class="overlay"></div></body></html>