ovto 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/.gitmodules +3 -0
  4. data/CHANGELOG.md +22 -0
  5. data/Gemfile +7 -0
  6. data/Gemfile.lock +57 -0
  7. data/LICENSE.txt +44 -0
  8. data/README.md +84 -0
  9. data/Rakefile +41 -0
  10. data/book/README.md +1 -0
  11. data/book/SUMMARY.md +13 -0
  12. data/book/api/actions.md +77 -0
  13. data/book/api/app.md +86 -0
  14. data/book/api/component.md +175 -0
  15. data/book/api/fetch.md +42 -0
  16. data/book/api/state.md +97 -0
  17. data/book/guides/debugging.md +23 -0
  18. data/book/guides/development.md +11 -0
  19. data/book/guides/tutorial.md +288 -0
  20. data/book/screenshot.png +0 -0
  21. data/docs/api/Ovto/Actions.html +135 -0
  22. data/docs/api/Ovto/App.html +531 -0
  23. data/docs/api/Ovto/Component/MoreThanOneNode.html +135 -0
  24. data/docs/api/Ovto/Component.html +350 -0
  25. data/docs/api/Ovto/Runtime.html +315 -0
  26. data/docs/api/Ovto/State/MissingValue.html +135 -0
  27. data/docs/api/Ovto/State/UnknownKey.html +135 -0
  28. data/docs/api/Ovto/State.html +699 -0
  29. data/docs/api/Ovto/WiredActions.html +343 -0
  30. data/docs/api/Ovto.html +319 -0
  31. data/docs/api/_index.html +229 -0
  32. data/docs/api/actions.html +398 -0
  33. data/docs/api/app.html +411 -0
  34. data/docs/api/class_list.html +51 -0
  35. data/docs/api/component.html +469 -0
  36. data/docs/api/css/common.css +1 -0
  37. data/docs/api/css/full_list.css +58 -0
  38. data/docs/api/css/style.css +499 -0
  39. data/docs/api/file.README.html +162 -0
  40. data/docs/api/file_list.html +56 -0
  41. data/docs/api/frames.html +17 -0
  42. data/docs/api/index.html +162 -0
  43. data/docs/api/js/app.js +248 -0
  44. data/docs/api/js/full_list.js +216 -0
  45. data/docs/api/js/jquery.js +4 -0
  46. data/docs/api/method_list.html +243 -0
  47. data/docs/api/state.html +430 -0
  48. data/docs/api/top-level-namespace.html +110 -0
  49. data/docs/gitbook/fonts/fontawesome/FontAwesome.otf +0 -0
  50. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  51. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.svg +685 -0
  52. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
  53. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  54. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 +0 -0
  55. data/docs/gitbook/gitbook-plugin-fontsettings/fontsettings.js +240 -0
  56. data/docs/gitbook/gitbook-plugin-fontsettings/website.css +291 -0
  57. data/docs/gitbook/gitbook-plugin-highlight/ebook.css +135 -0
  58. data/docs/gitbook/gitbook-plugin-highlight/website.css +434 -0
  59. data/docs/gitbook/gitbook-plugin-lunr/lunr.min.js +7 -0
  60. data/docs/gitbook/gitbook-plugin-lunr/search-lunr.js +59 -0
  61. data/docs/gitbook/gitbook-plugin-search/lunr.min.js +7 -0
  62. data/docs/gitbook/gitbook-plugin-search/search-engine.js +50 -0
  63. data/docs/gitbook/gitbook-plugin-search/search.css +35 -0
  64. data/docs/gitbook/gitbook-plugin-search/search.js +213 -0
  65. data/docs/gitbook/gitbook-plugin-sharing/buttons.js +90 -0
  66. data/docs/gitbook/gitbook.js +4 -0
  67. data/docs/gitbook/images/apple-touch-icon-precomposed-152.png +0 -0
  68. data/docs/gitbook/images/favicon.ico +0 -0
  69. data/docs/gitbook/style.css +9 -0
  70. data/docs/gitbook/theme.js +4 -0
  71. data/docs/guides/debugging.html +355 -0
  72. data/docs/guides/development.html +361 -0
  73. data/docs/guides/tutorial.html +571 -0
  74. data/docs/index.html +422 -0
  75. data/docs/screenshot.png +0 -0
  76. data/docs/search_index.json +1 -0
  77. data/example/sinatra/Gemfile +6 -0
  78. data/example/sinatra/Gemfile.lock +59 -0
  79. data/example/sinatra/README.md +21 -0
  80. data/example/sinatra/app.rb +18 -0
  81. data/example/sinatra/config.ru +30 -0
  82. data/example/sinatra/ovto/app.rb +171 -0
  83. data/example/sinatra/public/style.css +4 -0
  84. data/example/sinatra/public/todomvc-app-css_index.css +376 -0
  85. data/example/sinatra/public/todomvc-common_base.css +141 -0
  86. data/example/sinatra/views/index.erb +21 -0
  87. data/example/static/Gemfile +3 -0
  88. data/example/static/Gemfile.lock +30 -0
  89. data/example/static/README.md +10 -0
  90. data/example/static/Rakefile +4 -0
  91. data/example/static/app.js +24808 -0
  92. data/example/static/app.rb +43 -0
  93. data/example/static/index.html +11 -0
  94. data/lib/ovto/actions.rb +10 -0
  95. data/lib/ovto/app.rb +58 -0
  96. data/lib/ovto/component.rb +191 -0
  97. data/lib/ovto/fetch.rb +53 -0
  98. data/lib/ovto/runtime.rb +388 -0
  99. data/lib/ovto/state.rb +69 -0
  100. data/lib/ovto/version.rb +3 -0
  101. data/lib/ovto/wired_actions.rb +33 -0
  102. data/lib/ovto.rb +50 -0
  103. data/ovto.gemspec +22 -0
  104. data/screenshot.png +0 -0
  105. metadata +161 -0
@@ -0,0 +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/rails4","./example/rails5","./example/sinatra","./example/stat",".j",">(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","rails.","requir","rubi","see","serv","setup","side","sinatra","sinatra.","state.celsiu","state.fahrenheit","static","type:","us","value:","view')","web","yardoc","{","}","},"],"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","chang","class","color","color_idx","defin","else.","end","event","exampl","execut","first","fun:","handler","here","indic","it.","let'","myapp","myapp.run(id:","need","noth","now","onclick","ovto","ovto::app","render","requir","smallest","state","state,","subclass","updat","update_color","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'","1)",">{","action","action,","actions.increment(by:","app","argument","automat","call","chang","class","class.","compon","conventions:","defin","don't","end","example:","hash.","here","instanc","keyword","merg","method","method.","more","myapp","myapp.run(id:","name","need","o","onclick:","origin","ovto::act","ovto::wiredact","pass","provid","receiv","render","requir","return","same","schedul","state","state.","state:","state;","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","12",">(e){","abov","age:","anoth","app","app'","argument","attribut","attribute:","block","call","class","class,","class.","class:","compon","content.","creat","def","defin","describ","dom","e","e.target.valu","element.","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.","input","instanc","javascript","key","keyword","lifecycl","message:","method","miss","more","morethanonenod","myapp::view#rend","name.","need","node","node.","notat","note","o","object.","onc","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal::n","ovto","ovto::compon","ovto::component#o","ovto::component.","p","pass","pleas","rais","render","render(state:)","render.","shorthand","singl","something.\",","sometim","special","specifi","stack:","start","state","state.todos.each","state:.","style","style:","sub","subclass","surround","tag","tag,","tag.","take","text","this.","todo.titl","todolist","todos'","too.","type:","valu","value:","view","view.","want","words,","wrap","yield","{","{color:","{name:","|todo|","}","},","…opbox/proj/ovto/example/tutorial/app.js:22887:18)\"}"],"guides/debugging.html":["app","debug","debug',","except","id='ovto","ovto","page","shown","tag","tag."],"guides/development.html":["bundl","clone","develop","doc","doc:build","exec","git","instal","note","rake","rebuild","run","test","unit"]},"length":8},"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.003861003861003861}}},"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.022727272727272728}}}},"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}}}},"5":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},"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.003861003861003861}}}},"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.003861003861003861}}}}}}}}},"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.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}},"'":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/app.html":{"ref":"api/app.html","tf":0.029850746268656716},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}}},"p":{"docs":{},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.029850746268656716},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"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.003861003861003861}}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"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.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}},"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.003861003861003861}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}},"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.003861003861003861}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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.003861003861003861}}}}}}}},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.023166023166023165}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}}}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}}},"h":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722}}}}},"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.023166023166023165}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"u":{"docs":{},"l":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}},"(":{"docs":{},"e":{"docs":{},")":{"docs":{},"{":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},".":{"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}}}}},"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}}}}}}},"+":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},".":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"/":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"4":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},"5":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},"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.003861003861003861}}}}}},"{":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}},"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.029850746268656716},"api/actions.html":{"ref":"api/actions.html","tf":10.079545454545455}},"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.014925373134328358}}}}}}}}}}}}}},"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.022727272727272728}}}}}}}}}}}}}}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}}},",":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}}}},"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":10.014925373134329},"api/actions.html":{"ref":"api/actions.html","tf":0.03409090909090909},"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.08333333333333333}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}},"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.003861003861003861}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}},"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.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722}}}}}}}},"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.011583011583011582}},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}}}}}}}}}}},"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.011363636363636364}}}}}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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.029850746268656716}}}}}}},"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.003861003861003861}}}}}}},"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.07462686567164178},"api/state.html":{"ref":"api/state.html","tf":0.08791208791208792},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.015444015444015444}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.03409090909090909},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}},"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}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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.011363636363636364}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}},"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}}}}},"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.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":10.015444015444016}}}}}},"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.014925373134328358}},"_":{"docs":{},"i":{"docs":{},"d":{"docs":{},"x":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.029850746268656716}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/actions.html":{"ref":"api/actions.html","tf":0.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}},"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}}}}}}}}},"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.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}},"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.007722007722007722}}}}}},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}},"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.003861003861003861}},"i":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366},"api/app.html":{"ref":"api/app.html","tf":0.029850746268656716},"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"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.007722007722007722}}}}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"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.166666666666666}},"'":{"docs":{},",":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.08333333333333333}}}}}}}},"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.011363636363636364}}}}},"m":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}}}},"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.003861003861003861}},".":{"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.007722007722007722}},"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.04477611940298507},"api/actions.html":{"ref":"api/actions.html","tf":0.03409090909090909},"api/component.html":{"ref":"api/component.html","tf":0.023166023166023165}}}},"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.014925373134328358},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}},"e":{"docs":{},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722}}}}}}}},"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.014925373134328358}},"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.08333333333333333}}}}}}},"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.003861003861003861}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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.014925373134328358},"api/component.html":{"ref":"api/component.html","tf":0.019305019305019305}}}}}},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}},"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.014925373134328358}},",":{"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.014925373134328358}}}}}},"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.003861003861003861}}}}},"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.003861003861003861}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}},"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.014925373134328358}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"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.003861003861003861}},",":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722}}}}}},"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.02702702702702703}}}}}},"r":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}},"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.014925373134328358}}}}},"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.003861003861003861}}}}}},"d":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"s":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"=":{"docs":{},"'":{"docs":{},"o":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.08333333333333333}}}}}}}}},"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.029850746268656716}}}},".":{"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.029850746268656716},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}},".":{"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.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}}}}}}},":":{"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.003861003861003861}}}}}}}}}}}}}}}}},"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.011363636363636364}}}},"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.003861003861003861}}}}}}}},"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.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":0.015444015444015444}},".":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}}}},"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.003861003861003861}},"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.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},":":{"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.007722007722007722}}}}}}}}}}}}}}}},"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.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.07335907335907337}},"n":{"docs":{},"c":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},"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.014925373134328358}},":":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}},"x":{"docs":{},"x":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}},"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.003861003861003861}}}}}}},"e":{"docs":{},"n":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"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.014925373134328358},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.16666666666666666}},",":{"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.022727272727272728}},"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":0.029850746268656716}}}},"c":{"docs":{},"t":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}},"s":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"#":{"docs":{},"o":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}}}}}}}}},"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}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"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.011363636363636364}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"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.05970149253731343},"api/actions.html":{"ref":"api/actions.html","tf":0.022727272727272728}}}}}},"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.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{},")":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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}}}}}},"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.022727272727272728}}}}}},"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.011363636363636364}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}}}}}},"u":{"docs":{},"b":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"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}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"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}}}},"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}}}},"_":{"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}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"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.011583011583011582}}}}}},"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.014925373134328358},"api/state.html":{"ref":"api/state.html","tf":10.087912087912088},"api/actions.html":{"ref":"api/actions.html","tf":0.03409090909090909},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},".":{"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.022727272727272728}},"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":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},":":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}}}},"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.003861003861003861}}}}}}}}}}}}},",":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}}},"#":{"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.011363636363636364}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},";":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}},"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.003861003861003861}}}}},"r":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":5.0019342359767895},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},"s":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"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.007722007722007722}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722}}}}}}},"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.022727272727272728}}}},"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.011363636363636364}}}}}}}},"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.08333333333333333}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}},"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.003861003861003861}}}}}}}}},"i":{"docs":{},"m":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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/component.html":{"ref":"api/component.html","tf":0.019305019305019305}}}},"f":{"docs":{},"i":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/component.html":{"ref":"api/component.html","tf":0.015444015444015444}}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}},"b":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}},"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.014925373134328358}}}}}}}}}},"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.003861003861003861}}}}}},"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.007722007722007722},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.08333333333333333}},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861},"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.08333333333333333}}}},"k":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}}}}},"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.003861003861003861}}},":":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"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},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"d":{"docs":{},"o":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}},"s":{"docs":{},"'":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"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":{},"x":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}}}},"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/state.html":{"ref":"api/state.html","tf":0.02197802197802198},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}},"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}}}}},"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.014925373134328358},"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099},"api/actions.html":{"ref":"api/actions.html","tf":0.022727272727272728}},"e":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}}}}}}}}}}}}}},"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.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722}},"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.003861003861003861}},")":{"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.014925373134328358},"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}},"'":{"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.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}},"a":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"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.003861003861003861}}}},"y":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364}}}},"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.007722007722007722}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}},"d":{"docs":{},"s":{"docs":{},",":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"{":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.005802707930367505},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},"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.003861003861003861}}}}}}}},"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.003861003861003861}}}}}}}},"}":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},",":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.007736943907156673},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"\"":{"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.003861003861003861}}}}},"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.003861003861003861}}}},":":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}}}}}}}}}}},"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.003861003861003861}}}}}}}}}}}}}}}}}}},"#":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}},"=":{"docs":{},">":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.04395604395604396},"api/component.html":{"ref":"api/component.html","tf":0.03861003861003861}}}}},"$":{"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.003861003861003861}}}}}}}}}}}}}}}}},"*":{"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.011583011583011582}}}}},"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.003861003861003861}}}}},"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.003861003861003861}}}}}}}},"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.003861003861003861}},"'":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}},".":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683}}}}}}}}}}}}},"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.011583011583011582}},".":{"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.022727272727272728},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"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.014925373134328358}}}}},"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.003861003861003861}}}}}}}}}},"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.011363636363636364}},"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.003861003861003861}}}}}},"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":{},",":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0038684719535783366}}}}},"e":{"docs":{},"d":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"s":{"docs":{},"t":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.02197802197802198}}}}},"o":{"docs":{},"w":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.015473887814313346},"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}}},"t":{"docs":{},"h":{"docs":{"api/app.html":{"ref":"api/app.html","tf":0.014925373134328358}}},"a":{"docs":{},"t":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861},"guides/development.html":{"ref":"guides/development.html","tf":0.058823529411764705}}}},"d":{"docs":{},"e":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.007722007722007722}},".":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.011583011583011582}}}}}}},"p":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{"guides/debugging.html":{"ref":"guides/debugging.html","tf":0.08333333333333333}},")":{"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}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"guides/tutorial.html":{"ref":"guides/tutorial.html","tf":0.0019342359767891683},"api/actions.html":{"ref":"api/actions.html","tf":0.011363636363636364},"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}},"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}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"api/actions.html":{"ref":"api/actions.html","tf":0.022727272727272728}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"api/state.html":{"ref":"api/state.html","tf":0.01098901098901099}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}},"|":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"|":{"docs":{"api/component.html":{"ref":"api/component.html","tf":0.003861003861003861}}}}}}}},"…":{"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.003861003861003861}}}}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"length":694},"corpusTokens":["\"hello","\"https://rubygems.org\"","\"ifchanged\"","\"morethanonenode\",","\"morethanonenode:","\"myapp::view#rend","\"on\"","\"ovto\",","\"state\",","\"state:","\"uniniti","#","#=>","$","$morethanonenod","$nameerror","'12'","'age:'","'bundl","'button',","'div#main'","'div'","'div',","'div.main'","'fahrenheit:'","'h1',","'hello.'","'input',","'li',","'main',","'o'","'opal'","'ovto","'ovto'","'rake'","'red'},","'render'","'span',","'text'","'text',","'ul'","'yhara/ovto'","'your","(.html","(and","(compil","(e){","(gem","(or","(see","(taro)\"","(tips:","(valu","*","+","./app.rb","./example/*).","./example/rails4","./example/rails5","./example/sinatra","./example/stat",".j",".js)","/","0","1","1)","1,","10","100","100,","12","2","2)","212","3","3)","32","32)","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","app","app'","app.","app.j","app.js'","app.js:5022","app.rb","app.rb.","app.rb.)","app.rb:","apps,","arbitrary.","argument","array","attribut","attribute:","auto","automat","bar:","block","book","box.","browser","browser.","bundl","bundler","bundler)","button","c","call","case","celsiu","celsius:","celsius?","chang","check","class","class,","class.","class:","click","client","clone","code","code.","color","color_idx","commit","compil","compile)","compon","consol","constant","contact","content.","conventions:","conver","convers","conversion.","convert","convert.","correspond","creat","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","element.","else.","emb","end","error","error.","event","exampl","example:","except","exec","execut","executed.","fahrenheit","fahrenheit!","fahrenheit.","fail","file.","final","first","first,","framework","fun:","g","gem","gem:","gemfil","gemfile:","gener","get","git","github:","give","global","handler","handler.","happen","happend","hash","hash,","hash.","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","input","inspir","instal","install.","instanc","instead,","introduct","it.","item","javascript","javascript'","javascript.","key","key.","keyword","know","left","let'","lifecycl","list","look","make","manipul","manually,","master","member","merg","messag","message:","method","method.","miss","misspel","modifi","more","more:","morethanonenod","myapp","myapp.run(id:","myapp::act","myapp::actions.","myapp::state\",","myapp::state\"}","myapp::state.","myapp::view#rend","myapp::view.","name","name.","namespace.","need","nest","new","new_celsiu","new_celsius}","new_stat","new_state.bar","new_state.foo","next,","node","node.","notat","note","noth","now","o","object","object.","old","onc","onchang","onchange:","onclick","onclick:","oncreate,","ondestroy.","onremove,","onupdate,","onxx","opal","opal,","opal::n","open","origin","other.","otherwise,","ovto","ovto,","ovto::act","ovto::app","ovto::compon","ovto::component#o","ovto::component.","ovto::st","ovto::wiredact","ovto::wiredactions.","p","page","page)","parameters)","pass","pleas","practic","prerequisit","press","prohibited.","provid","proxi","rail","rails.","rais","rake","re","react","read","rebuild","receiv","releas","reload","render","render(state:)","render.","replac","repres","requir","result","return","revers","right","rubi","run","same","save","schedul","second","see","see:","serv","set","set_fahrenheit","set_fahrenheit(state:,","setup","shoot","shorthand","show","shown","side","sinatra","sinatra.","singl","smallest","something.\",","sometim","somewher","sourc","special","specifi","stack:","start","starts.","stat,","state","state#merge.","state,","state.","state.bar","state.celsiu","state.celsius.","state.fahrenheit","state.fahrenheit.","state.merge(bar:","state.new(foo:","state.todos.each","state:","state:.","state;","statelist.","static","step","step.","string","style","style:","sub","subclass","support","surround","syntax","tab","tag","tag,","tag.","take","test","text","there.","think","this.","this:","those","tire","to:","todo.titl","todolist","todos'","too.","tri","troubl","tutori","tutorial,","type:","uncaught","uniniti","unit","updat","update_color","us","user","valu","value.","value:","value:)","via","view","view')","view.","want","way","web","words,","world","wrap","write","yardoc","yield","you.","{","{celsius:","{color:","{name:","|todo|","}","},","…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\n./example/rails4 and ./example/rails5 are\nexamples to use Ovto on Ruby on Rails.\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":"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.\n"},"api/state.html":{"url":"api/state.html","title":"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":"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.\n"},"api/component.html":{"url":"api/component.html","title":"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 MoreThanOneNode 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)\"}\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 class TodoList \nNote that you cannot call o more than once in the render method of sub components too.\nIn other words, sub component must yield a single DOM element.\nText node\nSometimes you may want to create a text node.\n#=> Age: 12\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"},"guides/debugging.html":{"url":"guides/debugging.html","title":"Debugging","keywords":"","body":"Debugging Ovto app\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"}}}
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+ gem "ovto", path: '../../'
3
+ gem 'opal-sprockets'
4
+ gem 'sinatra'
5
+ gem 'sinatra-contrib'
6
+ gem 'rack'
@@ -0,0 +1,59 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ ovto (0.1.0)
5
+ opal (~> 0.11)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ast (2.4.0)
11
+ backports (3.11.1)
12
+ concurrent-ruby (1.0.5)
13
+ hike (1.2.3)
14
+ multi_json (1.13.1)
15
+ mustermann (1.0.2)
16
+ opal (0.11.0)
17
+ ast (>= 2.3.0)
18
+ hike (~> 1.2)
19
+ parser (= 2.3.3.1)
20
+ sourcemap (~> 0.1.0)
21
+ opal-sprockets (0.4.1.0.11.0.3.1)
22
+ opal (~> 0.11.0)
23
+ sprockets (~> 3.1)
24
+ tilt (>= 1.4)
25
+ parser (2.3.3.1)
26
+ ast (~> 2.2)
27
+ rack (2.0.5)
28
+ rack-protection (2.0.1)
29
+ rack
30
+ sinatra (2.0.1)
31
+ mustermann (~> 1.0)
32
+ rack (~> 2.0)
33
+ rack-protection (= 2.0.1)
34
+ tilt (~> 2.0)
35
+ sinatra-contrib (2.0.1)
36
+ backports (>= 2.0)
37
+ multi_json
38
+ mustermann (~> 1.0)
39
+ rack-protection (= 2.0.1)
40
+ sinatra (= 2.0.1)
41
+ tilt (>= 1.3, < 3)
42
+ sourcemap (0.1.1)
43
+ sprockets (3.7.1)
44
+ concurrent-ruby (~> 1.0)
45
+ rack (> 1, < 3)
46
+ tilt (2.0.8)
47
+
48
+ PLATFORMS
49
+ ruby
50
+
51
+ DEPENDENCIES
52
+ opal-sprockets
53
+ ovto!
54
+ rack
55
+ sinatra
56
+ sinatra-contrib
57
+
58
+ BUNDLED WITH
59
+ 1.16.1
@@ -0,0 +1,21 @@
1
+ # Ovto + Sinatra example
2
+
3
+ ## How to run
4
+
5
+ ```
6
+ $ cd example/sinatra
7
+ $ bundle install
8
+ $ bundle exec rackup
9
+ $ open http://localhost:9292/
10
+ ```
11
+
12
+ ## Files
13
+
14
+ - ovto/ Contains Ovto app (= client side code)
15
+ - app.rb
16
+ - sinatra/ Contains Sinatra app (= server side code)
17
+ - app.rb
18
+ - config.ru
19
+
20
+ This file arrangement is just an example. You can put app.rb anywhere you want
21
+ by modifying config.ru.
@@ -0,0 +1,18 @@
1
+ require 'sinatra/base'
2
+ require 'sinatra/reloader'
3
+ require 'opal'
4
+
5
+ class SinatraApp < Sinatra::Base
6
+ # Proc to generate javascript include tag (see config.ru)
7
+ set :generate_javascript_include_tag, nil
8
+
9
+ configure(:development) do
10
+ register Sinatra::Reloader
11
+ also_reload "#{__dir__}/**/*.rb"
12
+ end
13
+
14
+ get '/' do
15
+ @js_tag = options.generate_javascript_include_tag
16
+ erb :index # Render views/index.erb
17
+ end
18
+ end
@@ -0,0 +1,30 @@
1
+ require 'opal/sprockets'
2
+ require_relative './app.rb'
3
+
4
+ Opal.use_gem 'ovto'
5
+ opal = Opal::Sprockets::Server.new {|s|
6
+ s.append_path './ovto/'
7
+ s.main = 'app'
8
+ }
9
+
10
+ sprockets = opal.sprockets
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
+
22
+ map prefix do
23
+ run sprockets
24
+ end
25
+
26
+ run Sinatra.new(SinatraApp){
27
+ set :generate_javascript_include_tag, proc{
28
+ ::Opal::Sprockets.javascript_include_tag('app', sprockets: sprockets, prefix: prefix, debug: true)
29
+ }
30
+ }