ovto 0.2.3 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/CHANGELOG.md +9 -1
  4. data/Gemfile.lock +6 -6
  5. data/README.md +7 -5
  6. data/Rakefile +2 -0
  7. data/book/api/actions.md +2 -2
  8. data/book/api/app.md +6 -6
  9. data/book/api/component.md +6 -6
  10. data/book/guides/debugging.md +9 -0
  11. data/book/guides/tutorial.md +12 -12
  12. data/docs/api/Ovto.html +168 -20
  13. data/docs/api/Ovto/Actions.html +1 -1
  14. data/docs/api/Ovto/App.html +1 -1
  15. data/docs/api/Ovto/Component.html +1 -1
  16. data/docs/api/Ovto/Component/MoreThanOneNode.html +1 -1
  17. data/docs/api/Ovto/Runtime.html +1 -1
  18. data/docs/api/Ovto/State.html +1 -1
  19. data/docs/api/Ovto/State/MissingValue.html +1 -1
  20. data/docs/api/Ovto/State/UnknownKey.html +1 -1
  21. data/docs/api/Ovto/WiredActions.html +1 -1
  22. data/docs/api/_index.html +1 -1
  23. data/docs/api/actions.html +4 -4
  24. data/docs/api/app.html +8 -8
  25. data/docs/api/component.html +8 -8
  26. data/docs/api/fetch.html +392 -0
  27. data/docs/api/file.README.html +10 -8
  28. data/docs/api/index.html +10 -8
  29. data/docs/api/method_list.html +59 -35
  30. data/docs/api/state.html +2 -2
  31. data/docs/api/top-level-namespace.html +1 -1
  32. data/docs/gitbook/gitbook.js +2 -2
  33. data/docs/gitbook/theme.js +1 -1
  34. data/docs/guides/debugging.html +7 -2
  35. data/docs/guides/development.html +2 -2
  36. data/docs/guides/tutorial.html +14 -14
  37. data/docs/index.html +12 -68
  38. data/docs/search_index.json +1 -1
  39. data/{example → examples}/sinatra/Gemfile +0 -0
  40. data/{example → examples}/sinatra/Gemfile.lock +10 -22
  41. data/{example → examples}/sinatra/README.md +1 -1
  42. data/{example → examples}/sinatra/app.rb +0 -0
  43. data/{example → examples}/sinatra/config.ru +0 -9
  44. data/{example → examples}/sinatra/ovto/app.rb +2 -2
  45. data/{example → examples}/sinatra/public/style.css +0 -0
  46. data/{example → examples}/sinatra/public/todomvc-app-css_index.css +0 -0
  47. data/{example → examples}/sinatra/public/todomvc-common_base.css +0 -0
  48. data/{example → examples}/sinatra/views/index.erb +1 -1
  49. data/{example → examples}/static/Gemfile +0 -0
  50. data/{example → examples}/static/Gemfile.lock +2 -2
  51. data/{example → examples}/static/README.md +1 -1
  52. data/{example → examples}/static/Rakefile +0 -0
  53. data/{example → examples}/static/app.rb +2 -2
  54. data/{example → examples}/static/index.html +1 -1
  55. data/index.html +44 -0
  56. data/lib/ovto.rb +8 -0
  57. data/lib/ovto/app.rb +18 -1
  58. data/lib/ovto/component.rb +2 -1
  59. data/lib/ovto/version.rb +1 -1
  60. data/ovtologo.odg +0 -0
  61. data/ovtologo.png +0 -0
  62. data/website/screen.css +18 -0
  63. metadata +23 -19
  64. data/example/static/app.js +0 -24808
@@ -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
 
@@ -289,7 +289,7 @@
289
289
 
290
290
  <h1 id="getting-started">Getting Started</h1>
291
291
  <p>This is a tutorial of making an Ovto app. We create a static app (.html + .js) here,
292
- but you can embed Ovto apps into a Rails or Sinatra app (See <code>./example/*</code>).</p>
292
+ but you can embed Ovto apps into a Rails or Sinatra app (See <code>./examples/*</code>).</p>
293
293
  <p>This is the final Ruby code.</p>
294
294
  <pre><code>require &apos;ovto&apos;
295
295
 
@@ -313,7 +313,7 @@ class MyApp &lt; Ovto::App
313
313
  end
314
314
  end
315
315
 
316
- class View &lt; Ovto::Component
316
+ class MainComponent &lt; Ovto::Component
317
317
  def render(state:)
318
318
  o &apos;div&apos; do
319
319
  o &apos;span&apos;, &apos;Celcius:&apos;
@@ -333,7 +333,7 @@ class MyApp &lt; Ovto::App
333
333
  end
334
334
  end
335
335
 
336
- MyApp.run(id: &apos;ovto-view&apos;)
336
+ MyApp.run(id: &apos;ovto&apos;)
337
337
  </code></pre><p>Let&apos;s take a look step-by-step.</p>
338
338
  <h2 id="prerequisites">Prerequisites</h2>
339
339
  <ul>
@@ -355,7 +355,7 @@ gem &apos;rake&apos;
355
355
  <span class="hljs-tag">&lt;<span class="hljs-name">script</span> <span class="hljs-attr">type</span>=<span class="hljs-string">&apos;text/javascript&apos;</span> <span class="hljs-attr">src</span>=<span class="hljs-string">&apos;app.js&apos;</span>&gt;</span><span class="undefined"></span><span class="hljs-tag">&lt;/<span class="hljs-name">script</span>&gt;</span>
356
356
  <span class="hljs-tag">&lt;/<span class="hljs-name">head</span>&gt;</span>
357
357
  <span class="hljs-tag">&lt;<span class="hljs-name">body</span>&gt;</span>
358
- <span class="hljs-tag">&lt;<span class="hljs-name">div</span> <span class="hljs-attr">id</span>=<span class="hljs-string">&apos;ovto-view&apos;</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">div</span>&gt;</span>
358
+ <span class="hljs-tag">&lt;<span class="hljs-name">div</span> <span class="hljs-attr">id</span>=<span class="hljs-string">&apos;ovto&apos;</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">div</span>&gt;</span>
359
359
  <span class="hljs-tag">&lt;<span class="hljs-name">div</span> <span class="hljs-attr">id</span>=<span class="hljs-string">&apos;ovto-debug&apos;</span>&gt;</span><span class="hljs-tag">&lt;/<span class="hljs-name">div</span>&gt;</span>
360
360
  <span class="hljs-tag">&lt;/<span class="hljs-name">body</span>&gt;</span>
361
361
  <span class="hljs-tag">&lt;/<span class="hljs-name">html</span>&gt;</span>
@@ -371,7 +371,7 @@ gem &apos;rake&apos;
371
371
  <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">Actions</span> &lt; Ovto::Actions</span>
372
372
  <span class="hljs-keyword">end</span>
373
373
 
374
- <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">View</span> &lt; Ovto::Component</span>
374
+ <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">MainComponent</span> &lt; Ovto::Component</span>
375
375
  <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">render</span><span class="hljs-params">(<span class="hljs-symbol">state:</span>)</span></span> <span class="hljs-comment"># Don&apos;t miss the `:`. This is not a typo but</span>
376
376
  o <span class="hljs-string">&apos;div&apos;</span> <span class="hljs-keyword">do</span> <span class="hljs-comment"># a &quot;mandatory keyword argument&quot;.</span>
377
377
  o <span class="hljs-string">&apos;h1&apos;</span>, <span class="hljs-string">&quot;HELLO&quot;</span> <span class="hljs-comment"># All of the Ovto methods take keyword arguments.</span>
@@ -380,11 +380,11 @@ gem &apos;rake&apos;
380
380
  <span class="hljs-keyword">end</span>
381
381
  <span class="hljs-keyword">end</span>
382
382
 
383
- MyApp.run(<span class="hljs-symbol">id:</span> <span class="hljs-string">&apos;ovto-view&apos;</span>)
383
+ MyApp.run(<span class="hljs-symbol">id:</span> <span class="hljs-string">&apos;ovto&apos;</span>)
384
384
  </code></pre>
385
385
  <ul>
386
386
  <li>The name <code>MyApp</code> is arbitrary.</li>
387
- <li>The id <code>ovto-view</code> corresponds to the <code>div</code> tag in <code>index.html</code>.</li>
387
+ <li>The id <code>ovto</code> corresponds to the <code>div</code> tag in <code>index.html</code>.</li>
388
388
  </ul>
389
389
  <h2 id="compile">Compile</h2>
390
390
  <p>Generate app.js from app.rb.</p>
@@ -414,8 +414,8 @@ each other. First, add an item to <code>MyApp::State</code>.</p>
414
414
  </code></pre>
415
415
  <p>Now an item <code>celsius</code> is added to the global app state. Its value is <code>0</code> when
416
416
  the app starts. You can read this value by <code>state.celsius</code>. Let&apos;s display the
417
- value with <code>MyApp::View</code>.</p>
418
- <pre><code class="lang-rb"> <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">View</span> &lt; Ovto::Component</span>
417
+ value with <code>MyApp::MainComponent</code>.</p>
418
+ <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>
419
419
  <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">render</span><span class="hljs-params">(<span class="hljs-symbol">state:</span>)</span></span>
420
420
  o <span class="hljs-string">&apos;div&apos;</span> <span class="hljs-keyword">do</span>
421
421
  o <span class="hljs-string">&apos;span&apos;</span>, <span class="hljs-string">&apos;Celcius:&apos;</span>
@@ -436,8 +436,8 @@ convert.</p>
436
436
  <span class="hljs-keyword">end</span>
437
437
  <span class="hljs-keyword">end</span>
438
438
  </code></pre>
439
- <p>Now you can know the value by <code>state.fahrenheit</code>. Update the <code>View</code> to show the value too.</p>
440
- <pre><code> class View &lt; Ovto::Component
439
+ <p>Now you can know the value by <code>state.fahrenheit</code>. Update <code>MainComponent</code> to show the value too.</p>
440
+ <pre><code> class MainComponent &lt; Ovto::Component
441
441
  def render(state:)
442
442
  o &apos;div&apos; do
443
443
  o &apos;span&apos;, &apos;Celcius:&apos;
@@ -461,7 +461,7 @@ the updates to the state. This return value is <code>merge</code>d into the glob
461
461
  <span class="hljs-keyword">end</span>
462
462
  <span class="hljs-keyword">end</span>
463
463
  </code></pre>
464
- <p>This action can be called by <code>actions.set_celsius</code> from the View. Replace the
464
+ <p>This action can be called by <code>actions.set_celsius</code> from MainComponent. Replace the
465
465
  first input tag with this:</p>
466
466
  <pre><code class="lang-rb"> o <span class="hljs-string">&apos;input&apos;</span>, {
467
467
  <span class="hljs-symbol">type:</span> <span class="hljs-string">&apos;text&apos;</span>,
@@ -545,7 +545,7 @@ Fahrenheit degree into Celsius and set it to the global state.</p>
545
545
  <script>
546
546
  var gitbook = gitbook || [];
547
547
  gitbook.push(function() {
548
- gitbook.page.hasChanged({"page":{"title":"Getting Started","level":"1.2","depth":1,"next":{"title":"API","level":"1.3","depth":1,"ref":"","articles":[{"title":"Ovto::App","level":"1.3.1","depth":2,"path":"api/app.md","ref":"api/app.md","articles":[]},{"title":"Ovto::State","level":"1.3.2","depth":2,"path":"api/state.md","ref":"api/state.md","articles":[]},{"title":"Ovto::Actions","level":"1.3.3","depth":2,"path":"api/actions.md","ref":"api/actions.md","articles":[]},{"title":"Ovto::Component","level":"1.3.4","depth":2,"path":"api/component.md","ref":"api/component.md","articles":[]},{"title":"Ovto.fetch","level":"1.3.5","depth":2,"path":"api/fetch.md","ref":"api/fetch.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":"2018-06-01T11:09:14.000Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2018-11-13T07:32:25.426Z"},"basePath":"..","book":{"language":""}});
548
+ gitbook.page.hasChanged({"page":{"title":"Getting Started","level":"1.2","depth":1,"next":{"title":"API","level":"1.3","depth":1,"ref":"","articles":[{"title":"Ovto::App","level":"1.3.1","depth":2,"path":"api/app.md","ref":"api/app.md","articles":[]},{"title":"Ovto::State","level":"1.3.2","depth":2,"path":"api/state.md","ref":"api/state.md","articles":[]},{"title":"Ovto::Actions","level":"1.3.3","depth":2,"path":"api/actions.md","ref":"api/actions.md","articles":[]},{"title":"Ovto::Component","level":"1.3.4","depth":2,"path":"api/component.md","ref":"api/component.md","articles":[]},{"title":"Ovto.fetch","level":"1.3.5","depth":2,"path":"api/fetch.md","ref":"api/fetch.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":"2018-12-24T12:03:03.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2018-12-24T12:23:40.758Z"},"basePath":"..","book":{"language":""}});
549
549
  });
550
550
  </script>
551
551
  </div>
data/docs/index.html CHANGED
@@ -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
 
@@ -288,74 +288,18 @@
288
288
  <section class="normal markdown-section">
289
289
 
290
290
  <h1 id="ovto">Ovto</h1>
291
- <p>Client-side web framework for Opal, inspired by hyperapp</p>
292
- <h2 id="documents">Documents</h2>
291
+ <p>Client-side framework for Rubyist</p>
292
+ <p><img src="../ovtologo.png" alt="logo"></p>
293
+ <h2 id="overview">Overview</h2>
294
+ <p>Ovto is a micro-framework built with <a href="https://opalrb.com" target="_blank">Opal</a>. With Ovto, you can develop SPA(Single-Page Application)s with Ruby.</p>
295
+ <p>There are only four classes to understand Ovto:</p>
293
296
  <ul>
294
- <li><a href="https://yhara.github.io/ovto/" target="_blank">Book</a></li>
295
- <li><a href="https://yhara.github.io/ovto/api/" target="_blank">yardoc</a></li>
297
+ <li>Ovto::App (The application)</li>
298
+ <li>Ovto::State (An immutable object that represents application state)</li>
299
+ <li>Ovto::Actions (Methods that modifies the app state)</li>
300
+ <li>Ovto::Component (Defines DOMs for a given app state)</li>
296
301
  </ul>
297
- <h2 id="example">Example</h2>
298
- <p><img src="screenshot.png" alt="screenshot"></p>
299
- <pre><code class="lang-rb"><span class="hljs-keyword">require</span> <span class="hljs-string">&apos;ovto&apos;</span>
300
-
301
- <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">MyApp</span> &lt; Ovto::App</span>
302
- <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">State</span> &lt; Ovto::State</span>
303
- item <span class="hljs-symbol">:celsius</span>, <span class="hljs-symbol">default:</span> <span class="hljs-number">0</span>
304
-
305
- <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">fahrenheit</span></span>
306
- (celsius * <span class="hljs-number">9</span> / <span class="hljs-number">5.0</span>) + <span class="hljs-number">32</span>
307
- <span class="hljs-keyword">end</span>
308
- <span class="hljs-keyword">end</span>
309
-
310
- <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">Actions</span> &lt; Ovto::Actions</span>
311
- <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">state:</span>, <span class="hljs-symbol">value:</span>)</span></span>
312
- <span class="hljs-keyword">return</span> {<span class="hljs-symbol">celsius:</span> value}
313
- <span class="hljs-keyword">end</span>
314
-
315
- <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">state:</span>, <span class="hljs-symbol">value:</span>)</span></span>
316
- new_celsius = (value - <span class="hljs-number">32</span>) * <span class="hljs-number">5</span> / <span class="hljs-number">9.0</span>
317
- <span class="hljs-keyword">return</span> {<span class="hljs-symbol">celsius:</span> new_celsius}
318
- <span class="hljs-keyword">end</span>
319
- <span class="hljs-keyword">end</span>
320
-
321
- <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">View</span> &lt; Ovto::Component</span>
322
- <span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">render</span><span class="hljs-params">(<span class="hljs-symbol">state:</span>)</span></span>
323
- o <span class="hljs-string">&apos;div&apos;</span> <span class="hljs-keyword">do</span>
324
- o <span class="hljs-string">&apos;span&apos;</span>, <span class="hljs-string">&apos;Celcius:&apos;</span>
325
- o <span class="hljs-string">&apos;input&apos;</span>, {
326
- <span class="hljs-symbol">type:</span> <span class="hljs-string">&apos;text&apos;</span>,
327
- <span class="hljs-symbol">onchange:</span> -&gt;(e){ actions.set_celsius(<span class="hljs-symbol">value:</span> e.target.value.to_i) },
328
- <span class="hljs-symbol">value:</span> state.celsius
329
- }
330
- o <span class="hljs-string">&apos;span&apos;</span>, <span class="hljs-string">&apos;Fahrenheit:&apos;</span>
331
- o <span class="hljs-string">&apos;input&apos;</span>, {
332
- <span class="hljs-symbol">type:</span> <span class="hljs-string">&apos;text&apos;</span>,
333
- <span class="hljs-symbol">onchange:</span> -&gt;(e){ actions.set_fahrenheit(<span class="hljs-symbol">value:</span> e.target.value.to_i) },
334
- <span class="hljs-symbol">value:</span> state.fahrenheit
335
- }
336
- <span class="hljs-keyword">end</span>
337
- <span class="hljs-keyword">end</span>
338
- <span class="hljs-keyword">end</span>
339
- <span class="hljs-keyword">end</span>
340
-
341
- MyApp.run(<span class="hljs-symbol">id:</span> <span class="hljs-string">&apos;ovto-view&apos;</span>)
342
- </code></pre>
343
- <p>See the <a href="https://yhara.github.io/ovto/guides/tutorial.html" target="_blank">book</a> for details.</p>
344
- <h2 id="setup">Setup</h2>
345
- <h3 id="static">Static</h3>
346
- <p><a href="example/static">./example/static</a> demonstrates how to convert Ovto app
347
- into a .js file.</p>
348
- <h3 id="ovto--sinatra">Ovto + Sinatra</h3>
349
- <p><a href="example/sinatra">./example/sinatra</a> demonstrates how to serve Ovto app
350
- from Sinatra.</p>
351
- <h3 id="ovto--rails">Ovto + Rails</h3>
352
- <p><a href="https://github.com/yhara/vision" target="_blank">yhara/vision</a> is a working example of using Ovto with Rails 5.</p>
353
- <h2 id="acknowledgements">Acknowledgements</h2>
354
- <ul>
355
- <li><a href="https://github.com/hyperapp/hyperapp" target="_blank">hyperapp</a></li>
356
- </ul>
357
- <h2 id="contact">Contact</h2>
358
- <p><a href="https://github.com/yhara/ovto/issues" target="_blank">https://github.com/yhara/ovto/issues</a></p>
302
+ <p><a href="guides/tutorial.html">Getting Started</a></p>
359
303
 
360
304
 
361
305
  </section>
@@ -395,7 +339,7 @@ from Sinatra.</p>
395
339
  <script>
396
340
  var gitbook = gitbook || [];
397
341
  gitbook.push(function() {
398
- 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-10-31T11:57:20.000Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2018-11-13T07:32:25.426Z"},"basePath":".","book":{"language":""}});
342
+ 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":"2018-12-24T12:23:40.758Z"},"basePath":".","book":{"language":""}});
399
343
  });
400
344
  </script>
401
345
  </div>
@@ -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":{"./":["'fahrenheit:'","'input',","'ovto","'ovto'","'span',","'text',","(e){","+","./example/sinatra","./example/stat",".j","5.",">(e){","acknowledg","actions.set_celsius(value:","actions.set_fahrenheit(value:","app","book","class","client","contact","convert","demonstr","details.","document","e.target.value.to_i)","end","exampl","file.","framework","https://github.com/yhara/ovto/issu","hyperapp","inspir","introduct","myapp","myapp.run(id:","o","onchange:","opal,","ovto","rail","requir","see","serv","setup","side","sinatra","sinatra.","state.celsiu","state.fahrenheit","static","type:","us","value:","view')","web","work","yardoc","yhara/vis","{","}","},"],"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","./example/*).",".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","make","manually,","master","merg","messag","message:","method","misspel","modifi","more:","myapp","myapp.run(id:","myapp::act","myapp::actions.","myapp::state\",","myapp::state\"}","myapp::state.","myapp::view.","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(state:,","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:","value:)","view","view')","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'","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","view","view')","{","}","},"],"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:","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","receiv","reflect","render","requir","responds.","result","return","same","schedul","section).","server","skip","special","state","state.","state:","state;","such","tell","until","updat","us","valu","via","view')","view.","way","{","}"],"api/component.html":["\"morethanonenode\",","\"morethanonenode:","\"myapp::view#rend","\"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","class","class,","class.","class:","compon","components,","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","keyword","lifecycl","message:","method","miss","morethanonenod","myapp::view#rend","name.","need","node","node.","notat","o","object.","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal::n","optional.","ovto","ovto::compon","ovto::component#o","ovto::component.","p","pass","pleas","rais","raw","render","render(state:)","render.","shorthand","singl","something.\",","sometim","special","specifi","stack:","start","state","state.todos.each","state:","state:.","style","style:","sub","subclass","surround","tag","tag)","tag,","tag.","take","text","this.","todo.titl","todolist","todos'","type:","valu","value:","view","view.","want","wrap","{","{color:","{name:","|","|todo|","}","},","~~~~~","…opbox/proj/ovto/example/tutorial/app.js:22887:18)\"}"],"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';","(note:","app","app,","consol","console.log","console.log(state:","console;","debug","debug',","def","develop","end","equal","except","featur","id='ovto","javascript","javascript.","mostli","object","offici","opal.","ovto","p","page","print","requir","setup","shown","state.new","state.new)","state:","support","tag","tag.","this:)","too."],"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.0038684719535783366}}},"1":{"0":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"2":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},"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.014705882352941176}}}},"2":{"1":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}},"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.0019342359767891683}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"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.0019342359767891683}},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"9":{"docs":{},".":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"docs":{}}},"docs":{},"'":{"1":{"2":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"docs":{}},"docs":{},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},":":{"docs":{},"'":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}},"'":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/app.html":{"ref":"api/app.html","tf":0.024390243902439025},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024390243902439025},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},"}":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}},"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.0019342359767891683}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"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.003787878787878788}}}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.022727272727272728}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}}}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}}},"h":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}},"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.022727272727272728}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"u":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"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.022222222222222223}}}}}}}}}}}},"(":{"docs":{},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"g":{"docs":{},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"s":{"docs":{},"e":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},")":{"docs":{},"\"":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},"e":{"docs":{},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}},"+":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},".":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"/":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"*":{"docs":{},")":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"r":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}},"j":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},"s":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},">":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}},"(":{"docs":{},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"{":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.015473887814313346},"api/app.html":{"ref":"api/app.html","tf":0.04878048780487805},"api/actions.html":{"ref":"api/actions.html","tf":0.08823529411764706}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"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.0019342359767891683}},"s":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}},"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":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}}}}}}}}}}}}}}}}}}}},"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.012195121951219513}}}}}}}}}}}}}},"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.014705882352941176}}}}}}}}}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.027079303675048357},"api/app.html":{"ref":"api/app.html","tf":0.024390243902439025},"api/actions.html":{"ref":"api/actions.html","tf":0.04411764705882353},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},"j":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}},"s":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},":":{"5":{"0":{"2":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"r":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"s":{"docs":{},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}},"i":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013539651837524178}}}},"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.0019342359767891683}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}}}},"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.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297}}}},"x":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009671179883945842},"guides/development.html":{"ref":"guides/development.html","tf":0.17647058823529413}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024390243902439025}}}}}}},"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.003787878787878788}}}}}}},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.019342359767891684},"api/app.html":{"ref":"api/app.html","tf":0.07317073170731707},"api/state.html":{"ref":"api/state.html","tf":0.08791208791208792},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"api/component.html":{"ref":"api/component.html","tf":0.015151515151515152}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.022058823529411766},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"c":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"i":{"docs":{},"n":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}}},"i":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.06666666666666667}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}}}}}}},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}}}}},"d":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"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.0019342359767891683}},"e":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"o":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}}},"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.0019342359767891683}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024390243902439025}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.029411764705882353},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}},"u":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},"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.013539651837524178}},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"?":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.029411764705882353}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"f":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.024691358024691357}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}},"f":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},"i":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/app.html":{"ref":"api/app.html","tf":0.036585365853658534},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"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.017408123791102514}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223},"guides/development.html":{"ref":"guides/development.html","tf":10.058823529411764}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":10.044444444444444}},"'":{"docs":{},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}},"o":{"docs":{},"c":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},":":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}}}}},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"'":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"m":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"v":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"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.007575757575757576}},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.04938271604938271},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009671179883945842},"api/app.html":{"ref":"api/app.html","tf":0.036585365853658534},"api/actions.html":{"ref":"api/actions.html","tf":0.022058823529411766},"api/component.html":{"ref":"api/component.html","tf":0.022727272727272728},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"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.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}}}},"e":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"guides/development.html":{"ref":"guides/development.html","tf":0.11764705882352941}},"u":{"docs":{},"t":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"s":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"m":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},",":{"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.007736943907156673},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/component.html":{"ref":"api/component.html","tf":0.01893939393939394}}}}}},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}}},"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.022222222222222223}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}}}},"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.007736943907156673}},"!":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"u":{"docs":{},"n":{"docs":{},":":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}},"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.022222222222222223}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}}}}}}}},"h":{"docs":{},"t":{"docs":{},"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":{},"y":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"/":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"/":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}}}}}}}}}}},"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.003787878787878788}}}}},"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.003787878787878788}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.024691358024691357}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"s":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.026515151515151516}}}}}},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},"l":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"n":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}},"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.0019342359767891683}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013539651837524178},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"s":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}}},"f":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.024390243902439025}}}},".":{"docs":{},"e":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"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}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/app.html":{"ref":"api/app.html","tf":0.036585365853658534},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}}}}},":":{"docs":{},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}}}}},"#":{"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.012195121951219513}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}}}}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673}}}},"n":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"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.0019342359767891683}}}}}}},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"api/component.html":{"ref":"api/component.html","tf":0.015151515151515152}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}},"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}}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},"p":{"docs":{},"e":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"r":{"docs":{},"e":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"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.007575757575757576}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}},"o":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.06818181818181818}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"e":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}},"x":{"docs":{},"x":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673}},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},":":{"docs":{},":":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"'":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}},".":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.07407407407407407},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.015473887814313346},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.06666666666666667}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},":":{"docs":{},":":{"docs":{},"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.014705882352941176}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"api/app.html":{"ref":"api/app.html","tf":10.024390243902438}}}},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":10.007352941176471}}}}},"s":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":10.021978021978022}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"api/component.html":{"ref":"api/component.html","tf":10.003787878787879}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"#":{"docs":{},"o":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}}}}}},".":{"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":{}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"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.044444444444444446}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"l":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"w":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},"k":{"docs":{},"e":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/app.html":{"ref":"api/app.html","tf":0.04878048780487805},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},")":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/actions.html":{"ref":"api/actions.html","tf":0.022058823529411766},"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.0019342359767891683}}}}}},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}},"f":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"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.0019342359767891683}}}}}},"u":{"docs":{},"b":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}},"s":{"docs":{},"e":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"r":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},"e":{"docs":{},"r":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"u":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}},"_":{"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.0019342359767891683}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}}}},"n":{"docs":{},"d":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},"g":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.017408123791102514},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/state.html":{"ref":"api/state.html","tf":0.08791208791208792},"api/actions.html":{"ref":"api/actions.html","tf":0.051470588235294115},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.01160541586073501},"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297},"api/actions.html":{"ref":"api/actions.html","tf":0.022058823529411766}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}}}}},"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.022222222222222223}},"(":{"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.022222222222222223}}}}}},"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.003787878787878788}}}}}}}}}}}}},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}},"#":{"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.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},";":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"c":{"docs":{},"k":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"r":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.0019342359767895},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"u":{"docs":{},"p":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}}}}},"e":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176}}}},"v":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"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.0019342359767891683}}}},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"n":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"\"":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"\"":{"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}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.01893939393939394}}}},"f":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.015151515151515152},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}},"b":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"c":{"docs":{},"h":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"i":{"docs":{},"c":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}}},"a":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},")":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},")":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"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.0019342359767891683}}}}},"o":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"o":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}},"d":{"docs":{},"o":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"s":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"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.0019342359767891683}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176}}}},"x":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.015151515151515152}}}},"s":{"docs":{},"t":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"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.007352941176470588}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009671179883945842},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.022058823529411766}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.015473887814313346},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}},"e":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009671179883945842},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}},"'":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"a":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},"l":{"docs":{},"d":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"y":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}},"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.0019342359767891683}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"/":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"{":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}}}}}},"}":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.014705882352941176},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},",":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}},".":{"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":{},"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.0019342359767891683}}}}}}}}}}}}}}}}}}}}}},"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.0019342359767891683}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"n":{"docs":{},"\"":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}},"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.003787878787878788}}}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}}}}}}}}},"y":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},":":{"docs":{},":":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}},"#":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.015151515151515152},"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.03787878787878788}}}}},"$":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"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.0019342359767891683}}}}}}}}}}},"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.003787878787878788}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},";":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}}}}},"*":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"/":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"=":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}},"[":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"docs":{},"]":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"]":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.0019342359767895}}}},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"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.0019342359767891683}}}}}}},"v":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"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.003787878787878788},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}}}}}}}}}}}},"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.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}},".":{"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.014705882352941176},"api/component.html":{"ref":"api/component.html","tf":0.007575757575757576}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"t":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}},"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.003787878787878788}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"s":{"docs":{},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}},"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.007352941176470588}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}},"e":{"docs":{},"d":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}}}},"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.015473887814313346},"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}},"t":{"docs":{},"h":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012195121951219513}}},"a":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}},"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.007575757575757576}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011363636363636364}}}}}},"i":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588}}}}},"p":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788},"api/fetch.html":{"ref":"api/fetch.html","tf":0.05555555555555555},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.022222222222222223}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"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.0019342359767891683}}},".":{"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.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}},"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.0019342359767891683}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"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.0019342359767891683}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007352941176470588},"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.014705882352941176},"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.022222222222222223}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"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}}}}},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}}},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}}},"…":{"docs":{},"o":{"docs":{},"p":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"j":{"docs":{},"/":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"/":{"docs":{},"t":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},":":{"2":{"2":{"8":{"8":{"7":{"docs":{},":":{"1":{"8":{"docs":{},")":{"docs":{},"\"":{"docs":{},"}":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003787878787878788}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"length":820},"corpusTokens":["\"do","\"hello","\"https://rubygems.org\"","\"ifchanged\"","\"morethanonenode\",","\"morethanonenode:","\"myapp::view#rend","\"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","(and","(compil","(e){","(eg.","(gem","(not","(note:","(or","(see","(taro)\"","(tips:","(valu","*","+",".","./app.rb","./example/*).","./example/sinatra","./example/stat",".j",".js)","/","0","1","1)","1,","10","100","100,","12","2","2)","212","3","3)","32","32)","404","5","5.","9.0","=",">",">(e){",">{","[0","[].","]","abov","access","acknowledg","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:","apps,","arbitrary.","argument","array","async","attribut","attribute:","auto","automat","bar:","block","book","box.","browser","browser.","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","components,","consol","console.log","console.log(state:","console;","constant","contact","contain","content.","conveni","conventions:","conver","convers","conversion.","convert","convert.","correspond","creat","csrf","curious,","debug","debug',","def","default","defin","degre","demonstr","describ","details.","develop","display","div","doc","doc:build","document","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,","found,","framework","fun:","g","gem","gem:","gemfil","gemfile:","gener","get","git","github:","give","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","https://github.com/yhara/ovto/issu","hyperapp","i.e.","id","id='ovto","ids.","ifchang","immut","immutable.","index.html","index.html.","index.html:","indic","inner","input","inspir","instal","install.","instanc","instead,","introduct","invok","it.","item","javascript","javascript'","javascript.","json","json_data","key","key.","keyword","know","left","let'","lifecycl","list","look","make","manipul","manually,","master","member","merg","messag","message:","meta","method","method.","miss","misspel","modifi","more","more:","morethanonenod","mostli","myapp","myapp#actions.","myapp#setup","myapp.run(id:","myapp::act","myapp::actions.","myapp::state\",","myapp::state\"}","myapp::state.","myapp::view#rend","myapp::view.","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.","opal::n","open","optional.","origin","other.","otherwise,","ovto","ovto,","ovto.fetch","ovto.fetch('/api/new_task',","ovto.fetch('/api/tasks'){|json_data|","ovto.fetch('/api/tasks/1',","ovto::act","ovto::app","ovto::compon","ovto::component#o","ovto::component.","ovto::st","ovto::wiredact","ovto::wiredactions.","p","page","page)","parameters)","parameters.","pars","pass","pleas","post","practic","prerequisit","press","print","prohibited.","promis","provid","proxi","put","rail","rais","rake","raw","re","react","read","rebuild","receiv","reflect","releas","reload","render","render(state:)","render.","replac","repres","requir","responds.","result","return","revers","right","rubi","run","same","save","scaffold","schedul","second","section).","see","see:","send","serv","server","set","set_fahrenheit","set_fahrenheit(state:,","setup","shoot","shorthand","show","shown","side","sinatra","sinatra.","singl","skip","smallest","something\"}){|json_data|","something.\",","sometim","somewher","sourc","special","specifi","stack:","start","starts.","startup","startup,","stat,","state","state#merge.","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:.","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","tutori","tutorial,","type:","typic","uncaught","uniniti","unit","until","updat","update_color","us","user","valu","value.","value:","value:)","via","view","view')","view.","want","way","web","work","world","wrap","wrapper","write","x","yardoc","yhara/vis","you.","{","{celsius:","{color:","{name:","{title:","|","|todo|","}","},","}.fail{|e|","~~~~~","…opbox/proj/ovto/example/tutorial/app.js:22887:18)\"}"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Ovto\nClient-side web framework for Opal, inspired by hyperapp\nDocuments\n\nBook\nyardoc\n\nExample\n\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-view')\n\nSee the book for details.\nSetup\nStatic\n./example/static demonstrates how to convert Ovto app\ninto a .js file.\nOvto + Sinatra\n./example/sinatra demonstrates how to serve Ovto app\nfrom Sinatra.\nOvto + Rails\nyhara/vision is a working example of using Ovto with Rails 5.\nAcknowledgements\n\nhyperapp\n\nContact\nhttps://github.com/yhara/ovto/issues\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 ./example/*).\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-view')\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-view 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::View.\n class View \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 the View to show the value too.\n class View 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 the View. 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(state:, 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 View 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-view')\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 provide state: keyword to receive the app state\nYou must return state updates as a Hash. It will be merged into the app state.\n\nExample:\nrequire 'opal'\nrequire 'ovto'\n\nclass MyApp { actions.increment(by: 1) }\n end\n end\nend\n\nMyApp.run(id: 'ovto-view')\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\nYour app must have a View class, a subclass of Ovto::Component.\n'render' method\nrender is the only method you need to define in the View class.\nIt must take the global app state as a keyword argument state:.\n class View \nMoreThanOneNode error\nIf you missed the surrounding 'div' tag, Ovto raises an MoreThanOneNode error. render must create a single DOM node.\n def render(state:)\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\", message: \"MyApp::View#render must generate a single DOM node. Please wrap the tags with a 'div' or something.\", stack: \"MoreThanOneNode: MyApp::View#render must generate …opbox/proj/ovto/example/tutorial/app.js:22887:18)\"}\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 \nFor sub components, the state: keyword of render method is optional. \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.\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(state:,","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:","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:","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","receiv","reflect","render","requir","responds.","result","return","same","schedul","section).","server","skip","special","state","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","class","class,","class.","class:","compon","components,","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","keyword","lifecycl","maincompon","method","miss","morethanonenod","name.","need","node","node.","notat","o","object.","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal::n","optional.","ovto","ovto::compon","ovto::component#o","ovto::component.","p","pass","rais","raw","render","render(state:)","render.","shorthand","singl","sometim","special","specifi","start","state","state.todos.each","state:","state:.","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.003883495145631068}}},"1":{"0":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"2":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}},"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.014814814814814815}}}},"2":{"1":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}}},"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.001941747572815534}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"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.001941747572815534}}},"9":{"docs":{},".":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"docs":{}}},"docs":{},"(":{"docs":{},"a":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"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.001941747572815534}}}}}},"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.001941747572815534}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"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.001941747572815534}}}}},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"s":{"docs":{},"e":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}},"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.027184466019417475},"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.044444444444444446},"api/component.html":{"ref":"api/component.html","tf":0.008},"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.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"j":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}},"s":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},":":{"5":{"0":{"2":{"2":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"r":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"s":{"docs":{},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"i":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}},",":{"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.015533980582524271},"api/app.html":{"ref":"api/app.html","tf":0.04938271604938271},"api/actions.html":{"ref":"api/actions.html","tf":0.08888888888888889}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"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.001941747572815534}},"s":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}},"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.003883495145631068}}}}}}}}}}}}}}}}}}}}}}},"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.014814814814814815}}}}}}}}}}}}}}}}},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}},"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.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.013592233009708738}}}},"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.001941747572815534}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/actions.html":{"ref":"api/actions.html","tf":0.014814814814814815},"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}}}},"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.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.012}},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.012}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"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.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"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.009708737864077669},"guides/development.html":{"ref":"guides/development.html","tf":0.17647058823529413}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"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.005825242718446602}}}},"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.001941747572815534},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}}}}}}}}},"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.004}}}}}}},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.019417475728155338},"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.014814814814814815},"api/component.html":{"ref":"api/component.html","tf":0.016}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.022222222222222223},"api/component.html":{"ref":"api/component.html","tf":0.004}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"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.001941747572815534}}}}},"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.005825242718446602},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.02962962962962963},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}},"s":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}},"u":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}},"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.013592233009708738}},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"?":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"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.003883495145631068},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.02962962962962963}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"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.001941747572815534}},"e":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"o":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.012}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"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.003883495145631068}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}}},"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.004}}}}}},"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.001941747572815534}}}}}}}}}},"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.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}},"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.001941747572815534},"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.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"i":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"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.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"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.017475728155339806}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}}},"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.004}}},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"'":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"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.001941747572815534}}}}}}},"v":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"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.007766990291262136}},"!":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}},"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.003883495145631068}},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.001941747572816}}},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004},"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.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}},"n":{"docs":{"./":{"ref":"./","tf":0.022727272727272728}}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"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.001941747572815534}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}},"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.001941747572815534}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}},"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.013592233009708738},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}},"l":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"n":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"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.004}}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"s":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"=":{"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.003883495145631068}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}}}},".":{"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.004}},"p":{"docs":{},"e":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"r":{"docs":{},"e":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"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.008}}}}}}}}}}}}}},"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.005825242718446602},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.012}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136}}}},"n":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"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.001941747572815534}}}}}}},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.014814814814814815},"api/component.html":{"ref":"api/component.html","tf":0.016}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}},"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.005825242718446602},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}},".":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"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.001941747572815534}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602}}}}}}}}}},"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.001941747572815534}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}},"#":{"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.007766990291262136},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.072}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"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.004}}}}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136}},".":{"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.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"'":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}}},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}}},"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.015533980582524271},"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.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.008},"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.001941747572815534}}},":":{"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.007407407407408}}}},"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.004}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"#":{"docs":{},"o":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}}}}},"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.014814814814814815}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}}}}}}}}},".":{"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.001941747572815534}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136}}}}}}}},"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.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}},"x":{"docs":{},"x":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}},"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.004},"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.001941747572815534}}}}},"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.001941747572815534}}},".":{"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.001941747572815534},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"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.001941747572815534}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"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.001941747572815534}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"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.014814814814814815},"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.001941747572815534}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.022727272727272728},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"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.001941747572815534}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.012}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},")":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"api/app.html":{"ref":"api/app.html","tf":0.04938271604938271},"api/actions.html":{"ref":"api/actions.html","tf":0.014814814814814815},"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.001941747572815534},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602},"api/actions.html":{"ref":"api/actions.html","tf":0.022222222222222223},"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.001941747572815534}}}}}},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}},"f":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}},"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.003883495145631068}}}},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136},"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.001941747572815534},"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"w":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}},"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.001941747572815534}}}}}}},"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.001941747572815534}}}}}},"g":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"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.001941747572815534},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.02}}}},"f":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.016},"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.001941747572816},"api/component.html":{"ref":"api/component.html","tf":0.004}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"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.017475728155339806},"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.05185185185185185},"api/component.html":{"ref":"api/component.html","tf":0.004}},")":{"docs":{"./":{"ref":"./","tf":0.06818181818181818}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.011650485436893204},"api/state.html":{"ref":"api/state.html","tf":0.03296703296703297},"api/actions.html":{"ref":"api/actions.html","tf":0.022222222222222223}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}},"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.003883495145631068}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}}}}},"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.004}}}}}}}}}}}}},",":{"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.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}},";":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"i":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"c":{"docs":{},"k":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"e":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/actions.html":{"ref":"api/actions.html","tf":0.014814814814814815}}}},"v":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}},"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.001941747572815534}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"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.001941747572815534}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"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.014814814814814815},"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.001941747572815534}}}},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"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.004}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"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.001941747572815534}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}}}}},"b":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.012}},"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.004}}}}}}}},"c":{"docs":{},"h":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}},"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.007407407407407408}}}}}},"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.001941747572815534}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"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.007407407407407408}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009708737864077669},"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.022222222222222223}},"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.001941747572815534},"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.007407407407407408}},"e":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"\"":{"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.001941747572815534}}}}}}}}}}}}}}}}}}}}}},"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.001941747572815534}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}},"n":{"docs":{},"\"":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}},"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.004}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.018518518518518517}}}}},"#":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.016},"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.04}}}}},"$":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"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.001941747572815534}}}}}}}}}}},"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.004}}}}}}}}}}}}}}}},"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.004}}}},"docs":{}},"docs":{},"b":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}}},"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.001941747572815534}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"api/app.html":{"ref":"api/app.html","tf":0.024691358024691357},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"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.007407407407407408}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"r":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},"}":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}},"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.001941747572815534}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}},"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.004}}}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.02}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.012}}}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}}}}},"h":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008}}}}},"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.024}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}},"u":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"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.001941747572815534}}},"+":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}}},".":{"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.001941747572815534}}}}}}}},"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.001941747572815534}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},".":{"docs":{},".":{"docs":{},"}":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"/":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"=":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"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.003883495145631068}},"(":{"docs":{},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"{":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}},"[":{"0":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"docs":{},"]":{"docs":{},".":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}},"]":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004},"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.008}},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"t":{"docs":{},"o":{"docs":{},"_":{"docs":{},"i":{"docs":{},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"s":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}},"m":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"n":{"docs":{},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.009708737864077669},"api/app.html":{"ref":"api/app.html","tf":0.037037037037037035},"api/actions.html":{"ref":"api/actions.html","tf":0.022222222222222223},"api/component.html":{"ref":"api/component.html","tf":0.024},"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.004}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"api/component.html":{"ref":"api/component.html","tf":0.004}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}},",":{"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.007766990291262136},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.02}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"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.014814814814814815},"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}}}},"e":{"docs":{},"c":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136},"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.001941747572815534}}}}}}}}},"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.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}},"s":{"docs":{},"h":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.028}}}}}},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"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.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"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.004}}}}},"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.004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.004},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"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.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.012}},".":{"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.014814814814814815},"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602}}}}}},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"t":{"docs":{},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136},"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.003883495145631068}}}}},"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.004}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"_":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},"s":{"docs":{},"}":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}},"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.007407407407407408}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068}}}}},"e":{"docs":{},"d":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004},"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}}}},"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.015533980582524271},"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.004}}}},"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.008}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.008}}}}}},"i":{"docs":{},"l":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"g":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"api/component.html":{"ref":"api/component.html","tf":0.004},"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.004}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.01694915254237288}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602},"api/component.html":{"ref":"api/component.html","tf":0.012}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/component.html":{"ref":"api/component.html","tf":0.004}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},")":{"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.001941747572815534},"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.001941747572815534}}}}},"o":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}},"o":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.003883495145631068},"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.004}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"s":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}},"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.001941747572815534}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}},"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.001941747572815534}},"a":{"docs":{},"l":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602},"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"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.014814814814814815}}}},"x":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.016}}}},"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.015533980582524271},"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.014814814814814815},"api/component.html":{"ref":"api/component.html","tf":0.008}},"e":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136},"api/component.html":{"ref":"api/component.html","tf":0.004}},")":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}},"a":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.014814814814814815}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}}}},"y":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}},"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.001941747572815534}}}}}},"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.001941747572815534}}}}}},"{":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005825242718446602},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.007407407407407408},"api/component.html":{"ref":"api/component.html","tf":0.004}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"i":{"docs":{},"u":{"docs":{},"s":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.001941747572815534},"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}},"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.007766990291262136},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/actions.html":{"ref":"api/actions.html","tf":0.014814814814814815},"api/component.html":{"ref":"api/component.html","tf":0.004},"api/fetch.html":{"ref":"api/fetch.html","tf":0.027777777777777776}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007766990291262136},"api/app.html":{"ref":"api/app.html","tf":0.012345679012345678},"api/component.html":{"ref":"api/component.html","tf":0.004}}},".":{"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.004}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}}},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{},"~":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.004}}}}}}},"x":{"docs":{"api/fetch.html":{"ref":"api/fetch.html","tf":0.009259259259259259}}}},"length":799},"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","components,","consol","console.","console.log","console.log(state:","console;","constant","contain","content.","conveni","conventions:","conver","convers","conversion.","convert.","correspond","creat","csrf","curious,","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","optional.","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","receiv","reflect","releas","reload","render","render(state:)","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(state:,","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:.","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:","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(state:, 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 provide state: keyword to receive the app state\nYou must return state updates as a Hash. It will be merged into the app state.\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.\nIt must take the global app state as a keyword argument state:.\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(state:)\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 \nFor sub components, the state: keyword of render method is optional. \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"}}}
File without changes
@@ -1,24 +1,16 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- ovto (0.2.2)
4
+ ovto (0.3.0)
5
5
  opal (~> 0.11)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (5.2.1)
11
- concurrent-ruby (~> 1.0, >= 1.0.2)
12
- i18n (>= 0.7, < 2)
13
- minitest (~> 5.1)
14
- tzinfo (~> 1.1)
15
10
  ast (2.4.0)
16
11
  backports (3.11.4)
17
- concurrent-ruby (1.1.3)
12
+ concurrent-ruby (1.1.4)
18
13
  hike (1.2.3)
19
- i18n (1.1.1)
20
- concurrent-ruby (~> 1.0)
21
- minitest (5.11.3)
22
14
  multi_json (1.13.1)
23
15
  mustermann (1.0.3)
24
16
  opal (0.11.4)
@@ -26,36 +18,32 @@ GEM
26
18
  hike (~> 1.2)
27
19
  parser (= 2.3.3.1)
28
20
  sourcemap (~> 0.1.0)
29
- opal-sprockets (0.4.1.0.11.0.3.1)
21
+ opal-sprockets (0.4.2.0.11.0.3.1)
30
22
  opal (~> 0.11.0)
31
23
  sprockets (~> 3.1)
32
24
  tilt (>= 1.4)
33
25
  parser (2.3.3.1)
34
26
  ast (~> 2.2)
35
27
  rack (2.0.6)
36
- rack-protection (2.0.4)
28
+ rack-protection (2.0.5)
37
29
  rack
38
- sinatra (2.0.4)
30
+ sinatra (2.0.5)
39
31
  mustermann (~> 1.0)
40
32
  rack (~> 2.0)
41
- rack-protection (= 2.0.4)
33
+ rack-protection (= 2.0.5)
42
34
  tilt (~> 2.0)
43
- sinatra-contrib (2.0.4)
44
- activesupport (>= 4.0.0)
35
+ sinatra-contrib (2.0.5)
45
36
  backports (>= 2.8.2)
46
37
  multi_json
47
38
  mustermann (~> 1.0)
48
- rack-protection (= 2.0.4)
49
- sinatra (= 2.0.4)
39
+ rack-protection (= 2.0.5)
40
+ sinatra (= 2.0.5)
50
41
  tilt (>= 1.3, < 3)
51
42
  sourcemap (0.1.1)
52
43
  sprockets (3.7.2)
53
44
  concurrent-ruby (~> 1.0)
54
45
  rack (> 1, < 3)
55
- thread_safe (0.3.6)
56
- tilt (2.0.8)
57
- tzinfo (1.2.5)
58
- thread_safe (~> 0.1)
46
+ tilt (2.0.9)
59
47
 
60
48
  PLATFORMS
61
49
  ruby
@@ -3,7 +3,7 @@
3
3
  ## How to run
4
4
 
5
5
  ```
6
- $ cd example/sinatra
6
+ $ cd examples/sinatra
7
7
  $ bundle install
8
8
  $ bundle exec rackup
9
9
  $ open http://localhost:9292/
File without changes
@@ -9,15 +9,6 @@ opal = Opal::Sprockets::Server.new {|s|
9
9
 
10
10
  sprockets = opal.sprockets
11
11
  prefix = '/assets'
12
- maps_prefix = '/__OPAL_SOURCE_MAPS__'
13
- maps_app = Opal::SourceMapServer.new(sprockets, maps_prefix)
14
-
15
- # Monkeypatch sourcemap header support into sprockets
16
- ::Opal::Sprockets::SourceMapHeaderPatch.inject!(maps_prefix)
17
-
18
- map maps_prefix do
19
- run maps_app
20
- end
21
12
 
22
13
  map prefix do
23
14
  run sprockets
@@ -152,7 +152,7 @@ class TodoApp < Ovto::App
152
152
  end
153
153
  end
154
154
 
155
- class View < Ovto::Component
155
+ class MainComponent < Ovto::Component
156
156
  def render(state:)
157
157
  o 'section.todoapp' do
158
158
  o Header,
@@ -168,4 +168,4 @@ class TodoApp < Ovto::App
168
168
  end
169
169
  end
170
170
 
171
- TodoApp.run(id: 'ovto-view')
171
+ TodoApp.run(id: 'ovto')
File without changes
@@ -10,7 +10,7 @@
10
10
  </head>
11
11
 
12
12
  <body>
13
- <section id='ovto-view'></section>
13
+ <section id='ovto'></section>
14
14
  <footer class="info">
15
15
  <p>Double-click to edit a todo</p>
16
16
  <p>Created by <a href="http://github.com/yhara/">yhara</a></p>
File without changes
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- ovto (0.2.1)
4
+ ovto (0.3.0)
5
5
  opal (~> 0.11)
6
6
 
7
7
  GEM
@@ -16,7 +16,7 @@ GEM
16
16
  sourcemap (~> 0.1.0)
17
17
  parser (2.3.3.1)
18
18
  ast (~> 2.2)
19
- rake (12.3.1)
19
+ rake (12.3.2)
20
20
  sourcemap (0.1.1)
21
21
 
22
22
  PLATFORMS
@@ -3,7 +3,7 @@
3
3
  ## How to run
4
4
 
5
5
  ```
6
- $ cd example/static
6
+ $ cd examples/static
7
7
  $ bundle install
8
8
  $ rake
9
9
  $ open index.html
File without changes
@@ -20,7 +20,7 @@ class MyApp < Ovto::App
20
20
  end
21
21
  end
22
22
 
23
- class View < Ovto::Component
23
+ class MainComponent < Ovto::Component
24
24
  def render(state:)
25
25
  o 'div' do
26
26
  o 'span', 'Celcius:'
@@ -40,4 +40,4 @@ class MyApp < Ovto::App
40
40
  end
41
41
  end
42
42
 
43
- MyApp.run(id: 'ovto-view')
43
+ MyApp.run(id: 'ovto')
@@ -5,7 +5,7 @@
5
5
  <script type='text/javascript' src='app.js'></script>
6
6
  </head>
7
7
  <body>
8
- <div id='ovto-view'></div>
8
+ <div id='ovto'></div>
9
9
  <div id='ovto-debug'></div>
10
10
  </body>
11
11
  </html>
data/index.html ADDED
@@ -0,0 +1,44 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Ovto - Front-end framework for Rubyist</title>
6
+
7
+ <script src="http://cdnjs.cloudflare.com/ajax/libs/zepto/1.0rc1/zepto.min.js" type="text/javascript"></script>
8
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
9
+
10
+ <script type="text/javascript" charset="utf-8">
11
+ // this must be set absolutely before any other script on the app is loaded for IE7
12
+ document.domain = 'twitter.com';
13
+ </script>
14
+
15
+ <link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
16
+ <link rel="stylesheet" href="website/screen.css" type="text/css" media="screen" />
17
+ </head>
18
+ <body>
19
+ <a href="https://github.com/yhara/ovto"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
20
+ <center>
21
+ <br>
22
+ <br>
23
+ <br>
24
+ <p>
25
+ <h1>O  v  t  o</h1>
26
+ </p>
27
+ <p>
28
+ <a href='docs/index.html'><img class='logo' src='ovtologo.png' /></a>
29
+ </p>
30
+ <p class='subtitle'>
31
+ Frontend Framework for Rubyists
32
+ </p>
33
+ <br>
34
+ <br>
35
+ <br>
36
+ <br>
37
+ <br>
38
+ <br>
39
+ <br>
40
+ <br>
41
+ <br>
42
+ </center>
43
+ </body>
44
+ </html>