ovto 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/CHANGELOG.md +5 -0
  4. data/Gemfile +3 -2
  5. data/Gemfile.lock +21 -21
  6. data/README.md +2 -2
  7. data/book/SUMMARY.md +1 -1
  8. data/book/api/fetch.md +3 -3
  9. data/book/api/pure_component.md +27 -0
  10. data/book/guides/install.md +76 -0
  11. data/book/guides/tutorial.md +3 -3
  12. data/book/ovtologo.png +0 -0
  13. data/docs/api/Ovto.html +18 -18
  14. data/docs/api/Ovto/Actions.html +1 -1
  15. data/docs/api/Ovto/App.html +1 -1
  16. data/docs/api/Ovto/Component.html +18 -10
  17. data/docs/api/Ovto/Component/MoreThanOneNode.html +1 -1
  18. data/docs/api/Ovto/PureComponent.html +368 -0
  19. data/docs/api/Ovto/PureComponent/StateIsNotAvailable.html +124 -0
  20. data/docs/api/Ovto/Runtime.html +1 -1
  21. data/docs/api/Ovto/State.html +1 -1
  22. data/docs/api/Ovto/State/MissingValue.html +1 -1
  23. data/docs/api/Ovto/State/UnknownKey.html +1 -1
  24. data/docs/api/Ovto/WiredActions.html +1 -1
  25. data/docs/api/_index.html +26 -4
  26. data/docs/api/actions.html +8 -8
  27. data/docs/api/app.html +8 -8
  28. data/docs/api/class_list.html +1 -1
  29. data/docs/api/component.html +8 -8
  30. data/docs/api/fetch.html +11 -11
  31. data/docs/api/file.README.html +75 -79
  32. data/docs/api/index.html +75 -79
  33. data/docs/api/method_list.html +43 -19
  34. data/docs/api/pure_component.md +27 -0
  35. data/docs/api/state.html +8 -8
  36. data/docs/api/top-level-namespace.html +1 -1
  37. data/docs/gitbook/gitbook.js +2 -2
  38. data/docs/gitbook/theme.js +1 -1
  39. data/docs/guides/debugging.html +8 -8
  40. data/docs/guides/development.html +8 -8
  41. data/docs/guides/install.html +426 -0
  42. data/docs/guides/tutorial.html +74 -65
  43. data/docs/index.html +10 -16
  44. data/docs/ovtologo.png +0 -0
  45. data/docs/search_index.json +1 -1
  46. data/examples/sinatra/Gemfile.lock +2 -2
  47. data/examples/static/Gemfile.lock +6 -10
  48. data/lib/ovto.rb +1 -0
  49. data/lib/ovto/component.rb +25 -12
  50. data/lib/ovto/fetch.rb +1 -1
  51. data/lib/ovto/pure_component.rb +22 -0
  52. data/lib/ovto/version.rb +1 -1
  53. data/ovto.gemspec +1 -1
  54. metadata +21 -5
@@ -7,7 +7,7 @@
7
7
  <title>Getting Started · GitBook</title>
8
8
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
9
9
  <meta name="description" content="">
10
- <meta name="generator" content="GitBook 3.2.3">
10
+ <meta name="generator" content="GitBook 3.2.2">
11
11
 
12
12
 
13
13
 
@@ -57,6 +57,8 @@
57
57
  <link rel="shortcut icon" href="../gitbook/images/favicon.ico" type="image/x-icon">
58
58
 
59
59
 
60
+ <link rel="next" href="install.html" />
61
+
60
62
 
61
63
  <link rel="prev" href="../" />
62
64
 
@@ -100,12 +102,12 @@
100
102
 
101
103
  </li>
102
104
 
103
- <li class="chapter " data-level="1.2" data-path="../">
105
+ <li class="chapter active" data-level="1.2" data-path="tutorial.html">
104
106
 
105
- <a href="../">
107
+ <a href="tutorial.html">
106
108
 
107
109
 
108
- Introduction
110
+ Getting Started
109
111
 
110
112
  </a>
111
113
 
@@ -113,12 +115,12 @@
113
115
 
114
116
  </li>
115
117
 
116
- <li class="chapter active" data-level="1.3" data-path="tutorial.html">
118
+ <li class="chapter " data-level="1.3" data-path="install.html">
117
119
 
118
- <a href="tutorial.html">
120
+ <a href="install.html">
119
121
 
120
122
 
121
- Getting Started
123
+ Install
122
124
 
123
125
  </a>
124
126
 
@@ -304,50 +306,51 @@
304
306
  <p>This is a tutorial of making an Ovto app. We create a static app (.html + .js) here,
305
307
  but you can embed Ovto apps into a Rails or Sinatra app (See <code>./examples/*</code>).</p>
306
308
  <p>This is the final Ruby code.</p>
307
- <pre><code>require &apos;ovto&apos;
308
-
309
- class MyApp &lt; Ovto::App
310
- class State &lt; Ovto::State
311
- item :celsius, default: 0
312
-
313
- def fahrenheit
314
- (celsius * 9 / 5.0) + 32
315
- end
316
- end
317
-
318
- class Actions &lt; Ovto::Actions
319
- def set_celsius(value:)
320
- return {celsius: value}
321
- end
322
-
323
- def set_fahrenheit(value:)
324
- new_celsius = (value - 32) * 5 / 9.0
325
- return {celsius: new_celsius}
326
- end
327
- end
328
-
329
- class MainComponent &lt; Ovto::Component
330
- def render
331
- o &apos;div&apos; do
332
- o &apos;span&apos;, &apos;Celcius:&apos;
333
- o &apos;input&apos;, {
334
- type: &apos;text&apos;,
335
- onchange: -&gt;(e){ actions.set_celsius(value: e.target.value.to_i) },
336
- value: state.celsius
309
+ <pre><code class="lang-rb"><span class="hljs-keyword">require</span> <span class="hljs-string">&apos;ovto&apos;</span>
310
+
311
+ <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">MyApp</span> &lt; Ovto::App</span>
312
+ <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">State</span> &lt; Ovto::State</span>
313
+ item <span class="hljs-symbol">:celsius</span>, <span class="hljs-symbol">default:</span> <span class="hljs-number">0</span>
314
+
315
+ <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">fahrenheit</span></span>
316
+ (celsius * <span class="hljs-number">9</span> / <span class="hljs-number">5.0</span>) + <span class="hljs-number">32</span>
317
+ <span class="hljs-keyword">end</span>
318
+ <span class="hljs-keyword">end</span>
319
+
320
+ <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">Actions</span> &lt; Ovto::Actions</span>
321
+ <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">set_celsius</span><span class="hljs-params">(<span class="hljs-symbol">value:</span>)</span></span>
322
+ <span class="hljs-keyword">return</span> {<span class="hljs-symbol">celsius:</span> value}
323
+ <span class="hljs-keyword">end</span>
324
+
325
+ <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">set_fahrenheit</span><span class="hljs-params">(<span class="hljs-symbol">value:</span>)</span></span>
326
+ new_celsius = (value - <span class="hljs-number">32</span>) * <span class="hljs-number">5</span> / <span class="hljs-number">9.0</span>
327
+ <span class="hljs-keyword">return</span> {<span class="hljs-symbol">celsius:</span> new_celsius}
328
+ <span class="hljs-keyword">end</span>
329
+ <span class="hljs-keyword">end</span>
330
+
331
+ <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">MainComponent</span> &lt; Ovto::Component</span>
332
+ <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">render</span></span>
333
+ o <span class="hljs-string">&apos;div&apos;</span> <span class="hljs-keyword">do</span>
334
+ o <span class="hljs-string">&apos;span&apos;</span>, <span class="hljs-string">&apos;Celcius:&apos;</span>
335
+ o <span class="hljs-string">&apos;input&apos;</span>, {
336
+ <span class="hljs-symbol">type:</span> <span class="hljs-string">&apos;text&apos;</span>,
337
+ <span class="hljs-symbol">onchange:</span> -&gt;(e){ actions.set_celsius(<span class="hljs-symbol">value:</span> e.target.value.to_i) },
338
+ <span class="hljs-symbol">value:</span> state.celsius
337
339
  }
338
- o &apos;span&apos;, &apos;Fahrenheit:&apos;
339
- o &apos;input&apos;, {
340
- type: &apos;text&apos;,
341
- onchange: -&gt;(e){ actions.set_fahrenheit(value: e.target.value.to_i) },
342
- value: state.fahrenheit
340
+ o <span class="hljs-string">&apos;span&apos;</span>, <span class="hljs-string">&apos;Fahrenheit:&apos;</span>
341
+ o <span class="hljs-string">&apos;input&apos;</span>, {
342
+ <span class="hljs-symbol">type:</span> <span class="hljs-string">&apos;text&apos;</span>,
343
+ <span class="hljs-symbol">onchange:</span> -&gt;(e){ actions.set_fahrenheit(<span class="hljs-symbol">value:</span> e.target.value.to_i) },
344
+ <span class="hljs-symbol">value:</span> state.fahrenheit
343
345
  }
344
- end
345
- end
346
- end
347
- end
346
+ <span class="hljs-keyword">end</span>
347
+ <span class="hljs-keyword">end</span>
348
+ <span class="hljs-keyword">end</span>
349
+ <span class="hljs-keyword">end</span>
348
350
 
349
- MyApp.run(id: &apos;ovto&apos;)
350
- </code></pre><p>Let&apos;s take a look step-by-step.</p>
351
+ MyApp.run(<span class="hljs-symbol">id:</span> <span class="hljs-string">&apos;ovto&apos;</span>)
352
+ </code></pre>
353
+ <p>Let&apos;s take a look step-by-step.</p>
351
354
  <h2 id="prerequisites">Prerequisites</h2>
352
355
  <ul>
353
356
  <li>Ruby</li>
@@ -355,10 +358,11 @@ MyApp.run(id: &apos;ovto&apos;)
355
358
  </ul>
356
359
  <h2 id="setup">Setup</h2>
357
360
  <p>Make a Gemfile:</p>
358
- <pre><code>source &quot;https://rubygems.org&quot;
359
- gem &quot;ovto&quot;, github: &apos;yhara/ovto&apos; # Use git master because ovto gem is not released yet
360
- gem &apos;rake&apos;
361
- </code></pre><p>Run <code>bundle install</code>.</p>
361
+ <pre><code class="lang-rb">source <span class="hljs-string">&quot;https://rubygems.org&quot;</span>
362
+ gem <span class="hljs-string">&quot;ovto&quot;</span>, <span class="hljs-symbol">github:</span> <span class="hljs-string">&apos;yhara/ovto&apos;</span> <span class="hljs-comment"># Use git master because ovto gem is not released yet</span>
363
+ gem <span class="hljs-string">&apos;rake&apos;</span>
364
+ </code></pre>
365
+ <p>Run <code>bundle install</code>.</p>
362
366
  <h2 id="html">HTML</h2>
363
367
  <p>Make an index.html:</p>
364
368
  <pre><code class="lang-html"><span class="hljs-meta">&lt;!doctype html&gt;</span>
@@ -450,17 +454,18 @@ convert.</p>
450
454
  <span class="hljs-keyword">end</span>
451
455
  </code></pre>
452
456
  <p>Now you can know the value by <code>state.fahrenheit</code>. Update <code>MainComponent</code> to show the value too.</p>
453
- <pre><code> class MainComponent &lt; Ovto::Component
454
- def render
455
- o &apos;div&apos; do
456
- o &apos;span&apos;, &apos;Celcius:&apos;
457
- o &apos;input&apos;, type: &apos;text&apos;, value: state.celsius
458
- o &apos;span&apos;, &apos;Fahrenheit:&apos;
459
- o &apos;input&apos;, type: &apos;text&apos;, value: state.fahrenheit
460
- end
461
- end
462
- end
463
- </code></pre><h2 id="add-an-action">Add an action</h2>
457
+ <pre><code class="lang-rb"> <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">MainComponent</span> &lt; Ovto::Component</span>
458
+ <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">render</span></span>
459
+ o <span class="hljs-string">&apos;div&apos;</span> <span class="hljs-keyword">do</span>
460
+ o <span class="hljs-string">&apos;span&apos;</span>, <span class="hljs-string">&apos;Celcius:&apos;</span>
461
+ o <span class="hljs-string">&apos;input&apos;</span>, <span class="hljs-symbol">type:</span> <span class="hljs-string">&apos;text&apos;</span>, <span class="hljs-symbol">value:</span> state.celsius
462
+ o <span class="hljs-string">&apos;span&apos;</span>, <span class="hljs-string">&apos;Fahrenheit:&apos;</span>
463
+ o <span class="hljs-string">&apos;input&apos;</span>, <span class="hljs-symbol">type:</span> <span class="hljs-string">&apos;text&apos;</span>, <span class="hljs-symbol">value:</span> state.fahrenheit
464
+ <span class="hljs-keyword">end</span>
465
+ <span class="hljs-keyword">end</span>
466
+ <span class="hljs-keyword">end</span>
467
+ </code></pre>
468
+ <h2 id="add-an-action">Add an action</h2>
464
469
  <p>Now we know 0 degrees Celsius is 32 degrees Fahrenheit. But how about 10 degrees or
465
470
  100 degrees Celsius? Let&apos;s update the app to we can specify a Celsius value.</p>
466
471
  <p>You may think that you can change the value with <code>state.celsius = 100</code>, but this is
@@ -546,11 +551,15 @@ Fahrenheit degree into Celsius and set it to the global state.</p>
546
551
 
547
552
 
548
553
 
549
- <a href="../" class="navigation navigation-prev navigation-unique" aria-label="Previous page: Introduction">
554
+ <a href="../" class="navigation navigation-prev " aria-label="Previous page: Introduction">
550
555
  <i class="fa fa-angle-left"></i>
551
556
  </a>
552
557
 
553
558
 
559
+ <a href="install.html" class="navigation navigation-next " aria-label="Next page: Install">
560
+ <i class="fa fa-angle-right"></i>
561
+ </a>
562
+
554
563
 
555
564
 
556
565
  </div>
@@ -558,7 +567,7 @@ Fahrenheit degree into Celsius and set it to the global state.</p>
558
567
  <script>
559
568
  var gitbook = gitbook || [];
560
569
  gitbook.push(function() {
561
- gitbook.page.hasChanged({"page":{"title":"Getting Started","level":"1.3","depth":1,"next":{"title":"API","level":"1.4","depth":1,"ref":"","articles":[{"title":"Ovto::App","level":"1.4.1","depth":2,"path":"api/app.md","ref":"api/app.md","articles":[]},{"title":"Ovto::State","level":"1.4.2","depth":2,"path":"api/state.md","ref":"api/state.md","articles":[]},{"title":"Ovto::Actions","level":"1.4.3","depth":2,"path":"api/actions.md","ref":"api/actions.md","articles":[]},{"title":"Ovto::Component","level":"1.4.4","depth":2,"path":"api/component.md","ref":"api/component.md","articles":[]},{"title":"Ovto.fetch","level":"1.4.5","depth":2,"path":"api/fetch.md","ref":"api/fetch.md","articles":[]}]},"previous":{"title":"Introduction","level":"1.2","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"guides/tutorial.md","mtime":"2019-04-18T08:51:31.000Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-04-19T03:51:35.766Z"},"basePath":"..","book":{"language":""}});
570
+ gitbook.page.hasChanged({"page":{"title":"Getting Started","level":"1.2","depth":1,"next":{"title":"Install","level":"1.3","depth":1,"path":"guides/install.md","ref":"guides/install.md","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"guides/tutorial.md","mtime":"2019-04-19T07:38:37.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2019-08-07T16:14:36.732Z"},"basePath":"..","book":{"language":""}});
562
571
  });
563
572
  </script>
564
573
  </div>
@@ -7,7 +7,7 @@
7
7
  <title>Introduction · GitBook</title>
8
8
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
9
9
  <meta name="description" content="">
10
- <meta name="generator" content="GitBook 3.2.3">
10
+ <meta name="generator" content="GitBook 3.2.2">
11
11
 
12
12
 
13
13
 
@@ -60,8 +60,6 @@
60
60
  <link rel="next" href="guides/tutorial.html" />
61
61
 
62
62
 
63
- <link rel="prev" href="./" />
64
-
65
63
 
66
64
  </head>
67
65
  <body>
@@ -89,7 +87,7 @@
89
87
 
90
88
 
91
89
 
92
- <li class="chapter " data-level="1.1" data-path="./">
90
+ <li class="chapter active" data-level="1.1" data-path="./">
93
91
 
94
92
  <a href="./">
95
93
 
@@ -102,12 +100,12 @@
102
100
 
103
101
  </li>
104
102
 
105
- <li class="chapter active" data-level="1.2" data-path="./">
103
+ <li class="chapter " data-level="1.2" data-path="guides/tutorial.html">
106
104
 
107
- <a href="./">
105
+ <a href="guides/tutorial.html">
108
106
 
109
107
 
110
- Introduction
108
+ Getting Started
111
109
 
112
110
  </a>
113
111
 
@@ -115,12 +113,12 @@
115
113
 
116
114
  </li>
117
115
 
118
- <li class="chapter " data-level="1.3" data-path="guides/tutorial.html">
116
+ <li class="chapter " data-level="1.3" data-path="guides/install.html">
119
117
 
120
- <a href="guides/tutorial.html">
118
+ <a href="guides/install.html">
121
119
 
122
120
 
123
- Getting Started
121
+ Install
124
122
 
125
123
  </a>
126
124
 
@@ -342,12 +340,8 @@
342
340
 
343
341
 
344
342
 
345
- <a href="./" class="navigation navigation-prev " aria-label="Previous page: Introduction">
346
- <i class="fa fa-angle-left"></i>
347
- </a>
348
-
349
343
 
350
- <a href="guides/tutorial.html" class="navigation navigation-next " aria-label="Next page: Getting Started">
344
+ <a href="guides/tutorial.html" class="navigation navigation-next navigation-unique" aria-label="Next page: Getting Started">
351
345
  <i class="fa fa-angle-right"></i>
352
346
  </a>
353
347
 
@@ -358,7 +352,7 @@
358
352
  <script>
359
353
  var gitbook = gitbook || [];
360
354
  gitbook.push(function() {
361
- gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.2","depth":1,"next":{"title":"Getting Started","level":"1.3","depth":1,"path":"guides/tutorial.md","ref":"guides/tutorial.md","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"readme.md","ref":"readme.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"README.md","mtime":"2018-12-23T17:33:22.000Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-04-19T03:51:35.766Z"},"basePath":".","book":{"language":""}});
355
+ gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Getting Started","level":"1.2","depth":1,"path":"guides/tutorial.md","ref":"guides/tutorial.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"README.md","mtime":"2018-12-23T17:33:22.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2019-08-07T16:14:36.732Z"},"basePath":".","book":{"language":""}});
362
356
  });
363
357
  </script>
364
358
  </div>
Binary file
@@ -1 +1 @@
1
- {"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(an","(defin","(method","(the","app","applic","application)","built","class","client","develop","dom","four","framework","get","given","immut","introduct","micro","modifi","object","opal.","overview","ovto","ovto,","ovto:","ovto::act","ovto::app","ovto::compon","ovto::st","page","repres","ruby.","rubyist","side","spa(singl","start","state)","understand"],"guides/tutorial.html":["\"https://rubygems.org\"","\"ifchanged\"","\"ovto\",","\"state\",","\"state:","\"uniniti","#","$","$nameerror","'bundl","'fahrenheit:'","'input',","'ovto'","'ovto')","'rake'","'span',","'text',","'yhara/ovto'","(.html","(and","(compil","(e){","(gem","(or","(see","(tips:","(valu","*","+","./app.rb","./examples/*).",".js)","/","0","10","100","100,","212","32","32)","5","9.0","=",">",">(e){","[0","]","action","action.","actions.","actions.set_celsiu","actions.set_celsius(value:","actions.set_celsius.","actions.set_fahrenheit(value:","ad","add","app","app.","app.j","app.js'","app.js:5022","app.rb","app.rb.","app.rb.)","app.rb:","arbitrary.","argument","attribut","auto","box.","browser","browser.","bundl","bundler","bundler)","c","call","case","celsiu","celsius:","celsius?","chang","check","class","click","code","code.","commit","compil","compile)","consol","constant","conver","convers","conversion.","convert.","correspond","creat","curious,","def","defin","degre","describ","develop","display","div","done.","e","e.target.value.","e.target.value.to_i)","each","easi","edit","emb","end","error","event","exampl","exec","executed.","fahrenheit","fahrenheit!","fahrenheit.","fail","final","first","first,","g","gem","gem:","gemfil","gemfile:","gener","get","git","github:","give","global","handler","handler.","happen","happend","hash","hello,","here","here,","html","id","ifchang","index.html","index.html.","index.html:","input","instal","install.","instanc","item","javascript'","javascript.","key","know","left","let'","look","maincompon","maincomponent.","make","manually,","master","merg","messag","message:","method","misspel","modifi","more:","myapp","myapp.run(id:","myapp::act","myapp::actions.","myapp::maincomponent.","myapp::state\",","myapp::state\"}","myapp::state.","name","namespace.","new","new_celsiu","new_celsius}","next,","now","o","object","old","onchang","onchange:","opal","opal::n","open","other.","otherwise,","ovto","ovto,","ovto::wiredactions.","page)","parameters)","pass","prerequisit","press","prohibited.","proxi","rail","re","react","read","releas","reload","render","replac","repres","requir","result","return","revers","right","rubi","run","same","save","schedul","second","see","see:","set","set_fahrenheit","set_fahrenheit(value:)","setup","shoot","show","sinatra","somewher","sourc","special","specifi","stack:","start","starts.","stat,","state","state.","state.celsiu","state.celsius.","state.fahrenheit","state.fahrenheit.","static","step","step.","string","support","syntax","tab","tag","take","there.","think","this.","this:","those","tire","to:","too.","tri","troubl","tutori","tutorial,","type:","uncaught","uniniti","updat","us","user","valu","value.","value:","view","want","wrap","write","you.","{","{celsius:","{name:","}","},"],"api/app.html":["'opal'","'ovto'","'ovto')","action","action.","actions.update_color","ad","all,","app","app.","button","call","certain","chang","class","color","color_idx","defin","else.","end","event","exampl","example:","execut","first","fun:","handler","here","indic","invok","it.","let'","maincompon","myapp","myapp#actions.","myapp#setup","myapp.run(id:","need","noth","now","onclick","ovto","ovto::app","render","requir","smallest","startup","startup,","state","state,","subclass","updat","update_color","us","{","}","},"],"api/state.html":["\"hello","#=>","(taro)\"","1","1,","2","2)","3","3)","=","[].","access","apps,","array","bar:","book","class","default","defin","exampl","hash,","i.e.","immut","immutable.","instanc","instead,","key.","list","manipul","member","method","name","nest","new_stat","new_state.bar","new_state.foo","object","ovto","ovto::st","practic","repres","state","state#merge.","state.","state.bar","state.merge(bar:","state.new(foo:","statelist.","this.","updat","us","valu","world"],"api/actions.html":["'button',","'opal'","'ovto'","'ovto')","(see","1)",">{","action","action,","actions.increment(by:","anoth","api","apis,","app","argument","async","automat","call","cases,","caus","chang","class","class.","compon","conventions:","current","defin","don't","end","example:","hash.","here","instanc","keyword","merg","method","method.","more","myapp","myapp.run(id:","name","need","needed.","next","nil","o","onclick:","origin","ovto","ovto::act","ovto::wiredact","pass","promis","provid","reflect","render","requir","responds.","result","return","same","schedul","section).","server","skip","special","state","state.","state;","such","tell","until","updat","us","valu","via","view.","way","{","}"],"api/component.html":["\"morethanonenode\",","\"on\"","#","#=>","$morethanonenod","'12'","'age:'","'button',","'div#main'","'div'","'div',","'div.main'","'h1',","'hello.'","'input',","'li',","'main',","'o'","'red'},","'render'","'span',","'text'","'text',","'ul'","'your","(not","+","...}","12",">(e){","abov","age:","anoth","app","app'","argument","attribut","attribute:","block","call","class","class,","class.","class:","compon","content.","creat","def","defin","describ","dom","e","e.target.valu","enclos","end","error","error.","event","example:","gener","give","global","handler.","hash","hash.","hello.","here.","html","https://github.com/hyperapp/hyperapp#key","https://github.com/hyperapp/hyperapp#lifecycl","ids.","inner","input","instanc","javascript","key","lifecycl","maincompon","method","method.","miss","morethanonenod","name.","need","node","node.","notat","o","object.","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal::n","ovto","ovto::compon","ovto::component#o","ovto::component.","p","pass","rais","raw","render","render.","shorthand","singl","sometim","special","specifi","start","state","state.todos.each","style","style:","sub","subclass","surround","tag","tag)","tag,","tag.","take","text","this.","todo.titl","todolist","todos'","type:","valu","value:","view.","want","wrap","{","{color:","{name:","|","|todo|","}","},","~~~~~"],"api/fetch.html":["\"do","#","'post',","'put',","(eg.",".","404","api","api,","app","automat","call","care","command.)","contain","conveni","csrf","don't","e","error,","etc.","exampl","fetch","found,","gener","header","json","json_data","meta","need","network","object","opal'","ovto","ovto.fetch","ovto.fetch('/api/new_task',","ovto.fetch('/api/tasks'){|json_data|","ovto.fetch('/api/tasks/1',","p","page","parameters.","pars","post","promis","provid","put","rail","return","scaffold","send","server","side","something\"}){|json_data|","specifi","tag","those","token","typic","wrapper","x","{title:","}","}.fail{|e|"],"guides/debugging.html":["$console;","'console';","'ovto')","(note:","=","app","app,","browser","consol","console.","console.log","console.log(state:","console;","debug","debug',","def","develop","diagnost","end","equal","except","featur","id='ovto","javascript","javascript.","messag","mostli","myapp.run(id:","object","offici","opal.","ovto","ovto.debug_trac","p","page","print","requir","set","setup","shown","state.new","state.new)","state:","support","tag","tag.","this:)","too.","true","true,"],"guides/development.html":["bundl","clone","develop","doc","doc:build","exec","git","instal","note","rake","rebuild","run","test","unit"]},"length":9},"tokenStore":{"root":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}},"1":{"0":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"2":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},"docs":{"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297}},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},")":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}},"2":{"1":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}},"docs":{}},"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}},")":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"3":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}},")":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"4":{"0":{"4":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}},"docs":{}},"docs":{}},"5":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"9":{"docs":{},".":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"docs":{}}},"docs":{},"(":{"docs":{},"a":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},")":{"docs":{},"\"":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"g":{"docs":{},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"s":{"docs":{},"e":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"e":{"docs":{},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.045454545454545456},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.027237354085603113},"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.03759398496240601},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.045454545454545456}}}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"j":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"s":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},":":{"5":{"0":{"2":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"r":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"s":{"docs":{},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"i":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"api/app.html":{"ref":"api/app.html","tf":0.04938271604938271},"api/actions.html":{"ref":"api/actions.html","tf":0.09022556390977443}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"b":{"docs":{},"y":{"docs":{},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}}}}}}}}}}}}}}},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013618677042801557}}}},"r":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009727626459143969},"guides/development.html":{"ref":"guides/development.html","tf":0.17647058823529413}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357}}}}}}},"o":{"docs":{},"x":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}}},"o":{"docs":{},"k":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}}},"a":{"docs":{},"r":{"docs":{},":":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.07407407407407407},"api/state.html":{"ref":"api/state.html","tf":0.08791208791208792},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"c":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.03007518796992481},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"u":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"r":{"docs":{},"e":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013618677042801557}},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"?":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.03007518796992481}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{},")":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"e":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"o":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}}}}}},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"e":{"docs":{},".":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.05084745762711865}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}}}},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}},"i":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}},"s":{"docs":{},"r":{"docs":{},"f":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288},"guides/development.html":{"ref":"guides/development.html","tf":10.058823529411764}}}}}}},"f":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"i":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.017509727626459144}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":10.033898305084746}},"'":{"docs":{},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"'":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"c":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},":":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"v":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"a":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.045454545454545456}}}}}}}}}},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},"!":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"u":{"docs":{},"n":{"docs":{},":":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.001945525291829}}},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"i":{"docs":{},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013618677042801557},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},"l":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"n":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}},"f":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357}}}},".":{"docs":{},"e":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"s":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"p":{"docs":{},"e":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"r":{"docs":{},"e":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}}}},"n":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"i":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"a":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"y":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}},":":{"docs":{},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}}}}},"o":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.0743801652892562}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.03389830508474576}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},".":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}},":":{"docs":{},":":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"'":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}},"t":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.045454545454545456},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.05084745762711865}},",":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},":":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/actions.html":{"ref":"api/actions.html","tf":10.007518796992482}}}},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/app.html":{"ref":"api/app.html","tf":10.024691358024691}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":10.00413223140496}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"#":{"docs":{},"o":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/state.html":{"ref":"api/state.html","tf":10.021978021978022}}}},"w":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}}},".":{"docs":{},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":10.027777777777779}},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},"{":{"docs":{},"|":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"|":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}}}}}}}}},"/":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.05084745762711865}}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"x":{"docs":{},"x":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"p":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.05555555555555555},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}}},"s":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}},"s":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"u":{"docs":{},"t":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.04938271604938271},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"f":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}}}},"u":{"docs":{},"b":{"docs":{},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"w":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},"k":{"docs":{},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"g":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"p":{"docs":{},"a":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.02066115702479339}}}},"f":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.001945525291829},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"u":{"docs":{},"p":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}},"t":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.017509727626459144},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.08791208791208792},"api/actions.html":{"ref":"api/actions.html","tf":0.06015037593984962},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},")":{"docs":{"./":{"ref":"./","tf":0.06818181818181818}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.011673151750972763},"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},":":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},")":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"#":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},";":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"i":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"c":{"docs":{},"k":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"e":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}},"v":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"_":{"docs":{},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}},"n":{"docs":{},"d":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"n":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.03389830508474576}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},"{":{"docs":{},"|":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"|":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"b":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"c":{"docs":{},"h":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"t":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009727626459143969},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}}}}},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"r":{"docs":{},"u":{"docs":{},"b":{"docs":{},"y":{"docs":{},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"\"":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"i":{"docs":{},"f":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"n":{"docs":{},"\"":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}},"#":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},"=":{"docs":{},">":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/component.html":{"ref":"api/component.html","tf":0.04132231404958678}}}}},"$":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}},"'":{"1":{"2":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"docs":{}},"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},":":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"r":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},"}":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"y":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"/":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"#":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.02066115702479339}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}}}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}},"h":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}},"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.024793388429752067}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"u":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}}},"*":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"+":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"r":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"*":{"docs":{},")":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},".":{"docs":{},".":{"docs":{},"}":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"/":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"=":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}},">":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"(":{"docs":{},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"{":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"[":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"docs":{},"]":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"]":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"s":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"m":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009727626459143969},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/component.html":{"ref":"api/component.html","tf":0.024793388429752067},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.05555555555555555}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.02066115702479339}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"e":{"docs":{},":":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}}},"e":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"guides/development.html":{"ref":"guides/development.html","tf":0.11764705882352941}},"u":{"docs":{},"t":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}},"t":{"docs":{},"c":{"docs":{},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"s":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.028925619834710745}}}}}},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"h":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"/":{"docs":{},"h":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"#":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"t":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}},"e":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}},"e":{"docs":{},"d":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"s":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}}},"o":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"t":{"docs":{},"h":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"a":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}},"d":{"docs":{},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}},"i":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},")":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"o":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"d":{"docs":{},"o":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"s":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}},"r":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"u":{"docs":{},"e":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"i":{"docs":{},"c":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}},"x":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471}}}},"s":{"docs":{},"t":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"a":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"y":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}}}}},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"{":{"docs":{},"|":{"docs":{},"e":{"docs":{},"|":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}}}}}}},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"x":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"length":832},"corpusTokens":["\"do","\"hello","\"https://rubygems.org\"","\"ifchanged\"","\"morethanonenode\",","\"on\"","\"ovto\",","\"state\",","\"state:","\"uniniti","#","#=>","$","$console;","$morethanonenod","$nameerror","'12'","'age:'","'bundl","'button',","'console';","'div#main'","'div'","'div',","'div.main'","'fahrenheit:'","'h1',","'hello.'","'input',","'li',","'main',","'o'","'opal'","'ovto'","'ovto')","'post',","'put',","'rake'","'red'},","'render'","'span',","'text'","'text',","'ul'","'yhara/ovto'","'your","(.html","(an","(and","(compil","(defin","(e){","(eg.","(gem","(method","(not","(note:","(or","(see","(taro)\"","(the","(tips:","(valu","*","+",".","...}","./app.rb","./examples/*).",".js)","/","0","1","1)","1,","10","100","100,","12","2","2)","212","3","3)","32","32)","404","5","9.0","=",">",">(e){",">{","[0","[].","]","abov","access","action","action,","action.","actions.","actions.increment(by:","actions.set_celsiu","actions.set_celsius(value:","actions.set_celsius.","actions.set_fahrenheit(value:","actions.update_color","ad","add","age:","all,","anoth","api","api,","apis,","app","app'","app,","app.","app.j","app.js'","app.js:5022","app.rb","app.rb.","app.rb.)","app.rb:","applic","application)","apps,","arbitrary.","argument","array","async","attribut","attribute:","auto","automat","bar:","block","book","box.","browser","browser.","built","bundl","bundler","bundler)","button","c","call","care","case","cases,","caus","celsiu","celsius:","celsius?","certain","chang","check","class","class,","class.","class:","click","client","clone","code","code.","color","color_idx","command.)","commit","compil","compile)","compon","consol","console.","console.log","console.log(state:","console;","constant","contain","content.","conveni","conventions:","conver","convers","conversion.","convert.","correspond","creat","csrf","curious,","current","debug","debug',","def","default","defin","degre","describ","develop","diagnost","display","div","doc","doc:build","dom","don't","done.","e","e.target.valu","e.target.value.","e.target.value.to_i)","each","easi","edit","else.","emb","enclos","end","equal","error","error,","error.","etc.","event","exampl","example:","except","exec","execut","executed.","fahrenheit","fahrenheit!","fahrenheit.","fail","featur","fetch","final","first","first,","found,","four","framework","fun:","g","gem","gem:","gemfil","gemfile:","gener","get","git","github:","give","given","global","handler","handler.","happen","happend","hash","hash,","hash.","header","hello,","hello.","here","here,","here.","html","https://github.com/hyperapp/hyperapp#key","https://github.com/hyperapp/hyperapp#lifecycl","i.e.","id","id='ovto","ids.","ifchang","immut","immutable.","index.html","index.html.","index.html:","indic","inner","input","instal","install.","instanc","instead,","introduct","invok","it.","item","javascript","javascript'","javascript.","json","json_data","key","key.","keyword","know","left","let'","lifecycl","list","look","maincompon","maincomponent.","make","manipul","manually,","master","member","merg","messag","message:","meta","method","method.","micro","miss","misspel","modifi","more","more:","morethanonenod","mostli","myapp","myapp#actions.","myapp#setup","myapp.run(id:","myapp::act","myapp::actions.","myapp::maincomponent.","myapp::state\",","myapp::state\"}","myapp::state.","name","name.","namespace.","need","needed.","nest","network","new","new_celsiu","new_celsius}","new_stat","new_state.bar","new_state.foo","next","next,","nil","node","node.","notat","note","noth","now","o","object","object.","offici","old","onchang","onchange:","onclick","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal","opal'","opal.","opal::n","open","origin","other.","otherwise,","overview","ovto","ovto,","ovto.debug_trac","ovto.fetch","ovto.fetch('/api/new_task',","ovto.fetch('/api/tasks'){|json_data|","ovto.fetch('/api/tasks/1',","ovto:","ovto::act","ovto::app","ovto::compon","ovto::component#o","ovto::component.","ovto::st","ovto::wiredact","ovto::wiredactions.","p","page","page)","parameters)","parameters.","pars","pass","post","practic","prerequisit","press","print","prohibited.","promis","provid","proxi","put","rail","rais","rake","raw","re","react","read","rebuild","reflect","releas","reload","render","render.","replac","repres","requir","responds.","result","return","revers","right","rubi","ruby.","rubyist","run","same","save","scaffold","schedul","second","section).","see","see:","send","server","set","set_fahrenheit","set_fahrenheit(value:)","setup","shoot","shorthand","show","shown","side","sinatra","singl","skip","smallest","something\"}){|json_data|","sometim","somewher","sourc","spa(singl","special","specifi","stack:","start","starts.","startup","startup,","stat,","state","state#merge.","state)","state,","state.","state.bar","state.celsiu","state.celsius.","state.fahrenheit","state.fahrenheit.","state.merge(bar:","state.new","state.new(foo:","state.new)","state.todos.each","state:","state;","statelist.","static","step","step.","string","style","style:","sub","subclass","such","support","surround","syntax","tab","tag","tag)","tag,","tag.","take","tell","test","text","there.","think","this.","this:","this:)","those","tire","to:","todo.titl","todolist","todos'","token","too.","tri","troubl","true","true,","tutori","tutorial,","type:","typic","uncaught","understand","uniniti","unit","until","updat","update_color","us","user","valu","value.","value:","via","view","view.","want","way","world","wrap","wrapper","write","x","you.","{","{celsius:","{color:","{name:","{title:","|","|todo|","}","},","}.fail{|e|","~~~~~"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Ovto\nClient-side framework for Rubyist\n\nOverview\nOvto is a micro-framework built with Opal. With Ovto, you can develop SPA(Single-Page Application)s with Ruby.\nThere are only four classes to understand Ovto:\n\nOvto::App (The application)\nOvto::State (An immutable object that represents application state)\nOvto::Actions (Methods that modifies the app state)\nOvto::Component (Defines DOMs for a given app state)\n\nGetting Started\n"},"guides/tutorial.html":{"url":"guides/tutorial.html","title":"Getting Started","keywords":"","body":"Getting Started\nThis is a tutorial of making an Ovto app. We create a static app (.html + .js) here,\nbut you can embed Ovto apps into a Rails or Sinatra app (See ./examples/*).\nThis is the final Ruby code.\nrequire 'ovto'\n\nclass MyApp (e){ actions.set_celsius(value: e.target.value.to_i) },\n value: state.celsius\n }\n o 'span', 'Fahrenheit:'\n o 'input', {\n type: 'text',\n onchange: ->(e){ actions.set_fahrenheit(value: e.target.value.to_i) },\n value: state.fahrenheit\n }\n end\n end\n end\nend\n\nMyApp.run(id: 'ovto')\nLet's take a look step-by-step.\nPrerequisites\n\nRuby\nBundler (gem install bundler)\n\nSetup\nMake a Gemfile:\nsource \"https://rubygems.org\"\ngem \"ovto\", github: 'yhara/ovto' # Use git master because ovto gem is not released yet\ngem 'rake'\nRun bundle install.\nHTML\nMake an index.html:\n\n\n \n \n \n \n \n \n \n \n\n\nWrite code\napp.rb:\nrequire 'ovto'\n\nclass MyApp \n\nThe name MyApp is arbitrary.\nThe id ovto corresponds to the div tag in index.html.\n\nCompile\nGenerate app.js from app.rb.\n$ bundle exec opal -c -g ovto app.rb > app.js\n(Compile will fail if there is a syntax error in your app.rb.)\nNow you can run your app by opening index.html in your browser.\nTrouble shooting\nIf you see HELLO, the setup is done. Otherwise, check the developer console\nand you should see some error messages there.\nFor example if you misspelled class State to class Stat, you will see:\napp.js:5022 Uncaught $NameError {name: \"State\", message: \"uninitialized constant MyApp::State\", stack: \"State: uninitialized constant MyApp::State\"}\nbecause an Ovto app must have a State class in its namespace.\n(Tips: auto-compile)\nIf you get tired to run bundle exec opal manually, try ifchanged gem:\n\nAdd gem \"ifchanged\" to Gemfile\nbundle install\nbundle exec ifchanged ./app.rb --do 'bundle exec opal -c -g ovto app.rb > app.js'\n\nNow you just edit and save app.rb and it runs opal -c for you.\nAdd some state\nIn this tutorial, we make an app that convers Celsius and Fahrenheit degrees to\neach other. First, add an item to MyApp::State.\n class State \nNow an item celsius is added to the global app state. Its value is 0 when\nthe app starts. You can read this value by state.celsius. Let's display the\nvalue with MyApp::MainComponent.\n class MainComponent \nNow you should see Celsius: [0 ] in the browser.\nAdd a method to State\nNext, we want to know what degree is it in Fahrenheit. Let's add a method to\nconvert.\n class State \nNow you can know the value by state.fahrenheit. Update MainComponent to show the value too.\n class MainComponent Add an action\nNow we know 0 degrees Celsius is 32 degrees Fahrenheit. But how about 10 degrees or\n100 degrees Celsius? Let's update the app to we can specify a Celsius value.\nYou may think that you can change the value with state.celsius = 100, but this is\nprohibited. In Ovto, you can only modify app state with Actions.\nOur first action looks like this. An action is a method defined in MyApp::Actions.\nIt takes an old state (and its own parameters) and returns a Hash that describes\nthe updates to the state. This return value is merged into the global app state.\n class Actions \nThis action can be called by actions.set_celsius from MainComponent. Replace the\nfirst input tag with this:\n o 'input', {\n type: 'text',\n onchange: ->(e){ actions.set_celsius(value: e.target.value.to_i) },\n value: state.celsius\n }\n\nonchange: is a special attribute that takes an event handler as its value.\nThe argument e is an instance of Opal::Native and wraps the event object of\nJavaScript. In this case you can get the input string by e.target.value.\nNow reload your browser and input 100 to the left input box. Next, press Tab key\n(or click somewhere in the page) to commit the value. Then you should see 212\nin the right input box. 100 degrees Celsius is 212 degrees Fahrenheit!\nWhat has happend\nIn case you are curious, here is what happens when you give 100 to the input box.\n\nJavaScript's onchange event is executed.\nOvto calls the event handler.\nIt calls actions.set_celsius. actions is an instance of Ovto::WiredActions.\nIt is a proxy to the MyApp::Actions. It has the same methods as those in\nMyApp::Actions but does some more:\nIt passes state to the user-defined action.\nIt merges the result to the global app state.\nIt schedules re-rendering the view to represent the new state.\n\n\n\nReverse conversion\nIt is easy to update the app to support Fahrenheit-to-Celsius conversion.\nThe second input should be updated to:\n o 'input', {\n type: 'text',\n onchange: ->(e){ actions.set_fahrenheit(value: e.target.value.to_i) },\n value: state.fahrenheit\n }\n\nThen add an action set_fahrenheit to MyApp::Actions. This action convers the\nFahrenheit degree into Celsius and set it to the global state.\n def set_fahrenheit(value:)\n new_celsius = (value - 32) * 5 / 9.0\n return {celsius: new_celsius}\n end\n\nNow your app should react to the change of the Fahrenheit value too. \n"},"api/app.html":{"url":"api/app.html","title":"Ovto::App","keywords":"","body":"Ovto::App\nFirst of all, you need to define a subclass of Ovto::App and define class State,\nclass Actions and class MainComponent in it.\nExample\nThis is a smallest Ovto app.\nrequire 'opal'\nrequire 'ovto'\n\nclass MyApp \nIt renders a button and does nothing else. Let's have some fun:\nrequire 'opal'\nrequire 'ovto'\n\nclass MyApp { actions.update_color },\n }\n end\n end\nend\n\nMyApp.run(id: 'ovto')\n\nHere we added color_idx to app state and update_color action to change it.\nThe button is updated to have the color indicated by color_idx and\nnow has onclick event handler which executes the action.\nCalling actions on startup\nTo invoke certain actions on app startup, define MyApp#setup and use MyApp#actions.\nExample:\nclass MyApp \n"},"api/state.html":{"url":"api/state.html","title":"Ovto::State","keywords":"","body":"Ovto::State\nOvto::State is like a hash, but members are accessible with name rather than [].\nExample\nclass State 1\nstate.bar #=> 2\n\nDefault value\nclass State 1\nstate.bar #=> 2\n\nImmutable\nState objects are immutable. i.e. you cannot update value of a key. Instead, use State#merge.\nstate = State.new(foo: 1, bar: 2)\nnew_state = state.merge(bar: 3)\nnew_state.foo #=> 1\nnew_state.bar #=> 3\n\nNesting state\nFor practical apps, you can nest State like this.\nclass Book \nDefining instance methods of state\nYou can define instance methods of state.\nclass Book \"Hello world (taro)\"\n\nDefining class methods of state\nOvto does not have a class like StateList. Just use Array to represent a list of state.\nYou can define class methods to manipulate a list of state.\nclass Book \n"},"api/actions.html":{"url":"api/actions.html","title":"Ovto::Actions","keywords":"","body":"Ovto::Actions\nActions are the only way to change the state. Actions must be defined as methods of\nthe Actions class. Here is some more conventions:\n\nYou must use keyword arguments\nYou must return state updates as a Hash. It will be merged into the app state.\nYou can get the current state by state method\n\nExample:\nrequire 'opal'\nrequire 'ovto'\n\nclass MyApp { actions.increment(by: 1) }\n end\n end\nend\n\nMyApp.run(id: 'ovto')\n\nCalling actions\nActions can be called from components via actions method. This is an instance of\nOvto::WiredActions and has methods of the same name as your Actions class.\n o 'button', onclick: ->{ actions.increment(by: 1) }\nArguments are almost the same as the original but you don't need to provide state;\nit is automatically passed by Ovto::WiredActions class. It also updates the app\nstate with the return value of the action, and schedules rendering the view.\nSkipping state update\nAn action may return nil when no app state changes are needed.\nPromises are also special values which does not cause state changes (see the next section).\nAsync actions\nWhen calling server apis, you cannot tell how the app state will change until the server responds.\nIn such cases, you can call another action via actions to tell Ovto to reflect the api result to the app state.\nExample:\n class Actions \n"},"api/component.html":{"url":"api/component.html","title":"Ovto::Component","keywords":"","body":"Ovto::Component\nAn Ovto app must have MainComponent class, a subclass of Ovto::Component.\n'render' method\nrender is the only method you need to define in the MainComponent class.\nYou can get the global app state by calling state method.\n class MainComponent \nMoreThanOneNode error\nIf you missed the surrounding 'div' tag, Ovto raises an MoreThanOneNode error. render must create a single DOM node.\n def render\n o 'h1', 'Your todos'\n o 'ul' do\n state.todos.each do |todo|\n o 'li', todo.title\n end\n end\n end\n\n#=> $MoreThanOneNode {name: \"MoreThanOneNode\", ...}\n\nThe 'o' method\n\nOvto::Component#o describes your app's view. For example:\no 'div'\n#=> \n\no 'div', 'Hello.'\n#=> Hello.\n\nYou can pass attributes with a Hash.\no 'div', class: 'main', 'Hello.'\n#=> Hello.\n\nThere are shorthand notations for classes and ids.\no 'div.main'\n#=> Hello.\n\no 'div#main'\n#=> Hello.\n\nYou can also give a block to specify its content.\no 'div' do\n 'Hello.'\nend\n#=> Hello.\n\no 'div' do\n o 'h1', 'Hello.'\nend\n#=> Hello.\n\nSpecial attribute: style\n\nThere are some special keys for the attributes Hash. style: key takes a hash as \nits value and specifies styles of the tag.\no 'div', style: {color: 'red'}, 'Hello.'\n#=> Hello.\n\nSpecial attribute: onxx\nAn attribute starts with \"on\" specifies an event handler.\nFor example:\no 'input', {\n type: 'button',\n onclick: ->(e){ p e.target.value },\n value: 'Hello.'\n}\n\nThe argument e is an instance of Opal::Native and wraps the JavaScript event object.\nYou can get the input value with e.target.value here.\nLifecycle events\nThere are special events oncreate, onupdate, onremove, ondestroy.\nhttps://github.com/hyperapp/hyperapp#lifecycle-events\nSpecial attribute: key\nhttps://github.com/hyperapp/hyperapp#keys\nSub components\no can take another component class to render.\n # Sub component\n class TodoList \nText node\nSometimes you may want to create a text node.\n#=> Age: 12\n# ~~~~~\n# |\n# +--Raw text (not enclosed by an inner tag)\n\no generates a text node when 'text' is specified as tag name. The above\nHTML could be described like this.\no 'div' do\n o 'text', 'Age:'\n o 'span', '12'\nend\n\n"},"api/fetch.html":{"url":"api/fetch.html","title":"Ovto.fetch","keywords":"","body":"Ovto.fetch\nOvto provides wrapper of Fetch API, for convenience of calling typical server-side APIs (eg. those generated by rails scaffold command.)\nOvto.fetch returns Opal's Promise object that calls the API with the specified parameters.\nExamples\nGET\nOvto.fetch('/api/tasks'){|json_data|\n p json_data\n}.fail{|e| # Network error, 404 Not Found, JSON parse error, etc.\n p e\n}\n\nPOST\nOvto.fetch('/api/new_task', 'POST', {title: \"do something\"}){|json_data|\n p json_data\n}.fail{|e| # Network error, 404 Not Found, JSON parse error, etc.\n p e\n}\n\nPUT\nOvto.fetch('/api/tasks/1', 'PUT', {title: \"do something\"}){|json_data|\n p json_data\n}.fail{|e| # Network error, 404 Not Found, JSON parse error, etc.\n p e\n}\n\nCSRF tokens\nYou don't need to care about CSRF tokens if the server is a Rails app because Ovto.fetch automatically send X-CSRF-Token header if the page contains a meta tag like .\n"},"guides/debugging.html":{"url":"guides/debugging.html","title":"Debugging","keywords":"","body":"Debugging Ovto app\nconsole.log\nIn an Ovto app, you can print any object to developer console by console.log\nlike in JavaScript. \nconsole.log(state: State.new)\n\nThis is mostly equal to p state: State.new but console.log supports\nJavaScript objects too.\n(Note: this is not an official feature of Opal. You can do this setup by this:)\n require 'console'; def console; $console; end\n\novto-debug\nIf the page has a tag with id='ovto-debug', exception is shown in the tag.\nOvto.debug_trace\nIf Ovto.debug_trace is set to true, some diagnostic messages are shown in the browser console.\nOvto.debug_trace = true\nMyApp.run(id: 'ovto')\n\n"},"guides/development.html":{"url":"guides/development.html","title":"Development","keywords":"","body":"Development notes\nHow to run unit test\n\ngit clone\nbundle install\nbundle exec rake\n\nHow to rebuild docs\nbundle exec doc:build\n"}}}
1
+ {"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["(an","(defin","(method","(the","app","applic","application)","built","class","client","develop","dom","four","framework","get","given","immut","introduct","micro","modifi","object","opal.","overview","ovto","ovto,","ovto:","ovto::act","ovto::app","ovto::compon","ovto::st","page","repres","ruby.","rubyist","side","spa(singl","start","state)","understand"],"guides/tutorial.html":["\"https://rubygems.org\"","\"ifchanged\"","\"ovto\",","\"state\",","\"state:","\"uniniti","#","$","$nameerror","'bundl","'fahrenheit:'","'input',","'ovto'","'ovto')","'rake'","'span',","'text',","'yhara/ovto'","(.html","(and","(compil","(e){","(gem","(or","(see","(tips:","(valu","*","+","./app.rb","./examples/*).",".js)","/","0","10","100","100,","212","32","32)","5","9.0","=",">",">(e){","[0","]","action","action.","actions.","actions.set_celsiu","actions.set_celsius(value:","actions.set_celsius.","actions.set_fahrenheit(value:","ad","add","app","app.","app.j","app.js'","app.js:5022","app.rb","app.rb.","app.rb.)","app.rb:","arbitrary.","argument","attribut","auto","box.","browser","browser.","bundl","bundler","bundler)","c","call","case","celsiu","celsius:","celsius?","chang","check","class","click","code","code.","commit","compil","compile)","consol","constant","conver","convers","conversion.","convert.","correspond","creat","curious,","def","defin","degre","describ","develop","display","div","done.","e","e.target.value.","e.target.value.to_i)","each","easi","edit","emb","end","error","event","exampl","exec","executed.","fahrenheit","fahrenheit!","fahrenheit.","fail","final","first","first,","g","gem","gem:","gemfil","gemfile:","gener","get","git","github:","give","global","handler","handler.","happen","happend","hash","hello,","here","here,","html","id","ifchang","index.html","index.html.","index.html:","input","instal","install.","instanc","item","javascript'","javascript.","key","know","left","let'","look","maincompon","maincomponent.","make","manually,","master","merg","messag","message:","method","misspel","modifi","more:","myapp","myapp.run(id:","myapp::act","myapp::actions.","myapp::maincomponent.","myapp::state\",","myapp::state\"}","myapp::state.","name","namespace.","new","new_celsiu","new_celsius}","next,","now","o","object","old","onchang","onchange:","opal","opal::n","open","other.","otherwise,","ovto","ovto,","ovto::wiredactions.","page)","parameters)","pass","prerequisit","press","prohibited.","proxi","rail","re","react","read","releas","reload","render","replac","repres","requir","result","return","revers","right","rubi","run","same","save","schedul","second","see","see:","set","set_fahrenheit","set_fahrenheit(value:)","setup","shoot","show","sinatra","somewher","sourc","special","specifi","stack:","start","starts.","stat,","state","state.","state.celsiu","state.celsius.","state.fahrenheit","state.fahrenheit.","static","step","step.","string","support","syntax","tab","tag","take","there.","think","this.","this:","those","tire","to:","too.","tri","troubl","tutori","tutorial,","type:","uncaught","uniniti","updat","us","user","valu","value.","value:","view","want","wrap","write","you.","{","{celsius:","{name:","}","},"],"guides/install.html":["#config.assets.js_compressor","$","'.'","'activestorage'","'foo","'opal","'opal'","'ovto'","'rail","'turbolinks'","(file",":uglifi","=","app","app')","app/assets/javascripts/application.j","app/assets/javascripts/application.js.rb","app/assets/javascripts/foo.js.rb","app/views/.html.erb","arbitrary)","befor","browser.","bundl","class","config.assets.js_compressor","config/environments/production.rb","creat","deploy","edit","file","foo","foo.run(id:","gem","gemfil","hello","instal","myapp","name","need","new","ovto","production.","rail","rails'","remov","render","requir","require_tre","run","sinatra","static","true)","uglifier.new(harmony:","ujs'","us"],"api/app.html":["'opal'","'ovto'","'ovto')","action","action.","actions.update_color","ad","all,","app","app.","button","call","certain","chang","class","color","color_idx","defin","else.","end","event","exampl","example:","execut","first","fun:","handler","here","indic","invok","it.","let'","maincompon","myapp","myapp#actions.","myapp#setup","myapp.run(id:","need","noth","now","onclick","ovto","ovto::app","render","requir","smallest","startup","startup,","state","state,","subclass","updat","update_color","us","{","}","},"],"api/state.html":["\"hello","#=>","(taro)\"","1","1,","2","2)","3","3)","=","[].","access","apps,","array","bar:","book","class","default","defin","exampl","hash,","i.e.","immut","immutable.","instanc","instead,","key.","list","manipul","member","method","name","nest","new_stat","new_state.bar","new_state.foo","object","ovto","ovto::st","practic","repres","state","state#merge.","state.","state.bar","state.merge(bar:","state.new(foo:","statelist.","this.","updat","us","valu","world"],"api/actions.html":["'button',","'opal'","'ovto'","'ovto')","(see","1)",">{","action","action,","actions.increment(by:","anoth","api","apis,","app","argument","async","automat","call","cases,","caus","chang","class","class.","compon","conventions:","current","defin","don't","end","example:","hash.","here","instanc","keyword","merg","method","method.","more","myapp","myapp.run(id:","name","need","needed.","next","nil","o","onclick:","origin","ovto","ovto::act","ovto::wiredact","pass","promis","provid","reflect","render","requir","responds.","result","return","same","schedul","section).","server","skip","special","state","state.","state;","such","tell","until","updat","us","valu","via","view.","way","{","}"],"api/component.html":["\"morethanonenode\",","\"on\"","#","#=>","$morethanonenod","'12'","'age:'","'button',","'div#main'","'div'","'div',","'div.main'","'h1',","'hello.'","'input',","'li',","'main',","'o'","'red'},","'render'","'span',","'text'","'text',","'ul'","'your","(not","+","...}","12",">(e){","abov","age:","anoth","app","app'","argument","attribut","attribute:","block","call","class","class,","class.","class:","compon","content.","creat","def","defin","describ","dom","e","e.target.valu","enclos","end","error","error.","event","example:","gener","give","global","handler.","hash","hash.","hello.","here.","html","https://github.com/hyperapp/hyperapp#key","https://github.com/hyperapp/hyperapp#lifecycl","ids.","inner","input","instanc","javascript","key","lifecycl","maincompon","method","method.","miss","morethanonenod","name.","need","node","node.","notat","o","object.","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal::n","ovto","ovto::compon","ovto::component#o","ovto::component.","p","pass","rais","raw","render","render.","shorthand","singl","sometim","special","specifi","start","state","state.todos.each","style","style:","sub","subclass","surround","tag","tag)","tag,","tag.","take","text","this.","todo.titl","todolist","todos'","type:","valu","value:","view.","want","wrap","{","{color:","{name:","|","|todo|","}","},","~~~~~"],"api/fetch.html":["\"do","#","'post',","'put',","(eg.",".","404","api","api,","app","automat","call","care","command.)","contain","conveni","csrf","don't","e","error,","etc.","exampl","fetch","found,","gener","header","json","json_data","meta","need","network","object","opal'","ovto","ovto.fetch","ovto.fetch('/api/new_task',","ovto.fetch('/api/tasks').then{|json_data|","ovto.fetch('/api/tasks/1',","p","page","parameters.","pars","post","promis","provid","put","rail","return","scaffold","send","server","side","something\"}).then{|json_data|","specifi","tag","those","token","typic","wrapper","x","{title:","}","}.fail{|e|"],"guides/debugging.html":["$console;","'console';","'ovto')","(note:","=","app","app,","browser","consol","console.","console.log","console.log(state:","console;","debug","debug',","def","develop","diagnost","end","equal","except","featur","id='ovto","javascript","javascript.","messag","mostli","myapp.run(id:","object","offici","opal.","ovto","ovto.debug_trac","p","page","print","requir","set","setup","shown","state.new","state.new)","state:","support","tag","tag.","this:)","too.","true","true,"],"guides/development.html":["bundl","clone","develop","doc","doc:build","exec","git","instal","note","rake","rebuild","run","test","unit"]},"length":10},"tokenStore":{"root":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}},"1":{"0":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"2":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},"docs":{"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297}},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},")":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}},"2":{"1":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}},"docs":{}},"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}},")":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"3":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}},")":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"4":{"0":{"4":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}},"docs":{}},"docs":{}},"5":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"9":{"docs":{},".":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"docs":{}}},"docs":{},"(":{"docs":{},"a":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},")":{"docs":{},"\"":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"g":{"docs":{},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"s":{"docs":{},"e":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"e":{"docs":{},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.045454545454545456},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.027237354085603113},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.03759398496240601},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.045454545454545456}}}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"j":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"s":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},":":{"5":{"0":{"2":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"r":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},")":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}},"/":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}},"s":{"docs":{},".":{"docs":{},"r":{"docs":{},"b":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{},"r":{"docs":{},"b":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"s":{"docs":{},"/":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"i":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"api/app.html":{"ref":"api/app.html","tf":0.04938271604938271},"api/actions.html":{"ref":"api/actions.html","tf":0.09022556390977443}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"b":{"docs":{},"y":{"docs":{},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}}}}}}}}}}}}}}},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013618677042801557}}}},"r":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},")":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009727626459143969},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"guides/development.html":{"ref":"guides/development.html","tf":0.17647058823529413}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357}}}}}}},"o":{"docs":{},"x":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}}},"o":{"docs":{},"k":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}},"a":{"docs":{},"r":{"docs":{},":":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"api/app.html":{"ref":"api/app.html","tf":0.07407407407407407},"api/state.html":{"ref":"api/state.html","tf":0.08791208791208792},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"c":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.03007518796992481},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"u":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"r":{"docs":{},"e":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013618677042801557}},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"?":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.03007518796992481}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{},")":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"e":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"o":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}}}}}},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"e":{"docs":{},".":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.05084745762711865}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}}}},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}},"i":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"b":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}},"s":{"docs":{},"r":{"docs":{},"f":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288},"guides/development.html":{"ref":"guides/development.html","tf":10.058823529411764}}}}}}},"f":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"i":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.017509727626459144}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}},"p":{"docs":{},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":10.033898305084746}},"'":{"docs":{},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"'":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"c":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},":":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"v":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"a":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}},"o":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.045454545454545456}}}}}}}}}},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},"!":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"l":{"docs":{},"e":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}},"u":{"docs":{},"n":{"docs":{},":":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.001945525291829}}},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"guides/install.html":{"ref":"guides/install.html","tf":0.04819277108433735}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"i":{"docs":{},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013618677042801557},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/install.html":{"ref":"guides/install.html","tf":10.036144578313253},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},"l":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"n":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}},"f":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357}}}},".":{"docs":{},"e":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"s":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"p":{"docs":{},"e":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"r":{"docs":{},"e":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}}}},"n":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"i":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"a":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"y":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}},":":{"docs":{},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}}}}},"o":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.0743801652892562}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.03389830508474576}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},".":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}},":":{"docs":{},":":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"'":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}},"t":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.045454545454545456},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"guides/install.html":{"ref":"guides/install.html","tf":0.08433734939759036},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.05084745762711865}},",":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},":":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/actions.html":{"ref":"api/actions.html","tf":10.007518796992482}}}},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/app.html":{"ref":"api/app.html","tf":10.024691358024691}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":10.00413223140496}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"#":{"docs":{},"o":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/state.html":{"ref":"api/state.html","tf":10.021978021978022}}}},"w":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}}},".":{"docs":{},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":10.027777777777779}},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"_":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"{":{"docs":{},"|":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"|":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}}}}}}}}}}}}}},"/":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.05084745762711865}}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"x":{"docs":{},"x":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}},"p":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.05555555555555555},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}}},"s":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}},"s":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"h":{"docs":{},"i":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"u":{"docs":{},"t":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/install.html":{"ref":"guides/install.html","tf":0.060240963855421686},"api/app.html":{"ref":"api/app.html","tf":0.04938271604938271},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}},"f":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}}}},"u":{"docs":{},"b":{"docs":{},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}},"s":{"docs":{},"'":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"w":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},"k":{"docs":{},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676}}}}}},"g":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"p":{"docs":{},"a":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.02066115702479339}}}},"f":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.001945525291829},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"u":{"docs":{},"p":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}},"t":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.017509727626459144},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.08791208791208792},"api/actions.html":{"ref":"api/actions.html","tf":0.06015037593984962},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},")":{"docs":{"./":{"ref":"./","tf":0.06818181818181818}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.011673151750972763},"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}}},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"(":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},":":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},":":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},")":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"#":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},";":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"i":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676}}}}},"c":{"docs":{},"k":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"e":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}},"v":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"_":{"docs":{},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}},"n":{"docs":{},"d":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"n":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.03389830508474576}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},"}":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"{":{"docs":{},"|":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"|":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"b":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"c":{"docs":{},"h":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"t":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009727626459143969},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}}}}}}}}},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"(":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"y":{"docs":{},":":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"r":{"docs":{},"u":{"docs":{},"b":{"docs":{},"y":{"docs":{},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"\"":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"i":{"docs":{},"f":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"n":{"docs":{},"\"":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}},"#":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},">":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/component.html":{"ref":"api/component.html","tf":0.04132231404958678}}}}},"$":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.04819277108433735}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}},"'":{"1":{"2":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"docs":{}},"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},":":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676},"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}},"'":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"r":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"i":{"docs":{},"l":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},"}":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"u":{"docs":{},"r":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},"s":{"docs":{},"'":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}},"y":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"/":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},".":{"docs":{},"'":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},":":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"#":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.02066115702479339}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}}}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}},"h":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}},"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.024793388429752067}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"u":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}}},"*":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"+":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"r":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"*":{"docs":{},")":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},".":{"docs":{},".":{"docs":{},"}":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"/":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"=":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}},">":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}},"(":{"docs":{},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"{":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"[":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"docs":{},"]":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"]":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"s":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.03614457831325301}}}}},"m":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009727626459143969},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/actions.html":{"ref":"api/actions.html","tf":0.022556390977443608},"api/component.html":{"ref":"api/component.html","tf":0.024793388429752067},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.05555555555555555}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.02066115702479339}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"e":{"docs":{},":":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}}}},"e":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"guides/development.html":{"ref":"guides/development.html","tf":0.11764705882352941}},"u":{"docs":{},"t":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}}},"t":{"docs":{},"c":{"docs":{},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}},"s":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.028925619834710745}}}}}},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"h":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"/":{"docs":{},"h":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"#":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.012396694214876033}},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"t":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"guides/install.html":{"ref":"guides/install.html","tf":0.024096385542168676}},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"s":{"docs":{},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}},"e":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876}}}}},"e":{"docs":{},"d":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}}}},"s":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}}},"o":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"t":{"docs":{},"h":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"a":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}},"d":{"docs":{},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}}},"i":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},")":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},")":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}},"o":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"o":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038910505836575876},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"d":{"docs":{},"o":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"s":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}},"r":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"u":{"docs":{},"e":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},")":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"i":{"docs":{},"c":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}},"x":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.01652892561983471}}}},"s":{"docs":{},"t":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01556420233463035},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.008264462809917356}},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}},"a":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}},"y":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005836575875486381},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007518796992481203},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019455252918287938},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}}}}},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.015037593984962405},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007782101167315175},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}},".":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"{":{"docs":{},"|":{"docs":{},"e":{"docs":{},"|":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}}}}}}},":":{"docs":{},"u":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"guides/install.html":{"ref":"guides/install.html","tf":0.012048192771084338}}}}}}}}},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}}},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004132231404958678}}}}}}},"x":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"length":848},"corpusTokens":["\"do","\"hello","\"https://rubygems.org\"","\"ifchanged\"","\"morethanonenode\",","\"on\"","\"ovto\",","\"state\",","\"state:","\"uniniti","#","#=>","#config.assets.js_compressor","$","$console;","$morethanonenod","$nameerror","'.'","'12'","'activestorage'","'age:'","'bundl","'button',","'console';","'div#main'","'div'","'div',","'div.main'","'fahrenheit:'","'foo","'h1',","'hello.'","'input',","'li',","'main',","'o'","'opal","'opal'","'ovto'","'ovto')","'post',","'put',","'rail","'rake'","'red'},","'render'","'span',","'text'","'text',","'turbolinks'","'ul'","'yhara/ovto'","'your","(.html","(an","(and","(compil","(defin","(e){","(eg.","(file","(gem","(method","(not","(note:","(or","(see","(taro)\"","(the","(tips:","(valu","*","+",".","...}","./app.rb","./examples/*).",".js)","/","0","1","1)","1,","10","100","100,","12","2","2)","212","3","3)","32","32)","404","5","9.0",":uglifi","=",">",">(e){",">{","[0","[].","]","abov","access","action","action,","action.","actions.","actions.increment(by:","actions.set_celsiu","actions.set_celsius(value:","actions.set_celsius.","actions.set_fahrenheit(value:","actions.update_color","ad","add","age:","all,","anoth","api","api,","apis,","app","app'","app')","app,","app.","app.j","app.js'","app.js:5022","app.rb","app.rb.","app.rb.)","app.rb:","app/assets/javascripts/application.j","app/assets/javascripts/application.js.rb","app/assets/javascripts/foo.js.rb","app/views/.html.erb","applic","application)","apps,","arbitrary)","arbitrary.","argument","array","async","attribut","attribute:","auto","automat","bar:","befor","block","book","box.","browser","browser.","built","bundl","bundler","bundler)","button","c","call","care","case","cases,","caus","celsiu","celsius:","celsius?","certain","chang","check","class","class,","class.","class:","click","client","clone","code","code.","color","color_idx","command.)","commit","compil","compile)","compon","config.assets.js_compressor","config/environments/production.rb","consol","console.","console.log","console.log(state:","console;","constant","contain","content.","conveni","conventions:","conver","convers","conversion.","convert.","correspond","creat","csrf","curious,","current","debug","debug',","def","default","defin","degre","deploy","describ","develop","diagnost","display","div","doc","doc:build","dom","don't","done.","e","e.target.valu","e.target.value.","e.target.value.to_i)","each","easi","edit","else.","emb","enclos","end","equal","error","error,","error.","etc.","event","exampl","example:","except","exec","execut","executed.","fahrenheit","fahrenheit!","fahrenheit.","fail","featur","fetch","file","final","first","first,","foo","foo.run(id:","found,","four","framework","fun:","g","gem","gem:","gemfil","gemfile:","gener","get","git","github:","give","given","global","handler","handler.","happen","happend","hash","hash,","hash.","header","hello","hello,","hello.","here","here,","here.","html","https://github.com/hyperapp/hyperapp#key","https://github.com/hyperapp/hyperapp#lifecycl","i.e.","id","id='ovto","ids.","ifchang","immut","immutable.","index.html","index.html.","index.html:","indic","inner","input","instal","install.","instanc","instead,","introduct","invok","it.","item","javascript","javascript'","javascript.","json","json_data","key","key.","keyword","know","left","let'","lifecycl","list","look","maincompon","maincomponent.","make","manipul","manually,","master","member","merg","messag","message:","meta","method","method.","micro","miss","misspel","modifi","more","more:","morethanonenod","mostli","myapp","myapp#actions.","myapp#setup","myapp.run(id:","myapp::act","myapp::actions.","myapp::maincomponent.","myapp::state\",","myapp::state\"}","myapp::state.","name","name.","namespace.","need","needed.","nest","network","new","new_celsiu","new_celsius}","new_stat","new_state.bar","new_state.foo","next","next,","nil","node","node.","notat","note","noth","now","o","object","object.","offici","old","onchang","onchange:","onclick","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal","opal'","opal.","opal::n","open","origin","other.","otherwise,","overview","ovto","ovto,","ovto.debug_trac","ovto.fetch","ovto.fetch('/api/new_task',","ovto.fetch('/api/tasks').then{|json_data|","ovto.fetch('/api/tasks/1',","ovto:","ovto::act","ovto::app","ovto::compon","ovto::component#o","ovto::component.","ovto::st","ovto::wiredact","ovto::wiredactions.","p","page","page)","parameters)","parameters.","pars","pass","post","practic","prerequisit","press","print","production.","prohibited.","promis","provid","proxi","put","rail","rails'","rais","rake","raw","re","react","read","rebuild","reflect","releas","reload","remov","render","render.","replac","repres","requir","require_tre","responds.","result","return","revers","right","rubi","ruby.","rubyist","run","same","save","scaffold","schedul","second","section).","see","see:","send","server","set","set_fahrenheit","set_fahrenheit(value:)","setup","shoot","shorthand","show","shown","side","sinatra","singl","skip","smallest","something\"}).then{|json_data|","sometim","somewher","sourc","spa(singl","special","specifi","stack:","start","starts.","startup","startup,","stat,","state","state#merge.","state)","state,","state.","state.bar","state.celsiu","state.celsius.","state.fahrenheit","state.fahrenheit.","state.merge(bar:","state.new","state.new(foo:","state.new)","state.todos.each","state:","state;","statelist.","static","step","step.","string","style","style:","sub","subclass","such","support","surround","syntax","tab","tag","tag)","tag,","tag.","take","tell","test","text","there.","think","this.","this:","this:)","those","tire","to:","todo.titl","todolist","todos'","token","too.","tri","troubl","true","true)","true,","tutori","tutorial,","type:","typic","uglifier.new(harmony:","ujs'","uncaught","understand","uniniti","unit","until","updat","update_color","us","user","valu","value.","value:","via","view","view.","want","way","world","wrap","wrapper","write","x","you.","{","{celsius:","{color:","{name:","{title:","|","|todo|","}","},","}.fail{|e|","~~~~~"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Ovto\nClient-side framework for Rubyist\n\nOverview\nOvto is a micro-framework built with Opal. With Ovto, you can develop SPA(Single-Page Application)s with Ruby.\nThere are only four classes to understand Ovto:\n\nOvto::App (The application)\nOvto::State (An immutable object that represents application state)\nOvto::Actions (Methods that modifies the app state)\nOvto::Component (Defines DOMs for a given app state)\n\nGetting Started\n"},"guides/tutorial.html":{"url":"guides/tutorial.html","title":"Getting Started","keywords":"","body":"Getting Started\nThis is a tutorial of making an Ovto app. We create a static app (.html + .js) here,\nbut you can embed Ovto apps into a Rails or Sinatra app (See ./examples/*).\nThis is the final Ruby code.\nrequire 'ovto'\n\nclass MyApp (e){ actions.set_celsius(value: e.target.value.to_i) },\n value: state.celsius\n }\n o 'span', 'Fahrenheit:'\n o 'input', {\n type: 'text',\n onchange: ->(e){ actions.set_fahrenheit(value: e.target.value.to_i) },\n value: state.fahrenheit\n }\n end\n end\n end\nend\n\nMyApp.run(id: 'ovto')\n\nLet's take a look step-by-step.\nPrerequisites\n\nRuby\nBundler (gem install bundler)\n\nSetup\nMake a Gemfile:\nsource \"https://rubygems.org\"\ngem \"ovto\", github: 'yhara/ovto' # Use git master because ovto gem is not released yet\ngem 'rake'\n\nRun bundle install.\nHTML\nMake an index.html:\n\n\n \n \n \n \n \n \n \n \n\n\nWrite code\napp.rb:\nrequire 'ovto'\n\nclass MyApp \n\nThe name MyApp is arbitrary.\nThe id ovto corresponds to the div tag in index.html.\n\nCompile\nGenerate app.js from app.rb.\n$ bundle exec opal -c -g ovto app.rb > app.js\n(Compile will fail if there is a syntax error in your app.rb.)\nNow you can run your app by opening index.html in your browser.\nTrouble shooting\nIf you see HELLO, the setup is done. Otherwise, check the developer console\nand you should see some error messages there.\nFor example if you misspelled class State to class Stat, you will see:\napp.js:5022 Uncaught $NameError {name: \"State\", message: \"uninitialized constant MyApp::State\", stack: \"State: uninitialized constant MyApp::State\"}\nbecause an Ovto app must have a State class in its namespace.\n(Tips: auto-compile)\nIf you get tired to run bundle exec opal manually, try ifchanged gem:\n\nAdd gem \"ifchanged\" to Gemfile\nbundle install\nbundle exec ifchanged ./app.rb --do 'bundle exec opal -c -g ovto app.rb > app.js'\n\nNow you just edit and save app.rb and it runs opal -c for you.\nAdd some state\nIn this tutorial, we make an app that convers Celsius and Fahrenheit degrees to\neach other. First, add an item to MyApp::State.\n class State \nNow an item celsius is added to the global app state. Its value is 0 when\nthe app starts. You can read this value by state.celsius. Let's display the\nvalue with MyApp::MainComponent.\n class MainComponent \nNow you should see Celsius: [0 ] in the browser.\nAdd a method to State\nNext, we want to know what degree is it in Fahrenheit. Let's add a method to\nconvert.\n class State \nNow you can know the value by state.fahrenheit. Update MainComponent to show the value too.\n class MainComponent \nAdd an action\nNow we know 0 degrees Celsius is 32 degrees Fahrenheit. But how about 10 degrees or\n100 degrees Celsius? Let's update the app to we can specify a Celsius value.\nYou may think that you can change the value with state.celsius = 100, but this is\nprohibited. In Ovto, you can only modify app state with Actions.\nOur first action looks like this. An action is a method defined in MyApp::Actions.\nIt takes an old state (and its own parameters) and returns a Hash that describes\nthe updates to the state. This return value is merged into the global app state.\n class Actions \nThis action can be called by actions.set_celsius from MainComponent. Replace the\nfirst input tag with this:\n o 'input', {\n type: 'text',\n onchange: ->(e){ actions.set_celsius(value: e.target.value.to_i) },\n value: state.celsius\n }\n\nonchange: is a special attribute that takes an event handler as its value.\nThe argument e is an instance of Opal::Native and wraps the event object of\nJavaScript. In this case you can get the input string by e.target.value.\nNow reload your browser and input 100 to the left input box. Next, press Tab key\n(or click somewhere in the page) to commit the value. Then you should see 212\nin the right input box. 100 degrees Celsius is 212 degrees Fahrenheit!\nWhat has happend\nIn case you are curious, here is what happens when you give 100 to the input box.\n\nJavaScript's onchange event is executed.\nOvto calls the event handler.\nIt calls actions.set_celsius. actions is an instance of Ovto::WiredActions.\nIt is a proxy to the MyApp::Actions. It has the same methods as those in\nMyApp::Actions but does some more:\nIt passes state to the user-defined action.\nIt merges the result to the global app state.\nIt schedules re-rendering the view to represent the new state.\n\n\n\nReverse conversion\nIt is easy to update the app to support Fahrenheit-to-Celsius conversion.\nThe second input should be updated to:\n o 'input', {\n type: 'text',\n onchange: ->(e){ actions.set_fahrenheit(value: e.target.value.to_i) },\n value: state.fahrenheit\n }\n\nThen add an action set_fahrenheit to MyApp::Actions. This action convers the\nFahrenheit degree into Celsius and set it to the global state.\n def set_fahrenheit(value:)\n new_celsius = (value - 32) * 5 / 9.0\n return {celsius: new_celsius}\n end\n\nNow your app should react to the change of the Fahrenheit value too. \n"},"guides/install.html":{"url":"guides/install.html","title":"Install","keywords":"","body":"Install\nUse Ovto with static files\n$ gem i ovto\n$ ovto new myapp --static\nUse Ovto with Sinatra\n$ gem i ovto\n$ ovto new myapp --sinatra\nInstall Ovto into Rails apps\nEdit Gemfile\ngem 'opal-rails'\ngem 'ovto'\n\nRun bundle install\nRemove app/assets/javascripts/application.js\nCreate app/assets/javascripts/application.js.rb\nrequire 'opal'\nrequire 'rails-ujs'\nrequire 'activestorage'\nrequire 'turbolinks'\nrequire_tree '.'\n\nCreate app/assets/javascripts/foo.js.rb (file name is arbitrary)\nrequire 'ovto'\n\nclass Foo \nEdit app/views/.html.erb\n\n\n Foo.run(id: 'foo-app')\n\nThis should render HELLO in the browser.\nYou also need to edit config/environments/production.rb like this before deploy it to production.\n #config.assets.js_compressor = :uglifier\n config.assets.js_compressor = Uglifier.new(harmony: true)\n\n"},"api/app.html":{"url":"api/app.html","title":"Ovto::App","keywords":"","body":"Ovto::App\nFirst of all, you need to define a subclass of Ovto::App and define class State,\nclass Actions and class MainComponent in it.\nExample\nThis is a smallest Ovto app.\nrequire 'opal'\nrequire 'ovto'\n\nclass MyApp \nIt renders a button and does nothing else. Let's have some fun:\nrequire 'opal'\nrequire 'ovto'\n\nclass MyApp { actions.update_color },\n }\n end\n end\nend\n\nMyApp.run(id: 'ovto')\n\nHere we added color_idx to app state and update_color action to change it.\nThe button is updated to have the color indicated by color_idx and\nnow has onclick event handler which executes the action.\nCalling actions on startup\nTo invoke certain actions on app startup, define MyApp#setup and use MyApp#actions.\nExample:\nclass MyApp \n"},"api/state.html":{"url":"api/state.html","title":"Ovto::State","keywords":"","body":"Ovto::State\nOvto::State is like a hash, but members are accessible with name rather than [].\nExample\nclass State 1\nstate.bar #=> 2\n\nDefault value\nclass State 1\nstate.bar #=> 2\n\nImmutable\nState objects are immutable. i.e. you cannot update value of a key. Instead, use State#merge.\nstate = State.new(foo: 1, bar: 2)\nnew_state = state.merge(bar: 3)\nnew_state.foo #=> 1\nnew_state.bar #=> 3\n\nNesting state\nFor practical apps, you can nest State like this.\nclass Book \nDefining instance methods of state\nYou can define instance methods of state.\nclass Book \"Hello world (taro)\"\n\nDefining class methods of state\nOvto does not have a class like StateList. Just use Array to represent a list of state.\nYou can define class methods to manipulate a list of state.\nclass Book \n"},"api/actions.html":{"url":"api/actions.html","title":"Ovto::Actions","keywords":"","body":"Ovto::Actions\nActions are the only way to change the state. Actions must be defined as methods of\nthe Actions class. Here is some more conventions:\n\nYou must use keyword arguments\nYou must return state updates as a Hash. It will be merged into the app state.\nYou can get the current state by state method\n\nExample:\nrequire 'opal'\nrequire 'ovto'\n\nclass MyApp { actions.increment(by: 1) }\n end\n end\nend\n\nMyApp.run(id: 'ovto')\n\nCalling actions\nActions can be called from components via actions method. This is an instance of\nOvto::WiredActions and has methods of the same name as your Actions class.\n o 'button', onclick: ->{ actions.increment(by: 1) }\nArguments are almost the same as the original but you don't need to provide state;\nit is automatically passed by Ovto::WiredActions class. It also updates the app\nstate with the return value of the action, and schedules rendering the view.\nSkipping state update\nAn action may return nil when no app state changes are needed.\nPromises are also special values which does not cause state changes (see the next section).\nAsync actions\nWhen calling server apis, you cannot tell how the app state will change until the server responds.\nIn such cases, you can call another action via actions to tell Ovto to reflect the api result to the app state.\nExample:\n class Actions \n"},"api/component.html":{"url":"api/component.html","title":"Ovto::Component","keywords":"","body":"Ovto::Component\nAn Ovto app must have MainComponent class, a subclass of Ovto::Component.\n'render' method\nrender is the only method you need to define in the MainComponent class.\nYou can get the global app state by calling state method.\n class MainComponent \nMoreThanOneNode error\nIf you missed the surrounding 'div' tag, Ovto raises an MoreThanOneNode error. render must create a single DOM node.\n def render\n o 'h1', 'Your todos'\n o 'ul' do\n state.todos.each do |todo|\n o 'li', todo.title\n end\n end\n end\n\n#=> $MoreThanOneNode {name: \"MoreThanOneNode\", ...}\n\nThe 'o' method\n\nOvto::Component#o describes your app's view. For example:\no 'div'\n#=> \n\no 'div', 'Hello.'\n#=> Hello.\n\nYou can pass attributes with a Hash.\no 'div', class: 'main', 'Hello.'\n#=> Hello.\n\nThere are shorthand notations for classes and ids.\no 'div.main'\n#=> Hello.\n\no 'div#main'\n#=> Hello.\n\nYou can also give a block to specify its content.\no 'div' do\n 'Hello.'\nend\n#=> Hello.\n\no 'div' do\n o 'h1', 'Hello.'\nend\n#=> Hello.\n\nSpecial attribute: style\n\nThere are some special keys for the attributes Hash. style: key takes a hash as \nits value and specifies styles of the tag.\no 'div', style: {color: 'red'}, 'Hello.'\n#=> Hello.\n\nSpecial attribute: onxx\nAn attribute starts with \"on\" specifies an event handler.\nFor example:\no 'input', {\n type: 'button',\n onclick: ->(e){ p e.target.value },\n value: 'Hello.'\n}\n\nThe argument e is an instance of Opal::Native and wraps the JavaScript event object.\nYou can get the input value with e.target.value here.\nLifecycle events\nThere are special events oncreate, onupdate, onremove, ondestroy.\nhttps://github.com/hyperapp/hyperapp#lifecycle-events\nSpecial attribute: key\nhttps://github.com/hyperapp/hyperapp#keys\nSub components\no can take another component class to render.\n # Sub component\n class TodoList \nText node\nSometimes you may want to create a text node.\n#=> Age: 12\n# ~~~~~\n# |\n# +--Raw text (not enclosed by an inner tag)\n\no generates a text node when 'text' is specified as tag name. The above\nHTML could be described like this.\no 'div' do\n o 'text', 'Age:'\n o 'span', '12'\nend\n\n"},"api/fetch.html":{"url":"api/fetch.html","title":"Ovto.fetch","keywords":"","body":"Ovto.fetch\nOvto provides wrapper of Fetch API, for convenience of calling typical server-side APIs (eg. those generated by rails scaffold command.)\nOvto.fetch returns Opal's Promise object that calls the API with the specified parameters.\nExamples\nGET\nOvto.fetch('/api/tasks').then{|json_data|\n p json_data\n}.fail{|e| # Network error, 404 Not Found, JSON parse error, etc.\n p e\n}\n\nPOST\nOvto.fetch('/api/new_task', 'POST', {title: \"do something\"}).then{|json_data|\n p json_data\n}.fail{|e| # Network error, 404 Not Found, JSON parse error, etc.\n p e\n}\n\nPUT\nOvto.fetch('/api/tasks/1', 'PUT', {title: \"do something\"}).then{|json_data|\n p json_data\n}.fail{|e| # Network error, 404 Not Found, JSON parse error, etc.\n p e\n}\n\nCSRF tokens\nYou don't need to care about CSRF tokens if the server is a Rails app because Ovto.fetch automatically send X-CSRF-Token header if the page contains a meta tag like .\n"},"guides/debugging.html":{"url":"guides/debugging.html","title":"Debugging","keywords":"","body":"Debugging Ovto app\nconsole.log\nIn an Ovto app, you can print any object to developer console by console.log\nlike in JavaScript. \nconsole.log(state: State.new)\n\nThis is mostly equal to p state: State.new but console.log supports\nJavaScript objects too.\n(Note: this is not an official feature of Opal. You can do this setup by this:)\n require 'console'; def console; $console; end\n\novto-debug\nIf the page has a tag with id='ovto-debug', exception is shown in the tag.\nOvto.debug_trace\nIf Ovto.debug_trace is set to true, some diagnostic messages are shown in the browser console.\nOvto.debug_trace = true\nMyApp.run(id: 'ovto')\n\n"},"guides/development.html":{"url":"guides/development.html","title":"Development","keywords":"","body":"Development notes\nHow to run unit test\n\ngit clone\nbundle install\nbundle exec rake\n\nHow to rebuild docs\nbundle exec doc:build\n"}}}
@@ -2,7 +2,7 @@ PATH
2
2
  remote: ../..
3
3
  specs:
4
4
  ovto (0.4.1)
5
- opal (~> 0.11)
5
+ opal (>= 0.11, < 2)
6
6
  rack (~> 2.0)
7
7
  thor (~> 0.20)
8
8
 
@@ -26,7 +26,7 @@ GEM
26
26
  tilt (>= 1.4)
27
27
  parser (2.3.3.1)
28
28
  ast (~> 2.2)
29
- rack (2.0.7)
29
+ rack (2.0.8)
30
30
  rack-protection (2.0.5)
31
31
  rack
32
32
  sinatra (2.0.5)
@@ -2,7 +2,7 @@ PATH
2
2
  remote: ../..
3
3
  specs:
4
4
  ovto (0.4.1)
5
- opal (~> 0.11)
5
+ opal (>= 0.11, < 2)
6
6
  rack (~> 2.0)
7
7
  thor (~> 0.20)
8
8
 
@@ -10,18 +10,14 @@ GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
12
  ast (2.4.0)
13
- hike (1.2.3)
14
13
  ifchanged (1.0.1)
15
- opal (0.11.4)
14
+ opal (1.0.2)
16
15
  ast (>= 2.3.0)
17
- hike (~> 1.2)
18
- parser (= 2.3.3.1)
19
- sourcemap (~> 0.1.0)
20
- parser (2.3.3.1)
21
- ast (~> 2.2)
22
- rack (2.0.7)
16
+ parser (~> 2.6)
17
+ parser (2.6.5.0)
18
+ ast (~> 2.4.0)
19
+ rack (2.0.8)
23
20
  rake (12.3.2)
24
- sourcemap (0.1.1)
25
21
  thor (0.20.3)
26
22
 
27
23
  PLATFORMS
@@ -3,6 +3,7 @@ if RUBY_ENGINE == 'opal'
3
3
  require_relative 'ovto/actions'
4
4
  require_relative 'ovto/app'
5
5
  require_relative 'ovto/component'
6
+ require_relative 'ovto/pure_component'
6
7
  require_relative 'ovto/fetch'
7
8
  require_relative 'ovto/runtime'
8
9
  require_relative 'ovto/state'
@@ -17,6 +17,8 @@ module Ovto
17
17
  @wired_actions = wired_actions
18
18
  # Initialize here for the unit tests
19
19
  @vdom_tree = []
20
+ @components = []
21
+ @components_index = 0
20
22
  end
21
23
 
22
24
  def render
@@ -32,23 +34,23 @@ module Ovto
32
34
  # Render entire MyApp::MainComponent
33
35
  # Called from runtime.rb
34
36
  def render_view(state)
35
- do_render(state: state)
37
+ do_render({}, state)
36
38
  end
37
39
 
38
- def do_render(**args)
40
+ def do_render(args, state)
39
41
  Ovto.debug_trace_log("rendering #{self}")
40
42
  @vdom_tree = []
43
+ @components_index = 0
41
44
  @done_render = false
42
- @current_state = args[:state]
45
+ @current_state = state
43
46
  parameters = method(:render).parameters
44
47
  if `!parameters` || parameters.nil? || accepts_state?(parameters)
45
48
  # We can pass `state:` safely
46
- return render(**args)
49
+ args_with_state = {state: @current_state}.merge(args)
50
+ return render(args_with_state)
47
51
  else
48
- # Remove `state:` keyword
49
- args_wo_state = args.reject{|k, v| k == :state}
50
52
  # Check it is empty (see https://github.com/opal/opal/issues/1872)
51
- return args_wo_state.empty? ? render() : render(**args_wo_state)
53
+ return args.empty? ? render() : render(**args)
52
54
  end
53
55
  end
54
56
 
@@ -122,9 +124,9 @@ module Ovto
122
124
 
123
125
  def extract_attrs(tag_name)
124
126
  case tag_name
125
- when /^([^.#]*)\.([-_\w]+)(\#([-_\w]+))?/ # a.b#c
127
+ when /^([^.#]*)\.([-\w]+)(\#([-\w]+))?/ # a.b#c
126
128
  tag_name, class_name, id = ($1.empty? ? 'div' : $1), $2, $4
127
- when /^([^.#]*)\#([-_\w]+)(\.([-_\w]+))?/ # a#b.c
129
+ when /^([^.#]*)\#([-\w]+)(\.([-\w]+))?/ # a#b.c
128
130
  tag_name, class_name, id = ($1.empty? ? 'div' : $1), $4, $2
129
131
  else
130
132
  class_name = id = nil
@@ -191,9 +193,20 @@ module Ovto
191
193
  end
192
194
 
193
195
  def render_component(comp_class, args, children)
194
- comp = comp_class.new(@wired_actions)
195
- render_args = {state: @current_state}.merge(args)
196
- return comp.do_render(**render_args){ children }
196
+ comp = new_component(comp_class)
197
+ return comp.do_render(args, @current_state){ children }
198
+ end
199
+
200
+ def new_component(comp_class)
201
+ comp = @components[@components_index]
202
+ if comp.is_a?(comp_class)
203
+ @components_index += 1
204
+ return comp
205
+ end
206
+
207
+ comp = @components[@components_index] = comp_class.new(@wired_actions)
208
+ @components_index += 1
209
+ comp
197
210
  end
198
211
 
199
212
  def render_tag(tag_name, attributes, children)
@@ -7,7 +7,7 @@ module Ovto
7
7
  # The server must respond a json text.
8
8
  #
9
9
  # Example:
10
- # Ovto.fetch('/api/new_task', 'POST', {title: "do something"}){|json_data|
10
+ # Ovto.fetch('/api/new_task', 'POST', {title: "do something"}).then{|json_data|
11
11
  # p json_data
12
12
  # }.fail{|e| # Network error, 404 Not Found, JSON parse error, etc.
13
13
  # p e
@@ -0,0 +1,22 @@
1
+ module Ovto
2
+ class PureComponent < Component
3
+ class StateIsNotAvailable < StandardError; end
4
+
5
+ def initialize(wired_actions)
6
+ super
7
+ @prev_props = nil
8
+ @cache = nil
9
+ end
10
+
11
+ def do_render(args, state)
12
+ return @cache if args == @prev_props
13
+
14
+ @prev_props = args
15
+ @cache = super
16
+ end
17
+
18
+ def state
19
+ raise StateIsNotAvailable, "Cannot use state in PureComponent"
20
+ end
21
+ end
22
+ end