bouquet 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (386) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -4
  3. data/LICENSE.txt +1 -1
  4. data/README.md +8 -25
  5. data/bouquet.gemspec +3 -2
  6. data/core/.gitignore +0 -1
  7. data/core/Gemfile +3 -4
  8. data/core/Gemfile.lock +205 -0
  9. data/core/MIT-LICENSE +1 -1
  10. data/core/README.md +3 -0
  11. data/core/Rakefile +2 -2
  12. data/core/app/controllers/bouquet/core/application_controller.rb +6 -0
  13. data/core/app/jobs/bouquet/core/application_job.rb +6 -0
  14. data/core/app/models/application_record.rb +7 -0
  15. data/core/app/models/bouquet/arrival.rb +7 -0
  16. data/core/app/models/bouquet/assembly.rb +8 -0
  17. data/core/app/models/bouquet/customer.rb +6 -0
  18. data/core/app/models/bouquet/delivery.rb +7 -0
  19. data/core/app/models/bouquet/location.rb +10 -0
  20. data/core/app/models/bouquet/material.rb +7 -0
  21. data/core/app/models/bouquet/product.rb +6 -1
  22. data/core/app/models/bouquet/purchase_order.rb +23 -0
  23. data/core/app/models/bouquet/retrieval.rb +7 -0
  24. data/core/app/models/bouquet/sales_order.rb +16 -0
  25. data/core/app/models/bouquet/shipment.rb +44 -0
  26. data/core/app/models/bouquet/stock.rb +7 -0
  27. data/core/app/models/bouquet/storage.rb +30 -0
  28. data/core/app/models/bouquet/supplier.rb +6 -0
  29. data/core/{bouquet_core.gemspec → bouquet-core.gemspec} +5 -5
  30. data/core/db/migrate/20160102155121_create_bouquet_products.rb +10 -0
  31. data/core/db/migrate/20160108154058_create_bouquet_materials.rb +12 -0
  32. data/core/db/migrate/20160108154107_create_bouquet_assemblies.rb +12 -0
  33. data/core/db/migrate/20160108154116_create_bouquet_customers.rb +10 -0
  34. data/core/db/migrate/20160108154144_create_bouquet_suppliers.rb +10 -0
  35. data/core/db/migrate/20160108154217_create_bouquet_locations.rb +10 -0
  36. data/core/db/migrate/20160108155617_create_bouquet_shipments.rb +12 -0
  37. data/core/db/migrate/20160108155648_create_bouquet_deliveries.rb +13 -0
  38. data/core/db/migrate/20160108155711_create_bouquet_purchase_orders.rb +14 -0
  39. data/core/db/migrate/20160108155732_create_bouquet_arrivals.rb +12 -0
  40. data/core/db/migrate/20160108155753_create_bouquet_stocks.rb +13 -0
  41. data/core/db/migrate/20160108160523_create_bouquet_sales_orders.rb +14 -0
  42. data/core/db/migrate/20160111072002_create_bouquet_storages.rb +12 -0
  43. data/core/db/migrate/20160111072201_create_bouquet_retrievals.rb +13 -0
  44. data/core/lib/bouquet/core/engine.rb +1 -2
  45. data/core/lib/bouquet/core/version.rb +1 -1
  46. data/core/lib/bouquet/core.rb +1 -0
  47. data/core/lib/tasks/{bouquet_core_tasks.rake → bouquet/core_tasks.rake} +0 -0
  48. data/core/spec/dummy/README.md +4 -0
  49. data/core/spec/dummy/Rakefile +6 -0
  50. data/core/spec/dummy/app/assets/config/manifest.js +3 -0
  51. data/core/spec/dummy/app/assets/javascripts/application.js +13 -0
  52. data/{gate/app/assets/stylesheets/bouquet_gate → core/spec/dummy/app/assets/stylesheets}/application.css +3 -3
  53. data/core/spec/dummy/app/channels/application_cable/channel.rb +5 -0
  54. data/core/spec/dummy/app/channels/application_cable/connection.rb +5 -0
  55. data/core/spec/dummy/app/controllers/application_controller.rb +2 -0
  56. data/core/{app/assets/images/bouquet_core → spec/dummy/app/controllers/concerns}/.keep +0 -0
  57. data/core/spec/dummy/app/jobs/application_job.rb +2 -0
  58. data/core/spec/dummy/app/mailers/application_mailer.rb +4 -0
  59. data/core/spec/dummy/app/models/application_record.rb +3 -0
  60. data/{gate/app/assets/images/bouquet_gate → core/spec/dummy/app/models/concerns}/.keep +0 -0
  61. data/core/spec/dummy/bin/bundle +3 -0
  62. data/core/spec/dummy/bin/rails +4 -0
  63. data/core/spec/dummy/bin/rake +4 -0
  64. data/core/spec/dummy/bin/setup +34 -0
  65. data/core/spec/dummy/bin/update +29 -0
  66. data/core/spec/dummy/config/application.rb +26 -0
  67. data/core/spec/dummy/config/boot.rb +5 -0
  68. data/core/spec/dummy/config/database.yml +25 -0
  69. data/core/spec/dummy/config/environment.rb +5 -0
  70. data/core/spec/dummy/config/environments/development.rb +43 -0
  71. data/core/spec/dummy/config/environments/production.rb +70 -0
  72. data/core/spec/dummy/config/environments/test.rb +44 -0
  73. data/core/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +5 -0
  74. data/core/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  75. data/core/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  76. data/core/spec/dummy/config/initializers/callback_terminator.rb +5 -0
  77. data/core/spec/dummy/config/initializers/cors.rb +16 -0
  78. data/core/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  79. data/core/spec/dummy/config/initializers/inflections.rb +16 -0
  80. data/core/spec/dummy/config/initializers/mime_types.rb +4 -0
  81. data/core/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  82. data/core/spec/dummy/config/locales/en.yml +23 -0
  83. data/core/spec/dummy/config/redis/cable.yml +9 -0
  84. data/core/spec/dummy/config/routes.rb +3 -0
  85. data/core/spec/dummy/config/secrets.yml +22 -0
  86. data/core/spec/dummy/config.ru +9 -0
  87. data/core/spec/dummy/db/schema.rb +156 -0
  88. data/core/spec/dummy/db/seeds.rb +36 -0
  89. data/core/spec/dummy/log/.keep +0 -0
  90. data/core/spec/dummy/public/404.html +67 -0
  91. data/core/spec/dummy/public/422.html +67 -0
  92. data/core/spec/dummy/public/500.html +66 -0
  93. data/core/spec/dummy/public/favicon.ico +0 -0
  94. data/core/spec/factories/bouquet_arrivals.rb +9 -0
  95. data/core/spec/factories/bouquet_assemblies.rb +8 -0
  96. data/core/spec/factories/bouquet_customers.rb +7 -0
  97. data/core/spec/factories/bouquet_deliveries.rb +10 -0
  98. data/core/spec/factories/bouquet_locations.rb +6 -0
  99. data/core/spec/factories/bouquet_materials.rb +9 -0
  100. data/core/spec/factories/bouquet_purchase_orders.rb +10 -0
  101. data/core/spec/factories/bouquet_retrievals.rb +10 -0
  102. data/core/spec/factories/bouquet_sales_orders.rb +10 -0
  103. data/core/spec/factories/bouquet_shipments.rb +9 -0
  104. data/core/spec/factories/bouquet_stocks.rb +10 -0
  105. data/core/spec/factories/bouquet_storage_retrievals.rb +10 -0
  106. data/core/spec/factories/bouquet_storages.rb +9 -0
  107. data/core/spec/factories/bouquet_suppliers.rb +6 -0
  108. data/core/spec/jobs/bouquet/shipment_job_spec.rb +7 -0
  109. data/core/spec/models/bouquet/arrival_spec.rb +7 -0
  110. data/core/spec/models/bouquet/assembly_spec.rb +7 -0
  111. data/core/spec/models/bouquet/customer_spec.rb +7 -0
  112. data/core/spec/models/bouquet/delivery_spec.rb +7 -0
  113. data/core/spec/models/bouquet/location_spec.rb +7 -0
  114. data/core/spec/models/bouquet/material_spec.rb +7 -0
  115. data/core/spec/models/bouquet/product_spec.rb +1 -1
  116. data/core/spec/models/bouquet/purchase_order_spec.rb +7 -0
  117. data/core/spec/models/bouquet/retrieval_spec.rb +7 -0
  118. data/core/spec/models/bouquet/sales_order_spec.rb +7 -0
  119. data/core/spec/models/bouquet/shipment_spec.rb +7 -0
  120. data/core/spec/models/bouquet/stock_spec.rb +7 -0
  121. data/core/spec/models/bouquet/storage_retrieval_spec.rb +7 -0
  122. data/core/spec/models/bouquet/storage_spec.rb +7 -0
  123. data/core/spec/models/bouquet/supplier_spec.rb +7 -0
  124. data/core/spec/rails_helper.rb +4 -11
  125. data/core/spec/spec_helper.rb +11 -18
  126. data/gate/.gitignore +0 -1
  127. data/gate/Gemfile +3 -7
  128. data/gate/Gemfile.lock +204 -0
  129. data/gate/MIT-LICENSE +1 -1
  130. data/gate/README.md +29 -0
  131. data/gate/Rakefile +2 -2
  132. data/gate/app/controllers/bouquet/gate/application_controller.rb +1 -1
  133. data/gate/app/controllers/bouquet/gate/materials_controller.rb +55 -0
  134. data/gate/app/controllers/bouquet/gate/products_controller.rb +62 -6
  135. data/gate/app/controllers/bouquet/gate/purchase_orders_controller.rb +56 -0
  136. data/gate/app/controllers/bouquet/gate/sales_orders_controller.rb +57 -0
  137. data/gate/app/controllers/bouquet/gate/storages_controller.rb +22 -0
  138. data/gate/app/jobs/bouquet/gate/application_job.rb +6 -0
  139. data/gate/app/jobs/bouquet/gate/shipment_job.rb +14 -0
  140. data/gate/app/models/application_record.rb +7 -0
  141. data/gate/{bouquet_gate.gemspec → bouquet-gate.gemspec} +5 -6
  142. data/gate/config/routes.rb +6 -4
  143. data/gate/lib/bouquet/gate/engine.rb +2 -6
  144. data/gate/lib/bouquet/gate/version.rb +1 -1
  145. data/gate/lib/bouquet/gate.rb +1 -1
  146. data/gate/lib/tasks/{bouquet_gate_tasks.rake → bouquet/gate_tasks.rake} +0 -0
  147. data/gate/spec/controllers/bouquet/gate/products_controller_spec.rb +13 -4
  148. data/gate/spec/controllers/bouquet/gate/purchase_orders_controller_spec.rb +14 -0
  149. data/gate/spec/controllers/bouquet/gate/sales_orders_controller_spec.rb +14 -0
  150. data/gate/spec/dummy/Rakefile +6 -0
  151. data/gate/spec/dummy/app/assets/config/manifest.js +3 -0
  152. data/gate/spec/dummy/app/assets/javascripts/application.js +13 -0
  153. data/{core/app/assets/stylesheets/bouquet_core → gate/spec/dummy/app/assets/stylesheets}/application.css +3 -3
  154. data/gate/spec/dummy/app/channels/application_cable/channel.rb +5 -0
  155. data/gate/spec/dummy/app/channels/application_cable/connection.rb +5 -0
  156. data/gate/spec/dummy/app/controllers/application_controller.rb +2 -0
  157. data/gate/spec/dummy/app/controllers/concerns/.keep +0 -0
  158. data/gate/spec/dummy/app/jobs/application_job.rb +2 -0
  159. data/gate/spec/dummy/app/mailers/application_mailer.rb +4 -0
  160. data/gate/spec/dummy/app/models/application_record.rb +3 -0
  161. data/gate/spec/dummy/app/models/concerns/.keep +0 -0
  162. data/gate/spec/dummy/bin/bundle +3 -0
  163. data/gate/spec/dummy/bin/rails +4 -0
  164. data/gate/spec/dummy/bin/rake +4 -0
  165. data/gate/spec/dummy/bin/setup +34 -0
  166. data/gate/spec/dummy/bin/update +29 -0
  167. data/gate/spec/dummy/config/application.rb +27 -0
  168. data/gate/spec/dummy/config/boot.rb +5 -0
  169. data/gate/spec/dummy/config/database.yml +25 -0
  170. data/gate/spec/dummy/config/environment.rb +5 -0
  171. data/gate/spec/dummy/config/environments/development.rb +43 -0
  172. data/gate/spec/dummy/config/environments/production.rb +70 -0
  173. data/gate/spec/dummy/config/environments/test.rb +44 -0
  174. data/gate/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +5 -0
  175. data/gate/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  176. data/gate/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  177. data/gate/spec/dummy/config/initializers/callback_terminator.rb +5 -0
  178. data/gate/spec/dummy/config/initializers/cors.rb +16 -0
  179. data/gate/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  180. data/gate/spec/dummy/config/initializers/inflections.rb +16 -0
  181. data/gate/spec/dummy/config/initializers/mime_types.rb +4 -0
  182. data/gate/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  183. data/gate/spec/dummy/config/locales/en.yml +23 -0
  184. data/gate/spec/dummy/config/redis/cable.yml +9 -0
  185. data/gate/spec/dummy/config/routes.rb +3 -0
  186. data/gate/spec/dummy/config/secrets.yml +22 -0
  187. data/gate/spec/dummy/config.ru +9 -0
  188. data/gate/spec/dummy/db/migrate/20160118114717_create_bouquet_products.bouquet.rb +11 -0
  189. data/gate/spec/dummy/db/migrate/20160118114718_create_bouquet_materials.bouquet.rb +13 -0
  190. data/gate/spec/dummy/db/migrate/20160118114719_create_bouquet_assemblies.bouquet.rb +13 -0
  191. data/gate/spec/dummy/db/migrate/20160118114720_create_bouquet_customers.bouquet.rb +11 -0
  192. data/gate/spec/dummy/db/migrate/20160118114721_create_bouquet_suppliers.bouquet.rb +11 -0
  193. data/gate/spec/dummy/db/migrate/20160118114722_create_bouquet_locations.bouquet.rb +11 -0
  194. data/gate/spec/dummy/db/migrate/20160118114723_create_bouquet_shipments.bouquet.rb +13 -0
  195. data/gate/spec/dummy/db/migrate/20160118114724_create_bouquet_deliveries.bouquet.rb +14 -0
  196. data/gate/spec/dummy/db/migrate/20160118114725_create_bouquet_purchase_orders.bouquet.rb +15 -0
  197. data/gate/spec/dummy/db/migrate/20160118114726_create_bouquet_arrivals.bouquet.rb +13 -0
  198. data/gate/spec/dummy/db/migrate/20160118114727_create_bouquet_stocks.bouquet.rb +14 -0
  199. data/gate/spec/dummy/db/migrate/20160118114728_create_bouquet_sales_orders.bouquet.rb +15 -0
  200. data/gate/spec/dummy/db/migrate/20160118114729_create_bouquet_storages.bouquet.rb +13 -0
  201. data/gate/spec/dummy/db/migrate/20160118114730_create_bouquet_retrievals.bouquet.rb +14 -0
  202. data/gate/spec/dummy/db/schema.rb +156 -0
  203. data/gate/spec/dummy/db/seeds.rb +23 -0
  204. data/gate/spec/dummy/log/.keep +0 -0
  205. data/gate/spec/dummy/public/404.html +67 -0
  206. data/gate/spec/dummy/public/422.html +67 -0
  207. data/gate/spec/dummy/public/500.html +66 -0
  208. data/gate/spec/dummy/public/favicon.ico +0 -0
  209. data/gate/spec/factories/bouquet_products.rb +6 -0
  210. data/gate/spec/rails_helper.rb +6 -11
  211. data/gate/spec/spec_helper.rb +11 -18
  212. data/lib/bouquet/version.rb +1 -1
  213. data/lib/bouquet.rb +0 -2
  214. data/store/.gitignore +7 -0
  215. data/store/.rspec +2 -0
  216. data/store/Gemfile +20 -0
  217. data/store/Gemfile.lock +207 -0
  218. data/store/MIT-LICENSE +20 -0
  219. data/store/README.md +3 -0
  220. data/store/Rakefile +26 -0
  221. data/store/app/assets/config/bouquet_store_manifest.js +1 -0
  222. data/store/app/assets/images/bouquet/store/.keep +0 -0
  223. data/store/app/assets/javascripts/bouquet/store/application.js +1 -0
  224. data/store/app/assets/javascripts/bouquet/store/bundle.js +33 -0
  225. data/store/app/assets/stylesheets/bouquet/store/application.css +3 -0
  226. data/store/app/assets/stylesheets/bouquet/store/bundle.css +1 -0
  227. data/store/app/controllers/bouquet/store/application_controller.rb +6 -0
  228. data/store/app/controllers/bouquet/store/main_controller.rb +8 -0
  229. data/store/app/helpers/bouquet/store/application_helper.rb +15 -0
  230. data/store/app/jobs/bouquet/store/application_job.rb +6 -0
  231. data/store/app/models/application_record.rb +7 -0
  232. data/store/app/views/bouquet/store/main/index.html.erb +1 -0
  233. data/store/app/views/layouts/bouquet/store/application.html.erb +15 -0
  234. data/store/bin/rails +12 -0
  235. data/store/bouquet-store.gemspec +22 -0
  236. data/store/config/routes.rb +4 -0
  237. data/store/lib/bouquet/store/engine.rb +15 -0
  238. data/store/lib/bouquet/store/version.rb +5 -0
  239. data/store/lib/bouquet/store.rb +7 -0
  240. data/store/lib/tasks/bouquet/store_tasks.rake +4 -0
  241. data/store/package.json +56 -0
  242. data/store/private/static/.babelrc +20 -0
  243. data/store/private/static/app/actions/AccountActions.js +8 -0
  244. data/store/private/static/app/actions/CounterActions.js +40 -0
  245. data/store/private/static/app/actions/InventoryActions.js +20 -0
  246. data/store/private/static/app/actions/MaterialActions.js +54 -0
  247. data/store/private/static/app/actions/ProductActions.js +54 -0
  248. data/store/private/static/app/components/_globals.scss +7 -0
  249. data/store/private/static/app/components/layouts/_config.scss +8 -0
  250. data/store/private/static/app/components/layouts/contents/_config.scss +4 -0
  251. data/store/private/static/app/components/layouts/contents/about/index.js +15 -0
  252. data/store/private/static/app/components/layouts/contents/about/style.scss +1 -0
  253. data/store/private/static/app/components/layouts/contents/account/index.js +16 -0
  254. data/store/private/static/app/components/layouts/contents/account/layout.js +52 -0
  255. data/store/private/static/app/components/layouts/contents/account/style.scss +7 -0
  256. data/store/private/static/app/components/layouts/contents/content.scss +13 -0
  257. data/store/private/static/app/components/layouts/contents/counter/index.js +16 -0
  258. data/store/private/static/app/components/layouts/contents/counter/layout.js +62 -0
  259. data/store/private/static/app/components/layouts/contents/counter/style.scss +6 -0
  260. data/store/private/static/app/components/layouts/contents/index.js +7 -0
  261. data/store/private/static/app/components/layouts/contents/inventory/index.js +16 -0
  262. data/store/private/static/app/components/layouts/contents/inventory/layout.js +41 -0
  263. data/store/private/static/app/components/layouts/contents/inventory/style.scss +1 -0
  264. data/store/private/static/app/components/layouts/contents/main/index.js +36 -0
  265. data/store/private/static/app/components/layouts/contents/main/style.scss +1 -0
  266. data/store/private/static/app/components/layouts/contents/material/index.js +18 -0
  267. data/store/private/static/app/components/layouts/contents/material/layout.js +60 -0
  268. data/store/private/static/app/components/layouts/contents/material/style.scss +25 -0
  269. data/store/private/static/app/components/layouts/contents/product/index.js +18 -0
  270. data/store/private/static/app/components/layouts/contents/product/layout.js +69 -0
  271. data/store/private/static/app/components/layouts/contents/product/style.scss +30 -0
  272. data/store/private/static/app/components/layouts/header/index.js +27 -0
  273. data/store/private/static/app/components/layouts/header/style.scss +21 -0
  274. data/store/private/static/app/components/layouts/home/index.js +20 -0
  275. data/store/private/static/app/components/layouts/home/style.scss +23 -0
  276. data/store/private/static/app/components/layouts/sidebar/index.js +11 -0
  277. data/store/private/static/app/components/layouts/sidebar/layout.js +63 -0
  278. data/store/private/static/app/components/layouts/sidebar/style.scss +47 -0
  279. data/store/private/static/app/constants/ActionTypes.js +20 -0
  280. data/store/private/static/app/containers/dev_tools/index.js +13 -0
  281. data/store/private/static/app/containers/home/index.js +2 -0
  282. data/store/private/static/app/containers/index.js +2 -0
  283. data/store/private/static/app/containers/root/index.js +26 -0
  284. data/store/private/static/app/index.js +21 -0
  285. data/store/private/static/app/reducers/account.js +19 -0
  286. data/store/private/static/app/reducers/counter.js +14 -0
  287. data/store/private/static/app/reducers/index.js +18 -0
  288. data/store/private/static/app/reducers/inventory.js +17 -0
  289. data/store/private/static/app/reducers/material.js +30 -0
  290. data/store/private/static/app/reducers/product.js +30 -0
  291. data/store/private/static/app/routes/index.js +18 -0
  292. data/store/private/static/app/store/configureStore.development.js +27 -0
  293. data/store/private/static/app/store/configureStore.js +5 -0
  294. data/store/private/static/app/store/configureStore.production.js +11 -0
  295. data/store/private/static/app/toolbox-theme.scss +7 -0
  296. data/store/private/static/index.html +14 -0
  297. data/store/private/static/main.js +30 -0
  298. data/store/private/static/package.json +56 -0
  299. data/store/private/static/server.js +27 -0
  300. data/store/private/static/webpack.config.js +50 -0
  301. data/store/private/static/webpack.production.js +43 -0
  302. data/store/spec/controllers/bouquet/store/main_controller_spec.rb +15 -0
  303. data/store/spec/dummy/Procfile +2 -0
  304. data/store/spec/dummy/Rakefile +6 -0
  305. data/store/spec/dummy/app/assets/config/manifest.js +4 -0
  306. data/store/spec/dummy/app/assets/images/.keep +0 -0
  307. data/store/spec/dummy/app/assets/javascripts/application.js +13 -0
  308. data/store/spec/dummy/app/assets/stylesheets/application.css +15 -0
  309. data/store/spec/dummy/app/channels/application_cable/channel.rb +5 -0
  310. data/store/spec/dummy/app/channels/application_cable/connection.rb +5 -0
  311. data/store/spec/dummy/app/controllers/application_controller.rb +3 -0
  312. data/store/spec/dummy/app/controllers/concerns/.keep +0 -0
  313. data/store/spec/dummy/app/helpers/application_helper.rb +2 -0
  314. data/store/spec/dummy/app/jobs/application_job.rb +2 -0
  315. data/store/spec/dummy/app/mailers/application_mailer.rb +4 -0
  316. data/store/spec/dummy/app/models/application_record.rb +3 -0
  317. data/store/spec/dummy/app/models/concerns/.keep +0 -0
  318. data/store/spec/dummy/app/views/layouts/application.html.erb +14 -0
  319. data/store/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  320. data/store/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  321. data/store/spec/dummy/bin/bundle +3 -0
  322. data/store/spec/dummy/bin/rails +4 -0
  323. data/store/spec/dummy/bin/rake +4 -0
  324. data/store/spec/dummy/bin/setup +34 -0
  325. data/store/spec/dummy/bin/update +29 -0
  326. data/store/spec/dummy/config/application.rb +24 -0
  327. data/store/spec/dummy/config/boot.rb +5 -0
  328. data/store/spec/dummy/config/database.yml +25 -0
  329. data/store/spec/dummy/config/environment.rb +5 -0
  330. data/store/spec/dummy/config/environments/development.rb +56 -0
  331. data/store/spec/dummy/config/environments/production.rb +82 -0
  332. data/store/spec/dummy/config/environments/test.rb +44 -0
  333. data/store/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +5 -0
  334. data/store/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  335. data/store/spec/dummy/config/initializers/assets.rb +11 -0
  336. data/store/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  337. data/store/spec/dummy/config/initializers/callback_terminator.rb +5 -0
  338. data/store/spec/dummy/config/initializers/cookies_serializer.rb +4 -0
  339. data/store/spec/dummy/config/initializers/cors.rb +16 -0
  340. data/store/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  341. data/store/spec/dummy/config/initializers/inflections.rb +16 -0
  342. data/store/spec/dummy/config/initializers/mime_types.rb +4 -0
  343. data/store/spec/dummy/config/initializers/request_forgery_protection.rb +4 -0
  344. data/store/spec/dummy/config/initializers/session_store.rb +3 -0
  345. data/store/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  346. data/store/spec/dummy/config/locales/en.yml +23 -0
  347. data/store/spec/dummy/config/redis/cable.yml +9 -0
  348. data/store/spec/dummy/config/routes.rb +4 -0
  349. data/store/spec/dummy/config/secrets.yml +22 -0
  350. data/store/spec/dummy/config.ru +9 -0
  351. data/store/spec/dummy/db/migrate/20160118140340_create_bouquet_products.bouquet.rb +11 -0
  352. data/store/spec/dummy/db/migrate/20160118140341_create_bouquet_materials.bouquet.rb +13 -0
  353. data/store/spec/dummy/db/migrate/20160118140342_create_bouquet_assemblies.bouquet.rb +13 -0
  354. data/store/spec/dummy/db/migrate/20160118140343_create_bouquet_customers.bouquet.rb +11 -0
  355. data/store/spec/dummy/db/migrate/20160118140344_create_bouquet_suppliers.bouquet.rb +11 -0
  356. data/store/spec/dummy/db/migrate/20160118140345_create_bouquet_locations.bouquet.rb +11 -0
  357. data/store/spec/dummy/db/migrate/20160118140346_create_bouquet_shipments.bouquet.rb +13 -0
  358. data/store/spec/dummy/db/migrate/20160118140347_create_bouquet_deliveries.bouquet.rb +14 -0
  359. data/store/spec/dummy/db/migrate/20160118140348_create_bouquet_purchase_orders.bouquet.rb +15 -0
  360. data/store/spec/dummy/db/migrate/20160118140349_create_bouquet_arrivals.bouquet.rb +13 -0
  361. data/store/spec/dummy/db/migrate/20160118140350_create_bouquet_stocks.bouquet.rb +14 -0
  362. data/store/spec/dummy/db/migrate/20160118140351_create_bouquet_sales_orders.bouquet.rb +15 -0
  363. data/store/spec/dummy/db/migrate/20160118140352_create_bouquet_storages.bouquet.rb +13 -0
  364. data/store/spec/dummy/db/migrate/20160118140353_create_bouquet_retrievals.bouquet.rb +14 -0
  365. data/store/spec/dummy/db/schema.rb +156 -0
  366. data/store/spec/dummy/db/seeds.rb +36 -0
  367. data/store/spec/dummy/lib/assets/.keep +0 -0
  368. data/store/spec/dummy/log/.keep +0 -0
  369. data/store/spec/dummy/public/404.html +67 -0
  370. data/store/spec/dummy/public/422.html +67 -0
  371. data/store/spec/dummy/public/500.html +66 -0
  372. data/store/spec/dummy/public/favicon.ico +0 -0
  373. data/store/spec/rails_helper.rb +50 -0
  374. data/store/spec/spec_helper.rb +85 -0
  375. data/store/spec/views/bouquet/store/main/index.html.erb_spec.rb +5 -0
  376. metadata +363 -24
  377. data/core/README.rdoc +0 -3
  378. data/core/app/controllers/bouquet_core/application_controller.rb +0 -4
  379. data/core/app/helpers/bouquet_core/application_helper.rb +0 -4
  380. data/core/app/views/layouts/bouquet_core/application.html.erb +0 -14
  381. data/core/db/migrate/20151122145140_create_bouquet_products.rb +0 -9
  382. data/gate/README.rdoc +0 -3
  383. data/gate/app/helpers/bouquet_gate/application_helper.rb +0 -4
  384. data/gate/app/views/bouquet/gate/products/index.json.jbuilder +0 -3
  385. data/gate/app/views/bouquet/gate/products/show.json.jbuilder +0 -1
  386. data/gate/app/views/layouts/bouquet_gate/application.html.erb +0 -14
@@ -0,0 +1,3 @@
1
+ /*
2
+ *= require_tree .
3
+ */
@@ -0,0 +1 @@
1
+ .style__root___3WPxf{position:absolute;top:0;left:0;width:100vw;height:100vh;overflow-y:auto}.style__root___28mSO{display:flex;height:6.4rem;align-items:center;padding:0 2.4rem;color:#fff;background:#1976d2}.style__root___28mSO:not(.style__flat___TZ2GU){z-index:100;box-shadow:0 2px 5px rgba(0,0,0,.26)}.style__root___28mSO.style__fixed___2dCeg{position:fixed;top:0;right:0;left:0;z-index:100}.style__root___28mSO a{color:#fff}.style__normal___8h9Q2{position:absolute;top:50%;left:50%;z-index:100;pointer-events:none;background-color:currentColor;border-radius:50%;transform-origin:50% 50%}.style__wrapper___1QG_a{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none}.style__normal___8h9Q2{transition-duration:.8s}.style__normal___8h9Q2.style__restarting___1Bpvq{opacity:.3;transition-property:none}.style__normal___8h9Q2.style__active___14hWj{opacity:.3;transition-property:transform}.style__normal___8h9Q2:not(.style__active___14hWj):not(.style__restarting___1Bpvq){opacity:0;transition-property:opacity,transform}.style__flat___3zool,.style__floating___2RdpF,.style__raised___3voSg,.style__toggle___1o7x_{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.4rem;font-weight:500;line-height:1;text-transform:uppercase;letter-spacing:0;position:relative;display:inline-block;height:3.6rem;flex-direction:row;align-content:center;align-items:center;justify-content:center;text-align:center;text-decoration:none;white-space:nowrap;cursor:pointer;border:0;outline:none;transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1)}.style__flat___3zool::-moz-focus-inner,.style__floating___2RdpF::-moz-focus-inner,.style__raised___3voSg::-moz-focus-inner,.style__toggle___1o7x_::-moz-focus-inner{border:0}.style__flat___3zool>span:not([data-react-toolbox=tooltip]),.style__floating___2RdpF>span:not([data-react-toolbox=tooltip]),.style__raised___3voSg>span:not([data-react-toolbox=tooltip]),.style__toggle___1o7x_>span:not([data-react-toolbox=tooltip]){display:inline-block;line-height:3.6rem;vertical-align:middle}.style__flat___3zool>svg,.style__floating___2RdpF>svg,.style__raised___3voSg>svg,.style__toggle___1o7x_>svg{display:inline-block;width:1em;height:1em;font-size:120%;vertical-align:middle;fill:currentColor}.style__flat___3zool>*,.style__floating___2RdpF>*,.style__raised___3voSg>*,.style__toggle___1o7x_>*{pointer-events:none}.style__flat___3zool [data-react-toolbox=ripple],.style__floating___2RdpF [data-react-toolbox=ripple],.style__raised___3voSg [data-react-toolbox=ripple],.style__toggle___1o7x_ [data-react-toolbox=ripple]{overflow:hidden}[disabled].style__flat___3zool,[disabled].style__floating___2RdpF,[disabled].style__raised___3voSg,[disabled].style__toggle___1o7x_{color:rgba(0,0,0,.26);pointer-events:none;cursor:auto}.style__flat___3zool,.style__raised___3voSg{min-width:9rem;padding:0 1.2rem;border-radius:.2rem}.style__flat___3zool .style__icon___39sT6,.style__raised___3voSg .style__icon___39sT6{margin-right:.6rem;font-size:120%;vertical-align:middle}.style__flat___3zool>svg,.style__raised___3voSg>svg{margin-right:.5rem}[disabled].style__floating___2RdpF,[disabled].style__raised___3voSg{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);background-color:rgba(0,0,0,.12)}.style__floating___2RdpF:active,.style__raised___3voSg:active{box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)}.style__floating___2RdpF:focus:not(:active),.style__raised___3voSg:focus:not(:active){box-shadow:0 0 8px rgba(0,0,0,.18),0 8px 16px rgba(0,0,0,.36)}.style__raised___3voSg{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.style__flat___3zool{background:transparent}.style__floating___2RdpF{width:5.6rem;height:5.6rem;font-size:2.4rem;border-radius:50%;box-shadow:0 1px 1.5px 0 rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.24)}.style__floating___2RdpF .style__icon___39sT6{line-height:5.6rem}.style__floating___2RdpF [data-react-toolbox=ripple]{border-radius:50%}.style__floating___2RdpF.style__mini___1NGkQ{width:4rem;height:4rem;font-size:1.77778rem}.style__floating___2RdpF.style__mini___1NGkQ .style__icon___39sT6{line-height:4rem}.style__toggle___1o7x_{width:3.6rem;background:transparent;border-radius:50%}.style__toggle___1o7x_>.style__icon___39sT6,.style__toggle___1o7x_ svg{font-size:2rem;line-height:3.6rem;vertical-align:middle}.style__toggle___1o7x_ [data-react-toolbox=ripple]{border-radius:50%}.style__neutral___16-vI:not([disabled]).style__floating___2RdpF,.style__neutral___16-vI:not([disabled]).style__raised___3voSg{color:#212121;background-color:#fff}.style__neutral___16-vI:not([disabled]).style__flat___3zool,.style__neutral___16-vI:not([disabled]).style__toggle___1o7x_{color:#212121}.style__neutral___16-vI:not([disabled]).style__flat___3zool:focus:not(:active),.style__neutral___16-vI:not([disabled]).style__flat___3zool:hover,.style__neutral___16-vI:not([disabled]).style__toggle___1o7x_:focus:not(:active){background:rgba(33,33,33,.2)}.style__neutral___16-vI:not([disabled]).style__inverse___1xv1k.style__floating___2RdpF,.style__neutral___16-vI:not([disabled]).style__inverse___1xv1k.style__raised___3voSg{color:#fff;background-color:#212121}.style__neutral___16-vI:not([disabled]).style__inverse___1xv1k.style__flat___3zool,.style__neutral___16-vI:not([disabled]).style__inverse___1xv1k.style__toggle___1o7x_{color:#fff}.style__neutral___16-vI:not([disabled]).style__inverse___1xv1k.style__flat___3zool:focus:not(:active),.style__neutral___16-vI:not([disabled]).style__inverse___1xv1k.style__flat___3zool:hover,.style__neutral___16-vI:not([disabled]).style__inverse___1xv1k.style__toggle___1o7x_:focus:not(:active){background:rgba(33,33,33,.2)}.style__primary___3s7Yf:not([disabled]).style__floating___2RdpF,.style__primary___3s7Yf:not([disabled]).style__raised___3voSg{color:#fff;background:#2196f3}.style__primary___3s7Yf:not([disabled]).style__flat___3zool,.style__primary___3s7Yf:not([disabled]).style__toggle___1o7x_{color:#2196f3}.style__primary___3s7Yf:not([disabled]).style__flat___3zool:focus:not(:active),.style__primary___3s7Yf:not([disabled]).style__flat___3zool:hover,.style__primary___3s7Yf:not([disabled]).style__toggle___1o7x_:focus:not(:active){background:rgba(33,150,243,.2)}.style__accent___2jwtn:not([disabled]).style__floating___2RdpF,.style__accent___2jwtn:not([disabled]).style__raised___3voSg{color:#fff;background:#ff4081}.style__accent___2jwtn:not([disabled]).style__flat___3zool,.style__accent___2jwtn:not([disabled]).style__toggle___1o7x_{color:#ff4081}.style__accent___2jwtn:not([disabled]).style__flat___3zool:focus:not(:active),.style__accent___2jwtn:not([disabled]).style__flat___3zool:hover,.style__accent___2jwtn:not([disabled]).style__toggle___1o7x_:focus:not(:active){background:rgba(255,64,129,.2)}.style__appbar___HSA7V>.style__title___3fna7{font-size:1.8rem;font-weight:700;position:relative;padding-left:10px}.style__appbar___HSA7V>.style__button___L0D6P{position:absolute;top:3.6rem;right:2.8rem;z-index:200}.style__root___2oYHO{position:relative;padding:2rem 0}.style__root___2oYHO.style__withIcon___1cSXx{margin-left:4.8rem}.style__icon___2Vj4z{position:absolute;top:1.6rem;left:-4.8rem;display:block;width:4.8rem;height:4.8rem;font-size:2.4rem!important;line-height:4.8rem!important;color:rgba(0,0,0,.26);text-align:center;transition:color .35s cubic-bezier(.4,0,.2,1)}.style__input___246l0{display:block;width:100%;padding:.8rem 0;font-size:1.6rem;color:#212121;background-color:transparent;border:0;border-bottom:1px solid rgba(0,0,0,.12);outline:none}.style__input___246l0:focus~.style__bar___2Cvs2:after,.style__input___246l0:focus~.style__bar___2Cvs2:before{width:50%}.style__input___246l0:focus~.style__icon___2Vj4z,.style__input___246l0:focus~.style__label___S5lQL:not(.style__fixed___1P9Kr){color:#2196f3}.style__input___246l0.style__filled___37jQN~.style__label___S5lQL:not(.style__fixed___1P9Kr),.style__input___246l0:focus~.style__label___S5lQL:not(.style__fixed___1P9Kr),.style__input___246l0[type=date]~.style__label___S5lQL:not(.style__fixed___1P9Kr),.style__input___246l0[type=time]~.style__label___S5lQL:not(.style__fixed___1P9Kr){top:.6rem;font-size:1.2rem}.style__input___246l0.style__filled___37jQN~.style__label___S5lQL.style__fixed___1P9Kr{display:none}.style__label___S5lQL{position:absolute;top:3.2rem;left:0;font-size:1.6rem;line-height:1.6rem;color:rgba(0,0,0,.26);pointer-events:none;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:top,font-size,color}.style__bar___2Cvs2{position:relative;display:block;width:100%}.style__bar___2Cvs2:after,.style__bar___2Cvs2:before{transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.2s;position:absolute;bottom:0;width:0;height:2px;content:"";background-color:#2196f3;transition-property:width,background-color}.style__bar___2Cvs2:before{left:50%}.style__bar___2Cvs2:after{right:50%}.style__counter___1jByv,.style__error___1YLxC{margin-bottom:-2rem;font-size:1.2rem;line-height:2rem;color:#de3226}.style__counter___1jByv{position:absolute;right:0;color:rgba(0,0,0,.26)}.style__disabled___bogd4>.style__input___246l0{color:rgba(0,0,0,.26);border-bottom-style:dotted}.style__errored___37Uz3{padding-bottom:0}.style__errored___37Uz3>.style__input___246l0{margin-top:1px;border-bottom-color:#de3226}.style__errored___37Uz3>.style__input___246l0:focus~.style__label___S5lQL:not(.style__fixed___1P9Kr){color:#de3226}.style__errored___37Uz3>.style__input___246l0:focus~.style__bar___2Cvs2:after,.style__errored___37Uz3>.style__input___246l0:focus~.style__bar___2Cvs2:before{background-color:#de3226}.style__errored___37Uz3>.style__counter___1jByv,.style__errored___37Uz3>.style__label___S5lQL{color:#de3226}.style__hidden___3Rxsu{display:none}.style__root___B4Efa{position:relative;padding:1rem 0}.style__root___B4Efa.style__focus___hIUI5 .style__label___3gOpa{color:#2196f3}.style__root___B4Efa.style__focus___hIUI5 .style__suggestions___2hbqg{max-height:45vh;visibility:visible;box-shadow:0 1px 6px rgba(0,0,0,.12),0 1px 4px rgba(0,0,0,.24)}.style__label___3gOpa{font-size:1.2rem;color:#757575;transition:color .35s cubic-bezier(.4,0,.2,1)}.style__values___15GcX{flex-direction:row;flex-wrap:wrap;padding-bottom:.5rem}.style__value___1GkXL{display:inline-block;padding:.5rem .75rem;margin:.25rem .5rem .25rem 0;font-size:1.2rem;color:#fff;cursor:pointer;background-color:#2196f3;border-radius:.2rem}.style__suggestions___2hbqg{position:absolute;z-index:100;width:100%;max-height:0;overflow-x:hidden;overflow-y:auto;visibility:hidden;background-color:#fff;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:max-height,box-shadow}.style__suggestions___2hbqg::-webkit-scrollbar{width:0;height:0}.style__suggestions___2hbqg:not(.style__up___11B6b){margin-top:-2rem}.style__suggestions___2hbqg.style__up___11B6b{bottom:0}.style__suggestion___22K58{padding:1rem;cursor:pointer}.style__suggestion___22K58.style__active___2_TvC{background-color:#eee}.style__input___20XhX{position:relative}.style__input___20XhX:after{position:absolute;top:50%;right:.8rem;width:0;height:0;content:"";border-top:.54857rem solid rgba(0,0,0,.12);border-right:.54857rem solid transparent;border-left:.54857rem solid transparent;transition:transform .35s cubic-bezier(.4,0,.2,1)}.style__avatar___1WkWs{position:relative;display:inline-block;width:4rem;height:4rem;overflow:hidden;font-size:2.4rem;color:#fff;text-align:center;background-color:#9e9e9e;border-radius:50%}.style__avatar___1WkWs>svg{width:1em;height:4rem;fill:currentColor}.style__avatar___1WkWs>img{max-width:100%;height:auto}.style__image___3_CeG{position:absolute;display:block;width:100%;height:100%;background-color:transparent;background-position:center;background-size:cover;border-radius:50%}.style__letter___bZezt{display:block;width:100%;line-height:4rem}.style__card___hHTyp{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);display:flex;width:100%;flex-direction:column;overflow:hidden;font-size:1.4rem;background:#fff;border-radius:.2rem}.style__card___hHTyp.style__raised___12jKG{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2)}.style__card___hHTyp [data-react-toolbox=avatar]{display:block}.style__cardMedia___2SIkK{position:relative;background-repeat:no-repeat;background-position:center center;background-size:cover}.style__cardMedia___2SIkK.style__square___xRmwD,.style__cardMedia___2SIkK.style__wide___1sG7E{width:100%;height:0}.style__cardMedia___2SIkK.style__square___xRmwD .style__content___Ssid5,.style__cardMedia___2SIkK.style__wide___1sG7E .style__content___Ssid5{position:absolute;height:100%}.style__cardMedia___2SIkK.style__square___xRmwD .style__content___Ssid5>iframe,.style__cardMedia___2SIkK.style__square___xRmwD .style__content___Ssid5>img,.style__cardMedia___2SIkK.style__square___xRmwD .style__content___Ssid5>video,.style__cardMedia___2SIkK.style__wide___1sG7E .style__content___Ssid5>iframe,.style__cardMedia___2SIkK.style__wide___1sG7E .style__content___Ssid5>img,.style__cardMedia___2SIkK.style__wide___1sG7E .style__content___Ssid5>video{max-width:100%}.style__cardMedia___2SIkK.style__wide___1sG7E{padding-top:56.25%}.style__cardMedia___2SIkK.style__square___xRmwD{padding-top:100%}.style__cardMedia___2SIkK .style__content___Ssid5{position:relative;top:0;left:0;display:flex;width:100%;flex-direction:column;justify-content:flex-end;overflow:hidden}.style__cardMedia___2SIkK .style__contentOverlay___3WNAh .style__cardActions___2Slat,.style__cardMedia___2SIkK .style__contentOverlay___3WNAh .style__cardText___2kQZa,.style__cardMedia___2SIkK .style__contentOverlay___3WNAh .style__cardTitle___aVF19{background-color:rgba(0,0,0,.35)}.style__cardTitle___aVF19{display:flex;align-items:center}.style__cardTitle___aVF19 .style__avatar___1l6yJ{margin-right:1.3rem}.style__cardTitle___aVF19 .style__subtitle___375SW{color:#757575}.style__cardTitle___aVF19.style__large___3d36N{padding:2rem 1.6rem 1.4rem}.style__cardTitle___aVF19.style__large___3d36N .style__title___39fgj{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale;line-height:1.25}.style__cardTitle___aVF19.style__small___1PJg1{padding:1.6rem}.style__cardTitle___aVF19.style__small___1PJg1 .style__title___39fgj{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.4rem;line-height:2.4rem;letter-spacing:0;font-weight:500;line-height:1.4}.style__cardTitle___aVF19.style__small___1PJg1 .style__subtitle___375SW{font-weight:500;line-height:1.4}.style__cardMedia___2SIkK .style__cardTitle___aVF19 .style__subtitle___375SW,.style__cardMedia___2SIkK .style__cardTitle___aVF19 .style__title___39fgj{color:#fff}.style__cardText___2kQZa,.style__cardTitle___aVF19{padding:1.4rem 1.6rem}.style__cardText___2kQZa:last-child,.style__cardTitle___aVF19:last-child{padding-bottom:2rem}.style__cardText___2kQZa+.style__cardText___2kQZa,.style__cardTitle___aVF19+.style__cardText___2kQZa{padding-top:0}.style__cardActions___2Slat{display:flex;align-items:center;justify-content:flex-start;padding:.8rem}.style__cardActions___2Slat [data-react-toolbox=button]{min-width:0;padding:0 .8rem;margin:0 .4rem}.style__cardActions___2Slat [data-react-toolbox=button]:first-child{margin-left:0}.style__cardActions___2Slat [data-react-toolbox=button]:last-child{margin-right:0}.style__field___2-p5G{position:relative;display:block;height:1.8rem;margin-bottom:1.5rem;white-space:nowrap;vertical-align:middle}.style__text___3gb36{display:inline-block;padding-left:1rem;font-size:1.4rem;line-height:1.8rem;color:#000;white-space:nowrap;vertical-align:top}.style__input___1hnZ5{width:0;height:0;overflow:hidden;opacity:0}.style__input___1hnZ5:focus~.style__check___zaDvY:before{position:absolute;top:50%;left:50%;width:4.14rem;height:4.14rem;margin-top:-2.07rem;margin-left:-2.07rem;pointer-events:none;content:"";background-color:rgba(0,0,0,.1);border-radius:50%}.style__input___1hnZ5:focus~.style__check___zaDvY.style__checked___1Qd7Z:before{background-color:rgba(33,150,243,.26)}.style__check___zaDvY{position:relative;display:inline-block;width:1.8rem;height:1.8rem;vertical-align:top;cursor:pointer;border:2px solid #000;border-radius:2px;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.2s;transition-property:background-color}.style__check___zaDvY.style__checked___1Qd7Z{background-color:#2196f3;border-color:#2196f3}.style__check___zaDvY.style__checked___1Qd7Z:after{position:absolute;top:-.1rem;left:.4rem;width:.7rem;height:1.2rem;content:"";border-color:#fff;border-style:solid;border-top:0;border-right-width:2px;border-bottom-width:2px;border-left:0;transform:rotate(45deg);animation:style__checkmark-expand___qiKVA .14s ease-out forwards}.style__ripple___LWLr6{background-color:#2196f3;opacity:.3;transition-duration:.65s}.style__disabled___1otwb>.style__text___3gb36{color:rgba(0,0,0,.26)}.style__disabled___1otwb>.style__check___zaDvY{cursor:auto;border-color:rgba(0,0,0,.26)}.style__disabled___1otwb>.style__check___zaDvY.style__checked___1Qd7Z{cursor:auto;background-color:rgba(0,0,0,.26);border-color:transparent}@keyframes style__checkmark-expand___qiKVA{0%{top:.9rem;left:.6rem;width:0;height:0}to{top:-.1rem;left:.4rem;width:.7rem;height:1.2rem}}.slide-left__enter___2KBp_,.slide-left__leave___bnPJY{position:absolute;transition-timing-function:ease-in-out;transition-duration:.35s;transition-property:transform,opacity}.slide-left__enter___2KBp_{opacity:0;transform:translate3d(-100%,0,0)}.slide-left__enter___2KBp_.slide-left__enterActive___1xXLQ,.slide-left__leave___bnPJY{opacity:1;transform:translateZ(0)}.slide-left__leave___bnPJY.slide-left__leaveActive___SkuRi{opacity:0;transform:translate3d(100%,0,0)}.slide-right__enter___1d6rH,.slide-right__leave___2L2xl{position:absolute}.slide-right__enterActive___dKFkP,.slide-right__leaveActive___29mFT{transition-timing-function:ease-in-out;transition-duration:.35s;transition-property:transform,opacity}.slide-right__enter___1d6rH{opacity:0;transform:translateX(100%)}.slide-right__enter___1d6rH.slide-right__enterActive___dKFkP,.slide-right__leave___2L2xl{opacity:1;transform:translateX(0)}.slide-right__leave___2L2xl.slide-right__leaveActive___29mFT{opacity:0;transform:translateX(-100%)}.zoom-in__enter___2BTeD,.zoom-in__leave___2NSG0{position:absolute}.zoom-in__enterActive___2NqDQ,.zoom-in__leaveActive___2Smbb{transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.5s;transition-property:transform,opacity}.zoom-in__enter___2BTeD{opacity:0;transform:scale(.85)}.zoom-in__enter___2BTeD.zoom-in__enterActive___2NqDQ,.zoom-in__leave___2NSG0{opacity:1;transform:scale(1)}.zoom-in__leave___2NSG0.zoom-in__leaveActive___2Smbb{opacity:0;transform:scale(1.25)}.zoom-out__enter___13Uo0,.zoom-out__leave___296R9{position:absolute}.zoom-out__enterActive___13-R7,.zoom-out__leaveActive___3JW2F{transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.5s;transition-property:transform,opacity}.zoom-out__enter___13Uo0{opacity:0;transform:scale(1.25)}.zoom-out__enter___13Uo0.zoom-out__enterActive___13-R7,.zoom-out__leave___296R9{opacity:1;transform:scale(1)}.zoom-out__leave___296R9.zoom-out__leaveActive___3JW2F{opacity:0;transform:scale(.85)}.style-calendar__root___1dCwb{position:relative;height:27rem;overflow:hidden;font-size:1.4rem;line-height:3rem;text-align:center;background:#fff}.style-calendar__root___1dCwb .style-calendar__next___2YJiX,.style-calendar__root___1dCwb .style-calendar__prev___2wj1h{position:absolute;top:0;z-index:100;height:3.6rem;cursor:pointer;opacity:.7}.style-calendar__root___1dCwb .style-calendar__prev___2wj1h{left:0}.style-calendar__root___1dCwb .style-calendar__next___2YJiX{right:0}.style-calendar__title___2aghP{display:inline-block;font-weight:500;line-height:3rem}.style-calendar__years___23BPd{height:100%;overflow-y:auto;font-size:1.8rem}.style-calendar__years___23BPd>li{line-height:2.4;cursor:pointer}.style-calendar__years___23BPd>li.style-calendar__active___3QSOm{font-size:2.4;color:#2196f3}.style-calendar__week___1W9E9{display:flex;height:3rem;flex-wrap:wrap;font-size:1.3rem;line-height:3rem;opacity:.5}.style-calendar__week___1W9E9>span{flex:0 0 14.28571%}.style-calendar__days___2rlgR{display:flex;flex-wrap:wrap;font-size:1.3rem}.style-calendar__day___3O4IR{flex:0 0 14.28571%;padding:.2rem}.style-calendar__day___3O4IR>span{display:inline-block;width:3rem;height:3rem;line-height:3rem;border-radius:50%}.style-calendar__day___3O4IR:hover:not(.style-calendar__active___3QSOm):not(.style-calendar__disabled___3pfMz)>span{color:#fff;background:rgba(33,150,243,.21)}.style-calendar__day___3O4IR.style-calendar__active___3QSOm>span{color:#fff;background:#2196f3}.style-calendar__day___3O4IR:hover:not(.style-calendar__disabled___3pfMz)>span{cursor:pointer}.style-calendar__day___3O4IR.style-calendar__disabled___3pfMz{opacity:.25}.style-calendar__month___1HxXn{background-color:#fff}.style__root___3n6N8{position:fixed;top:0;left:0;z-index:300;display:flex;width:100vw;height:100vh;flex-direction:column;align-content:center;align-items:center;justify-content:center;pointer-events:none}.style__root___3n6N8.style__invisible___3n-tG>:not(.style__overlay___IESZD){pointer-events:all}.style__overlay___IESZD{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#000;opacity:0;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:opacity}.style__active___2C4Q8{pointer-events:all}.style__active___2C4Q8>.style__overlay___IESZD{opacity:.6}.style__root___3T5CA{display:flex;max-width:96vw;max-height:96vh;flex-direction:column;background-color:#fff;border-radius:.2rem;box-shadow:0 19px 60px rgba(0,0,0,.3),0 15px 20px rgba(0,0,0,.22);opacity:0;transition-delay:.07s;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:opacity,transform;transform:translateY(-4rem)}.style__root___3T5CA.style__active___1tg9D{opacity:1;transform:translateY(0)}.style__small___2CeFj{width:30vw}.style__normal___5AvCo{width:50vw}.style__large___1ZTSq{width:96vw}.style__title___1q2Bn{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em;flex-grow:0;margin-bottom:1.6rem;color:#000}.style__body___qJ3so{flex-grow:2;padding:2.4rem;overflow-y:auto;color:#757575}.style__navigation___1P81g{flex-grow:0;padding:.8rem;text-align:right}.style__button___1XfJh{min-width:0;padding-right:.8rem;padding-left:.8rem;margin-left:.8rem}.style__input___-5NxW>[role=input]{cursor:pointer}.style__header___31c9N{padding:1.6rem 2rem;color:#fff;cursor:pointer;background-color:#2196f3}.style__year___3NM1G{display:inline-block;font-size:1.4rem;transition:opacity,font-size .35s cubic-bezier(.4,0,.2,1)}.style__date___s5x14{display:block;font-weight:500;text-transform:capitalize;transition:opacity .35s cubic-bezier(.4,0,.2,1)}.style__wrapper___282DA{padding:1rem .5rem 0}.style__display-years___2ir1D .style__date___s5x14{opacity:.6}.style__display-years___2ir1D .style__year___3NM1G{font-size:1.6rem}.style__display-months___1blmO .style__year___3NM1G{opacity:.6}.style__dialog___2174C{width:33rem}.style__dialog___2174C>[role=body]{padding:0}.style__dialog___2174C>[role=navigation]>.style__button___KEqF-{color:#2196f3}.style__dialog___2174C>[role=navigation]>.style__button___KEqF-:focus:not(:active),.style__dialog___2174C>[role=navigation]>.style__button___KEqF-:hover{background:rgba(33,150,243,.2)}.style__root___2A37R{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);position:absolute;top:0;display:block;width:24rem;height:100%;overflow-x:hidden;overflow-y:auto;color:#424242;pointer-events:none;background-color:#fafafa;transition-delay:0s;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:transform;transform-style:preserve-3d;will-change:transform}.style__root___2A37R.style__active___3N53D{pointer-events:all;transition-delay:.07s;transform:translateX(0)}.style__root___2A37R.style__right___3Zbls{right:0;border-left:1px solid #e0e0e0}.style__root___2A37R.style__right___3Zbls:not(.style__active___3N53D){transform:translateX(100%)}.style__root___2A37R.style__left___1mnt8{left:0;border-right:1px solid #e0e0e0}.style__root___2A37R.style__left___1mnt8:not(.style__active___3N53D){transform:translateX(-100%)}.style__root___3qaz1{position:relative}.style__root___3qaz1:not(.style__active___3uwCT)>.style__values___1SW-t{max-height:0;visibility:hidden}.style__root___3qaz1.style__active___3uwCT>.style__label___J_1oA,.style__root___3qaz1.style__active___3uwCT>.style__value___eqOAl{opacity:.5}.style__root___3qaz1.style__active___3uwCT>.style__values___1SW-t{max-height:45vh;visibility:visible;box-shadow:0 1px 6px rgba(0,0,0,.12),0 1px 4px rgba(0,0,0,.24)}.style__root___3qaz1:not(.style__up___2FQ-j)>.style__values___1SW-t{top:0;bottom:auto}.style__root___3qaz1.style__up___2FQ-j>.style__values___1SW-t{top:auto;bottom:0}.style__root___3qaz1.style__disabled___3jJuW{pointer-events:none;cursor:normal}.style__value___eqOAl>input{cursor:pointer}.style__value___eqOAl:after{position:absolute;top:50%;right:.8rem;width:0;height:0;content:"";border-top:.54857rem solid rgba(0,0,0,.12);border-right:.54857rem solid transparent;border-left:.54857rem solid transparent;transition:transform .35s cubic-bezier(.4,0,.2,1)}.style__field___31EC-{position:relative;padding:2rem 0;cursor:pointer}.style__field___31EC-.style__errored___oNs2H{padding-bottom:0}.style__field___31EC-.style__errored___oNs2H>.style__label___J_1oA{color:#de3226}.style__field___31EC-.style__errored___oNs2H>.style__templateValue___csw7f{border-bottom:1px solid #de3226}.style__field___31EC-.style__disabled___3jJuW{pointer-events:none;cursor:normal}.style__field___31EC-.style__disabled___3jJuW>.style__templateValue___csw7f{border-bottom-style:dotted;opacity:.7}.style__templateValue___csw7f{position:relative;min-height:3.84rem;padding:.8rem 0;color:#212121;background-color:transparent;border-bottom:1px solid rgba(0,0,0,.12)}.style__label___J_1oA{position:absolute;top:.6rem;left:0;font-size:1.2rem;line-height:1.6rem;color:rgba(0,0,0,.26)}.style__error___1Iqbh{margin-bottom:-2rem;font-size:1.2rem;line-height:2rem;color:#de3226}.style__values___1SW-t{position:absolute;z-index:100;width:100%;overflow-y:auto;list-style:none;background-color:#fff;border-radius:.2rem;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:max-height,box-shadow}.style__values___1SW-t::-webkit-scrollbar{width:0;height:0}.style__values___1SW-t>*{position:relative;padding:1rem;overflow:hidden;cursor:pointer}.style__values___1SW-t>:hover{background-color:#eee}.style__values___1SW-t>.style__selected___3ugpw{color:#2196f3}.style__disabled___2xJhZ,.style__field___2nJYe{position:relative;display:block;height:1.6rem;margin-bottom:1.5rem;white-space:nowrap;vertical-align:middle}.style__text___10QFo{display:inline-block;padding-left:1rem;font-size:1.4rem;line-height:1.6rem;color:#000;white-space:nowrap;vertical-align:top}.style__input___2QLpE{position:absolute;width:0;height:0;padding:0;margin:0;border:0;opacity:0;appearance:none}.style__input___2QLpE:focus~.style__radio-checked___3750f,.style__input___2QLpE:focus~.style__radio___3aX8C{box-shadow:0 0 0 1rem rgba(0,0,0,.1)}.style__input___2QLpE:focus~.style__radio-checked___3750f{box-shadow:0 0 0 1rem rgba(33,150,243,.26)}.style__radio-checked___3750f,.style__radio___3aX8C{position:relative;display:inline-block;width:1.6rem;height:1.6rem;vertical-align:top;cursor:pointer;border:.2rem solid #000;border-radius:50%}.style__radio-checked___3750f:before,.style__radio___3aX8C:before{transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.2s;position:absolute;top:.2rem;left:.2rem;width:.8rem;height:.8rem;content:"";background-color:#2196f3;border-radius:50%;transition-property:transform;transform:scale(0)}.style__radio-checked___3750f{border:.2rem solid #2196f3}.style__radio-checked___3750f:before{transform:scale(1)}.style__ripple___Gtrdh{background-color:#2196f3;opacity:.3;transition-duration:.65s}.style__disabled___2xJhZ .style__text___10QFo{color:rgba(0,0,0,.26)}.style__disabled___2xJhZ .style__radio-checked___3750f,.style__disabled___2xJhZ .style__radio___3aX8C{cursor:auto;border-color:rgba(0,0,0,.26)}.style__disabled___2xJhZ .style__radio-checked___3750f:before{background-color:rgba(0,0,0,.26)}.style__container___2tFxG{position:relative;width:calc(100% - 3.2rem);height:3.2rem;margin-right:3.2rem;user-select:none}.style__container___2tFxG:not(:last-child){margin-right:4.2rem}.style__container___2tFxG:not(:first-child){margin-left:1rem}.style__knob___hZctt{position:relative;top:0;left:0;z-index:200;display:flex;width:3.2rem;height:3.2rem;flex-direction:row;align-items:center;justify-content:center;background-color:transparent}.style__innerknob___2xBVL{z-index:100;width:1.2rem;height:1.2rem;background-color:#2196f3;border-radius:50%;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.1s;transition-property:height,width,background-color,border}.style__snaps___2ysIT{position:absolute;top:1.5rem;left:0;display:flex;width:calc(100% + .2rem);height:.2rem;flex-direction:row;pointer-events:none}.style__snaps___2ysIT:after{display:block;width:.2rem;height:.2rem;content:"";background-color:#000;border-radius:50%}.style__snap___1FFhw{flex:1}.style__snap___1FFhw:after{display:block;width:.2rem;height:.2rem;content:"";background-color:#000;border-radius:50%}.style__input___1a_7r{width:5rem;padding:0;margin-bottom:0}.style__input___1a_7r>input{text-align:center}.style__progress___1dqXq{position:absolute;top:0;left:1.6rem;width:100%;height:100%}.style__progress___1dqXq .style__innerprogress___2gebH{position:absolute;top:1.5rem;height:.2rem}.style__progress___1dqXq .style__innerprogress___2gebH [data-ref=value]{transition-duration:0s}.style__root___CqGme:focus .style__knob___hZctt:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:"";background-color:#2196f3;border-radius:50%;opacity:.26}.style__root___CqGme.style__editable___KhsE7{display:flex;flex-direction:row;align-items:center}.style__root___CqGme.style__pinned___eGtmX .style__innerknob___2xBVL:before{position:absolute;top:0;left:0;width:2.6rem;height:2.6rem;margin-left:.3rem;content:"";background-color:#2196f3;border-radius:50% 50% 50% 0;transition:transform .2s ease,background-color .18s ease;transform:rotate(-45deg) scale(0) translate(0)}.style__root___CqGme.style__pinned___eGtmX .style__innerknob___2xBVL:after{position:absolute;top:0;left:0;width:3.2rem;height:2.6rem;font-size:10px;color:#fff;text-align:center;content:attr(data-value);transition:transform .2s ease,background-color .18s ease;transform:scale(0) translate(0)}.style__root___CqGme.style__pressed___3RKXg.style__pinned___eGtmX .style__innerknob___2xBVL:before{transition-delay:.1s;transform:rotate(-45deg) scale(1) translate(1.7rem,-1.7rem)}.style__root___CqGme.style__pressed___3RKXg.style__pinned___eGtmX .style__innerknob___2xBVL:after{transition-delay:.1s;transform:scale(1) translateY(-1.7rem)}.style__root___CqGme.style__pressed___3RKXg:not(.style__pinned___eGtmX).style__ring___34cTF .style__progress___1dqXq{left:3rem;width:calc(100% - 1.4rem)}.style__root___CqGme.style__pressed___3RKXg:not(.style__pinned___eGtmX) .style__innerknob___2xBVL{width:100%;height:100%;transform:translateZ(0)}.style__root___CqGme.style__ring___34cTF .style__innerknob___2xBVL{background-color:transparent;border:.2rem solid #eee}.style__root___CqGme.style__ring___34cTF .style__innerknob___2xBVL:before{background-color:#2196f3}.style__root___CqGme.style__ring___34cTF .style__progress___1dqXq{left:2rem;width:calc(100% - .4rem);transition:left .18s ease,width .18s ease}.style__root___CqGme.style__ring___34cTF.style__pinned___eGtmX .style__innerknob___2xBVL{background-color:#fff}.style__root___CqGme.style__ring___34cTF.style__pinned___eGtmX .style__progress___1dqXq{left:1.6rem;width:100%}.style__linear___2r2dx{position:relative;display:inline-block;width:100%;height:.4rem;overflow:hidden;background:#eee}.style__linear___2r2dx.style__indeterminate___3W2GC .style__value___1V0UL{transform-origin:center center;animation:style__linear-indeterminate-bar___1RAzh 1s linear infinite}.style__buffer___2Y7Ve,.style__value___1V0UL{position:absolute;top:0;right:0;bottom:0;left:0;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transform:scaleX(0);transform-origin:left center}.style__value___1V0UL{background-color:#2196f3}.style__buffer___2Y7Ve{background-image:linear-gradient(90deg,hsla(0,0%,100%,.7),hsla(0,0%,100%,.7)),linear-gradient(90deg,#2196f3,#2196f3)}.style__circular___XW0Oi{position:relative;display:inline-block;width:60px;height:60px;transform:rotate(-90deg)}.style__circular___XW0Oi.style__indeterminate___3W2GC .style__circle___zGjcF{animation:style__circular-indeterminate-bar-rotate___xXIT4 2s linear infinite}.style__circular___XW0Oi.style__indeterminate___3W2GC .style__path___6yxTa{animation:style__circular-indeterminate-bar-dash___2-FXR 1.5s ease-in-out infinite;stroke-dasharray:1.25,250;stroke-dashoffset:0}.style__circular___XW0Oi.style__indeterminate___3W2GC.style__multicolor___3HC7O .style__path___6yxTa{animation:style__circular-indeterminate-bar-dash___2-FXR 1.5s ease-in-out infinite,style__colors___2l612 6s ease-in-out infinite}.style__circle___zGjcF{width:100%;height:100%}.style__path___6yxTa{transition:stroke-dasharray .35s cubic-bezier(.4,0,.2,1);fill:none;stroke-dasharray:0,250;stroke-dashoffset:0;stroke-linecap:round;stroke-miterlimit:20;stroke-width:4;stroke:#2196f3}@keyframes style__linear-indeterminate-bar___1RAzh{0%{transform:translate(-50%) scaleX(0)}50%{transform:translate(0) scaleX(.3)}to{transform:translate(50%) scaleX(0)}}@keyframes style__circular-indeterminate-bar-rotate___xXIT4{to{transform:rotate(1turn)}}@keyframes style__circular-indeterminate-bar-dash___2-FXR{0%{stroke-dasharray:1.25,250;stroke-dashoffset:0}50%{stroke-dashoffset:-43.75}50%,to{stroke-dasharray:111.25,250}to{stroke-dashoffset:-155}}@keyframes style__colors___2l612{0%{stroke:#4285f4}25%{stroke:#de3e35}50%{stroke:#f7c223}75%{stroke:#1b9a59}to{stroke:#4285f4}}.style__disabled___2u8ZA,.style__field___3GHeM{position:relative;display:block;height:2.4rem;margin-bottom:1.5rem;white-space:nowrap;vertical-align:middle}.style__text___KICIc{display:inline-block;padding-left:1rem;font-size:1.4rem;line-height:2.4rem;color:#000;white-space:nowrap;vertical-align:top}.style__off___1kbIk,.style__on___2Zgic{position:relative;display:inline-block;width:3.6rem;height:1.4rem;margin-top:.5rem;vertical-align:top;cursor:pointer;border-radius:1.4rem}.style__thumb___zE_hl{transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.28s;position:absolute;top:-.3rem;width:2rem;height:2rem;cursor:pointer;border-radius:50%;transition-property:left}.style__ripple___2okyK{background-color:#2196f3;opacity:.3;transition-duration:.65s}.style__on___2Zgic{background:rgba(33,150,243,.5)}.style__on___2Zgic .style__thumb___zE_hl{box-shadow:0 3px 4px 0 rgba(0,0,0,.14),0 3px 3px -2px rgba(0,0,0,.2),0 1px 8px 0 rgba(0,0,0,.12);left:1.6rem;background:#2196f3}.style__off___1kbIk{background:rgba(0,0,0,.26)}.style__off___1kbIk .style__thumb___zE_hl{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);left:0;background:#fafafa}.style__off___1kbIk .style__ripple___2okyK{background:rgba(0,0,0,.4)}.style__input___oQl14:focus:not(:active)+.style__switch-off___3OXQY>.style__thumb___zE_hl:before,.style__input___oQl14:focus:not(:active)+.style__switch-on___2A3we>.style__thumb___zE_hl:before{position:absolute;top:50%;left:50%;box-sizing:border-box;display:inline-block;width:.8rem;height:.8rem;content:"";background-color:transparent;border-radius:50%;transform:translate(-.4rem,-.4rem)}.style__input___oQl14{width:0;height:0;overflow:hidden;opacity:0}.style__input___oQl14:focus:not(:active)+.style__switch-on___2A3we>.style__thumb___zE_hl:before{background-color:rgba(33,150,243,.26);box-shadow:0 0 0 2rem rgba(33,150,243,.26)}.style__input___oQl14:focus:not(:active)+.style__switch-off___3OXQY>.style__thumb___zE_hl:before{background-color:rgba(0,0,0,.1);box-shadow:0 0 0 2rem rgba(0,0,0,.1)}.style__disabled___2u8ZA .style__text___KICIc{color:rgba(0,0,0,.26)}.style__disabled___2u8ZA .style__off___1kbIk,.style__disabled___2u8ZA .style__on___2Zgic{cursor:auto;background:rgba(0,0,0,.12)}.style__disabled___2u8ZA .style__thumb___zE_hl{cursor:auto;background-color:#bdbdbd;border-color:transparent}.style__input___2aF87>[role=input]{cursor:pointer}.style__header___2QpfB{position:relative;width:100%;padding:1rem;font-size:5.2rem;color:#fff;text-align:center;background:#2196f3}.style__hours___12gMB,.style__minutes___jP21K{display:inline-block;cursor:pointer;opacity:.6}.style__separator___3cXoB{margin:0 .5rem;opacity:.6}.style__ampm___2kv8T{position:absolute;top:50%;right:2rem;width:4rem;height:4.4rem;margin-top:-2.2rem;font-size:1.6rem;line-height:2.2rem;text-align:center}.style__am___3OARW,.style__pm___3Hjp9{display:block;cursor:pointer;opacity:.6}.style__dialog___1ZsFe{width:30rem}.style__dialog___1ZsFe>[role=body]{padding:0;overflow-y:visible}.style__dialog___1ZsFe>[role=navigation]>.style__button___YQ8OA{color:#2196f3}.style__dialog___1ZsFe>[role=navigation]>.style__button___YQ8OA:focus:not(:active),.style__dialog___1ZsFe>[role=navigation]>.style__button___YQ8OA:hover{background:rgba(33,150,243,.2)}.style__dialog___1ZsFe.style__display-hours___xv8yx .style__hours___12gMB,.style__dialog___1ZsFe.style__display-minutes___1MOZK .style__minutes___jP21K,.style__dialog___1ZsFe.style__format-am___2VjB9 .style__am___3OARW,.style__dialog___1ZsFe.style__format-pm___1aV05 .style__pm___3Hjp9{opacity:1}.style-clock__root___21FRP{padding:1.5rem 2rem}.style-clock__placeholder___3fCCu{position:relative;z-index:100}.style-clock__wrapper___3jUDX{position:absolute;width:100%;background-color:#eee;border-radius:50%}.style-clock__face___1tW_S{position:absolute;top:50%;left:50%;z-index:100;cursor:pointer;border-radius:50%;transform:translateX(-50%) translateY(-50%)}.style-clock__number___ymI9P{position:relative;width:2rem;height:2rem;margin-top:-1rem;margin-left:-1rem;text-align:center;pointer-events:none;user-select:none}.style-clock__number___ymI9P.style-clock__active___LpeoO{color:#fff}.style-clock__hand___X209N{position:absolute;bottom:50%;left:50%;display:block;width:.4rem;margin-left:-.2rem;background-color:#2196f3;transform-origin:50% 100%}.style-clock__hand___X209N:before{position:absolute;bottom:0;left:50%;width:1rem;height:1rem;margin-bottom:-.5rem;margin-left:-.5rem;content:"";background-color:#2196f3;border-radius:50%}.style-clock__hand___X209N.style-clock__small___3327g>.style-clock__knob___zJjYO{background-color:rgba(33,150,243,.2)}.style-clock__hand___X209N.style-clock__small___3327g>.style-clock__knob___zJjYO:after{position:absolute;top:50%;left:50%;width:1.2rem;height:1.2rem;margin-top:-.6rem;margin-left:-.6rem;content:"";background:#2196f3;border-radius:50%}.style-clock__hand___X209N.style-clock__small___3327g>.style-clock__knob___zJjYO:before{position:absolute;bottom:0;left:50%;width:.4rem;height:2.2rem;margin-left:-.2rem;content:"";background:#2196f3}.style-clock__knob___zJjYO{position:absolute;top:-3.4rem;left:50%;width:3.4rem;height:3.4rem;margin-left:-1.7rem;cursor:pointer;background-color:#2196f3;border-radius:50%}.style__root___3MqBU>:last-child{margin-bottom:0}.style__icon___3UHtC{margin-right:1rem;font-size:1.8rem}.style__root___TfQXs{position:relative;display:flex;flex-direction:row;align-content:center;align-items:center;justify-content:center;overflow:hidden;line-height:1.5;cursor:pointer;transition:opacity .35s cubic-bezier(.4,0,.2,1)}.style__root___TfQXs:not(.style__active___1J6rT){opacity:.5}.style__root___TfQXs:active,.style__root___TfQXs:hover{opacity:1}.style__root___TfQXs>*{vertical-align:middle}.style__root___TfQXs>abbr{text-transform:capitalize}.style__root___TfQXs>small{margin-left:.8rem;font-size:1.2rem;text-align:center}.style__list___3sYiJ{position:relative;display:inline-block;width:100%;padding:.8rem 0;text-align:left;white-space:nowrap;list-style:none}.style__subheader___x_hpT{padding-left:1.6rem;margin:-.8rem 0 0;font-size:1.4rem;font-weight:500;line-height:4.8rem;color:#757575}.style__divider___2YByN{height:.1rem;margin:-.1rem 0 0;background-color:#eee;border:0}.style__divider___2YByN.style__inset___KjthD{margin-right:1.6rem;margin-left:7.2rem}.style__list___3sYiJ+.style__divider___2YByN{margin-top:-.8rem}.style__listItem___Q2_Os~.style__divider___2YByN{margin:.8rem 0}.style__listItem___Q2_Os{position:relative}.style__listItem___Q2_Os>[data-react-toolbox=ripple]{overflow:hidden}.style__item___2Bkkf{position:relative;display:flex;min-height:4.8rem;align-items:center;padding:0 1.6rem;color:#212121}.style__item___2Bkkf.style__selectable___2Kh4s:not(.style__disabled___2K9dl):hover{cursor:pointer;background-color:#eee}.style__item___2Bkkf.style__withLegend___20zzB{height:7.2rem}.style__item___2Bkkf.style__disabled___2K9dl{pointer-events:none}.style__item___2Bkkf.style__disabled___2K9dl:not(.style__checkboxItem___2JReL),.style__item___2Bkkf.style__disabled___2K9dl>.style__checkbox___2i6f_>[data-role=label]{opacity:.5}.style__checkbox___2i6f_{display:flex;width:100%;min-height:4.8rem;align-items:center;margin:0;cursor:pointer}.style__checkbox___2i6f_>[data-role=checkbox]{margin-right:3.8rem}.style__checkbox___2i6f_>[data-role=label]{padding-left:0}.style__ripple___2cmUu{color:#757575}.style__text___3Vygm{flex-grow:1}.style__caption___uVSSw{display:block;font-size:1.6rem;color:#212121}.style__legend___NPbQT{display:block;padding-top:.3rem;font-size:1.4rem;color:#757575;white-space:normal}.style__avatar___2e0HK{display:flex;width:4rem;height:4rem;flex:0 0 auto;margin:.8rem 1.6rem .8rem 0;overflow:hidden;border-radius:50%}.style__left___3UWxG,.style__right___28QpI{display:flex;align-items:center;vertical-align:middle}.style__left___3UWxG.style__icon___3CubP,.style__right___28QpI.style__icon___3CubP{font-size:2.4rem;color:#757575}.style__right___28QpI{margin-left:1.6rem}.style__left___3UWxG.style__icon___3CubP{width:1.8rem;margin-right:3.8rem}.style-menu_item__root___2F3aH{position:relative;display:flex;height:4.8rem;align-items:center;padding:0 1.6rem;overflow:hidden;font-size:1.6rem;color:#212121}.style-menu_item__root___2F3aH:not(.style-menu_item__disabled___66_rc):hover{cursor:pointer;background-color:#eee}.style-menu_item__root___2F3aH.style-menu_item__disabled___66_rc{pointer-events:none;opacity:.5}.style-menu_item__root___2F3aH.style-menu_item__selected___1yBAb{font-weight:500}.style-menu_item__icon___3jhss{width:3.84rem;font-size:2.4rem!important}.style-menu_item__caption___Hc0qc{flex-grow:1;font-size:1.6rem}.style-menu_item__shortcut___2Ap5k{margin-left:1.6rem}.style-menu_item__ripple___3xkzH{color:#757575}.style-menu__root___1WAaw{position:relative;display:inline-block}.style-menu__root___1WAaw.style-menu__top-left___24NZe{position:absolute;top:0;left:0}.style-menu__root___1WAaw.style-menu__top-left___24NZe>.style-menu__outline___TvgIg{transform-origin:0 0}.style-menu__root___1WAaw.style-menu__top-right___2lVae{position:absolute;top:0;right:0}.style-menu__root___1WAaw.style-menu__top-right___2lVae>.style-menu__outline___TvgIg{transform-origin:100% 0}.style-menu__root___1WAaw.style-menu__bottom-left___1W-ln{position:absolute;bottom:0;left:0}.style-menu__root___1WAaw.style-menu__bottom-left___1W-ln>.style-menu__outline___TvgIg{transform-origin:0 100%}.style-menu__root___1WAaw.style-menu__bottom-right___3HkRH{position:absolute;right:0;bottom:0}.style-menu__root___1WAaw.style-menu__bottom-right___3HkRH>.style-menu__outline___TvgIg{transform-origin:100% 100%}.style-menu__root___1WAaw:not(.style-menu__static___3chqv){z-index:200;pointer-events:none}.style-menu__root___1WAaw:not(.style-menu__static___3chqv)>.style-menu__outline___TvgIg{opacity:0;transition:transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);transform:scale(0);will-change:transform}.style-menu__root___1WAaw:not(.style-menu__static___3chqv)>.style-menu__menu___1ErTo{position:absolute;top:0;left:0;opacity:0}.style-menu__root___1WAaw:not(.style-menu__static___3chqv).style-menu__rippled___32wnT:not(.style-menu__active___1d1TQ)>.style-menu__menu___1ErTo,.style-menu__root___1WAaw:not(.style-menu__static___3chqv).style-menu__rippled___32wnT:not(.style-menu__active___1d1TQ)>.style-menu__outline___TvgIg{transition-delay:.3s}.style-menu__root___1WAaw:not(.style-menu__static___3chqv).style-menu__active___1d1TQ{pointer-events:all}.style-menu__root___1WAaw:not(.style-menu__static___3chqv).style-menu__active___1d1TQ>.style-menu__outline___TvgIg{opacity:1;transform:scale(1)}.style-menu__root___1WAaw:not(.style-menu__static___3chqv).style-menu__active___1d1TQ>.style-menu__menu___1ErTo{opacity:1;transition:opacity .2s cubic-bezier(.4,0,.2,1),clip .3s cubic-bezier(.4,0,.2,1)}.style-menu__outline___TvgIg{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);position:absolute;top:0;left:0;display:block;background-color:#fff;border-radius:.2rem}.style-menu__menu___1ErTo{position:relative;display:block;padding:.8rem 0;text-align:left;white-space:nowrap;list-style:none}.style-menu_divider__root___2B_qE{display:block;width:100%;height:1px;margin:1.2rem 0;background-color:#eee}.style-icon_menu__root___24JFX{position:relative;display:inline-block;text-align:center}.style-icon_menu__icon___v4zMm{cursor:pointer}.style__horizontal___Wmc6K>[data-react-toolbox=button],.style__horizontal___Wmc6K>[data-react-toolbox=link]{display:inline-block;margin:0 .5rem}.style__vertical___1EpEH>[data-react-toolbox=button],.style__vertical___1EpEH>[data-react-toolbox=link]{display:block;margin:.5rem}.style__horizontal___Wmc6K,.style__vertical___1EpEH{padding:.5rem}.style__horizontal___Wmc6K>[data-react-toolbox=link],.style__vertical___1EpEH>[data-react-toolbox=link]{color:#000}.style__root___1VlMR{position:fixed;right:2.4rem;bottom:0;left:2.4rem;z-index:200;display:flex;align-items:center;padding:1.4rem 2.4rem;margin:0 auto;margin-top:1.4rem;color:#fff;background-color:#212121;border-radius:.2rem;transition:all .35s cubic-bezier(.4,0,.2,1) .35s}.style__root___1VlMR.style__accept___2wguE .style__button___23Z3C{color:#4caf50}.style__root___1VlMR.style__warning___pM9b9 .style__button___23Z3C{color:#eeff41}.style__root___1VlMR.style__cancel___1qgec .style__button___23Z3C{color:#f44336}.style__root___1VlMR:not(.style__active___v4Lk0){transform:translateY(100%)}.style__root___1VlMR.style__active___v4Lk0{transform:translateY(0)}.style__icon___2SBR5{margin-right:1.4rem}.style__label___23AAO{flex-grow:1;font-size:1.4rem}.style__button___23Z3C{min-width:inherit;margin:-.7rem -1.2rem -.7rem 4.8rem}.style__root___34pvj{width:100%;font-size:1.2rem;color:#757575;text-align:left}.style__root___34pvj tr{height:48px;line-height:48px;border-bottom:1px solid rgba(0,0,0,.12)}.style__root___34pvj th{font-weight:700}.style__root___34pvj th:first-letter{text-transform:capitalize}.style__root___34pvj td,.style__root___34pvj th{position:relative;padding:0 1.8rem}.style__root___34pvj td.style__selectable___2Xqqz,.style__root___34pvj th.style__selectable___2Xqqz{width:1.8rem;padding-right:0}.style__root___34pvj td.style__selectable___2Xqqz>*,.style__root___34pvj th.style__selectable___2Xqqz>*{margin:0}.style__row___3nOia{transition:background-color .35s cubic-bezier(.4,0,.2,1)}.style__row___3nOia:last-child{border-color:transparent}.style__row___3nOia>td>input{display:block;width:100%;background-color:transparent;border:0}.style__row___3nOia:hover,.style__selected___3jBMk{background-color:#eee}.style__editable___2Lt9T>*{cursor:pointer}.style__root___2_Yle{position:relative;display:flex;flex-direction:column}.style__navigation___2MewJ{display:flex;flex-direction:row;box-shadow:inset 0 -1px #eee}.style__label___2yFp3{padding:1.7rem 1.2rem;font-size:1.4rem;font-weight:500;line-height:1;color:rgba(0,0,0,.7);text-transform:uppercase;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:box-shadow,color}.style__label___2yFp3.style__active___1brJ8{color:#000}.style__label___2yFp3.style__disabled___582SH{opacity:.2}.style__label___2yFp3:not(.style__disabled___582SH){cursor:pointer}.style__label___2yFp3.style__hidden___3xdA2{display:none}.style__pointer___2zfva{position:absolute;width:0;height:.2rem;margin-top:-.2rem;background-color:#2196f3;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.35s;transition-property:left,width}.style__tab___3HSUU{display:flex;flex-direction:column;padding:1.7rem 1.2rem}.style__tab___3HSUU:not(.style__active___1brJ8){display:none}.style__tab___3HSUU.style__active___1brJ8{display:block}.style__root___1_onf{position:relative}.style__tooltip___2RHH9{position:absolute;top:100%;left:50%;z-index:200;display:block;max-width:17rem;padding:.8rem;margin:.5rem 0;font-family:Roboto,sans-serif;font-size:1rem;font-weight:700;line-height:1.4rem;color:#fff;text-align:center;text-transform:none;background:rgba(97,97,97,.9);border-radius:.2rem;transition:cubic-bezier(.4,0,.2,1) .2s transform;transform:scale(0) translateX(-50%);transform-origin:top left}.style__tooltip___2RHH9.style__active___1d4Aq{transform:scale(1) translateX(-50%)}.style__root___UCDwy{display:flex;width:22rem;flex-direction:column;background-color:#fff}.style__list___30pVN{flex-grow:1;overflow-y:auto}.style__list___30pVN::-webkit-scrollbar{width:0;height:0}.style__item___24wc1{padding:1.2rem 2.4rem}.style__item___24wc1>span>span{font-size:1.6rem;font-weight:500}.style__active___1yd79{background:#eee}.style__footer___2hyPF{flex-grow:0;padding:2.4rem;overflow:hidden;font-size:1.4rem;color:#757575;border-top:1px solid #e0e0e0}.style__footer___2hyPF>*{display:block}.style__footer___2hyPF .style__relative___47NvY{position:relative}.style__footer___2hyPF .style__absolute___1AVz-{position:absolute;top:50%;margin-top:-2rem;margin-left:1rem}.style__contents___2K8GZ{position:fixed;top:6.4rem;right:0;bottom:0;left:22rem;z-index:1;transition:padding .35s cubic-bezier(.4,0,.2,1)}.style__sidebar___CX_tf{position:fixed;top:6.4rem;bottom:0;left:0;z-index:100;box-shadow:0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);transition:transform .35s cubic-bezier(.4,0,.2,1)}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{font-size:62.5%}body{position:absolute;width:100%;height:100%;padding:0;margin:0;font-family:Roboto,sans-serif;font-size:1.6rem;-webkit-touch-callout:none}body *{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{padding:0;margin:0;border:0;outline:0}*,:after,:before{box-sizing:border-box;padding:0;margin:0}a,abbr,button,h1,h2,h3,h4,h5,h6,label,p,small,span{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-size-adjust:100%}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button,input:not([type=checkbox]):not([type=radio]){outline:none;appearance:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(255,255,255,0)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{opacity:.54}h1,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:5.6rem;font-weight:400;line-height:1.35;letter-spacing:-.02em}h2{font-size:4.5rem;line-height:4.8rem}h2,h3{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h3{font-size:3.4rem;line-height:4rem}h4{font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale}h4,h5{font-family:Roboto,Helvetica,Arial,sans-serif}h5{font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em}h6{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.6rem;letter-spacing:.04em}h6,p{font-weight:400;line-height:2.4rem}p{font-size:1.4rem;letter-spacing:0}.style__content___27hkT{overflow:auto;height:100%;padding:4rem}.style__content___27hkT h1{font-size:3rem;color:#2196f3;padding-bottom:1rem}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{font-size:62.5%}body{position:absolute;width:100%;height:100%;padding:0;margin:0;font-family:Roboto,sans-serif;font-size:1.6rem;-webkit-touch-callout:none}body *{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{padding:0;margin:0;border:0;outline:0}*,:after,:before{box-sizing:border-box;padding:0;margin:0}a,abbr,button,h1,h2,h3,h4,h5,h6,label,p,small,span{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-size-adjust:100%}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button,input:not([type=checkbox]):not([type=radio]){outline:none;appearance:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(255,255,255,0)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{opacity:.54}h1,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:5.6rem;font-weight:400;line-height:1.35;letter-spacing:-.02em}h2{font-size:4.5rem;line-height:4.8rem}h2,h3{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h3{font-size:3.4rem;line-height:4rem}h4{font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale}h4,h5{font-family:Roboto,Helvetica,Arial,sans-serif}h5{font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em}h6{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.6rem;letter-spacing:.04em}h6,p{font-weight:400;line-height:2.4rem}p{font-size:1.4rem;letter-spacing:0}.style__content___1dlb5{overflow:auto;height:100%;padding:4rem}.style__content___1dlb5 h1{font-size:3rem;color:#2196f3;padding-bottom:1rem}.style__content___1dlb5 .style__form___2GI-2{padding:1rem}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{font-size:62.5%}body{position:absolute;width:100%;height:100%;padding:0;margin:0;font-family:Roboto,sans-serif;font-size:1.6rem;-webkit-touch-callout:none}body *{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{padding:0;margin:0;border:0;outline:0}*,:after,:before{box-sizing:border-box;padding:0;margin:0}a,abbr,button,h1,h2,h3,h4,h5,h6,label,p,small,span{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-size-adjust:100%}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button,input:not([type=checkbox]):not([type=radio]){outline:none;appearance:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(255,255,255,0)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{opacity:.54}h1,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:5.6rem;font-weight:400;line-height:1.35;letter-spacing:-.02em}h2{font-size:4.5rem;line-height:4.8rem}h2,h3{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h3{font-size:3.4rem;line-height:4rem}h4{font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale}h4,h5{font-family:Roboto,Helvetica,Arial,sans-serif}h5{font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em}h6{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.6rem;letter-spacing:.04em}h6,p{font-weight:400;line-height:2.4rem}p{font-size:1.4rem;letter-spacing:0}.style__content___3tzwU{overflow:auto;height:100%;padding:4rem}.style__content___3tzwU h1{font-size:3rem;color:#2196f3;padding-bottom:1rem}.style__content___3tzwU .style__products___1EZNO{margin:20px;width:660px}.style__content___3tzwU .style__product___35rbe{float:left;margin-right:20px;margin-bottom:20px;width:200px}.style__content___3tzwU .style__product___35rbe .style__material___KbPoI{list-style:none;padding-top:5px;padding-left:10px}@media all and (max-width:768px){.style__content___3tzwU .style__products___1EZNO{width:200px}.style__content___3tzwU .style__product___35rbe{width:400px}}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{font-size:62.5%}body{position:absolute;width:100%;height:100%;padding:0;margin:0;font-family:Roboto,sans-serif;font-size:1.6rem;-webkit-touch-callout:none}body *{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{padding:0;margin:0;border:0;outline:0}*,:after,:before{box-sizing:border-box;padding:0;margin:0}a,abbr,button,h1,h2,h3,h4,h5,h6,label,p,small,span{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-size-adjust:100%}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button,input:not([type=checkbox]):not([type=radio]){outline:none;appearance:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(255,255,255,0)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{opacity:.54}h1,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:5.6rem;font-weight:400;line-height:1.35;letter-spacing:-.02em}h2{font-size:4.5rem;line-height:4.8rem}h2,h3{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h3{font-size:3.4rem;line-height:4rem}h4{font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale}h4,h5{font-family:Roboto,Helvetica,Arial,sans-serif}h5{font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em}h6{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.6rem;letter-spacing:.04em}h6,p{font-weight:400;line-height:2.4rem}p{font-size:1.4rem;letter-spacing:0}.style__content___3gl60{overflow:auto;height:100%;padding:4rem}.style__content___3gl60 h1{font-size:3rem;color:#2196f3;padding-bottom:1rem}.style__content___3gl60 .style__materials___E70Dr{margin:20px;width:660px}.style__content___3gl60 .style__material___ZYzkC{float:left;margin-right:20px;margin-bottom:20px;width:200px}@media all and (max-width:768px){.style__content___3gl60 .style__materials___E70Dr{width:200px}.style__content___3gl60 .style__material___ZYzkC{width:400px}}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{font-size:62.5%}body{position:absolute;width:100%;height:100%;padding:0;margin:0;font-family:Roboto,sans-serif;font-size:1.6rem;-webkit-touch-callout:none}body *{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{padding:0;margin:0;border:0;outline:0}*,:after,:before{box-sizing:border-box;padding:0;margin:0}a,abbr,button,h1,h2,h3,h4,h5,h6,label,p,small,span{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-size-adjust:100%}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button,input:not([type=checkbox]):not([type=radio]){outline:none;appearance:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(255,255,255,0)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{opacity:.54}h1,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:5.6rem;font-weight:400;line-height:1.35;letter-spacing:-.02em}h2{font-size:4.5rem;line-height:4.8rem}h2,h3{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h3{font-size:3.4rem;line-height:4rem}h4{font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale}h4,h5{font-family:Roboto,Helvetica,Arial,sans-serif}h5{font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em}h6{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.6rem;letter-spacing:.04em}h6,p{font-weight:400;line-height:2.4rem}p{font-size:1.4rem;letter-spacing:0}.style__content___3PHBo{overflow:auto;height:100%;padding:4rem}.style__content___3PHBo h1{font-size:3rem;color:#2196f3;padding-bottom:1rem}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{font-size:62.5%}body{position:absolute;width:100%;height:100%;padding:0;margin:0;font-family:Roboto,sans-serif;font-size:1.6rem;-webkit-touch-callout:none}body *{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{padding:0;margin:0;border:0;outline:0}*,:after,:before{box-sizing:border-box;padding:0;margin:0}a,abbr,button,h1,h2,h3,h4,h5,h6,label,p,small,span{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-size-adjust:100%}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button,input:not([type=checkbox]):not([type=radio]){outline:none;appearance:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(255,255,255,0)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{opacity:.54}h1,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:5.6rem;font-weight:400;line-height:1.35;letter-spacing:-.02em}h2{font-size:4.5rem;line-height:4.8rem}h2,h3{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h3{font-size:3.4rem;line-height:4rem}h4{font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale}h4,h5{font-family:Roboto,Helvetica,Arial,sans-serif}h5{font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em}h6{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.6rem;letter-spacing:.04em}h6,p{font-weight:400;line-height:2.4rem}p{font-size:1.4rem;letter-spacing:0}.style__content___2WmNY{overflow:auto;height:100%;padding:4rem}.style__content___2WmNY h1{font-size:3rem;color:#2196f3;padding-bottom:1rem}.style__button___3ucCN{font-size:1.2rem;margin:1rem}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{font-size:62.5%}body{position:absolute;width:100%;height:100%;padding:0;margin:0;font-family:Roboto,sans-serif;font-size:1.6rem;-webkit-touch-callout:none}body *{-webkit-tap-highlight-color:rgba(255,255,255,0)}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{padding:0;margin:0;border:0;outline:0}*,:after,:before{box-sizing:border-box;padding:0;margin:0}a,abbr,button,h1,h2,h3,h4,h5,h6,label,p,small,span{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-size-adjust:100%}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button,input:not([type=checkbox]):not([type=radio]){outline:none;appearance:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(255,255,255,0)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{opacity:.54}h1,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:5.6rem;font-weight:400;line-height:1.35;letter-spacing:-.02em}h2{font-size:4.5rem;line-height:4.8rem}h2,h3{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400}h3{font-size:3.4rem;line-height:4rem}h4{font-size:2.4rem;font-weight:400;line-height:3.2rem;-moz-osx-font-smoothing:grayscale}h4,h5{font-family:Roboto,Helvetica,Arial,sans-serif}h5{font-size:2rem;font-weight:500;line-height:1;letter-spacing:.02em}h6{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:1.6rem;letter-spacing:.04em}h6,p{font-weight:400;line-height:2.4rem}p{font-size:1.4rem;letter-spacing:0}.style__content___12LQx{overflow:auto;height:100%;padding:4rem}.style__content___12LQx h1{font-size:3rem;color:#2196f3;padding-bottom:1rem}
@@ -0,0 +1,6 @@
1
+ module Bouquet
2
+ module Store
3
+ class ApplicationController < ActionController::Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,8 @@
1
+ require_dependency "bouquet/store/application_controller"
2
+
3
+ module Bouquet::Store
4
+ class MainController < ApplicationController
5
+ def index
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,15 @@
1
+ module Bouquet
2
+ module Store
3
+ module ApplicationHelper
4
+ def switch_stylesheet_link_tag(path)
5
+ path = "http://localhost:4000/assets/stylesheets/#{path}.css" if ENV["NODE_ENV"] == 'development'
6
+ stylesheet_link_tag(path)
7
+ end
8
+
9
+ def switch_javascript_include_tag(path)
10
+ path = "http://localhost:4000/assets/javascripts/#{path}.js" if ENV["NODE_ENV"] == 'development'
11
+ javascript_include_tag(path)
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,6 @@
1
+ module Bouquet
2
+ module Store
3
+ class ApplicationJob < ActiveJob::Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ module Bouquet
2
+ module Store
3
+ class ApplicationRecord < ActiveRecord::Base
4
+ self.abstract_class = true
5
+ end
6
+ end
7
+ end
@@ -0,0 +1 @@
1
+ <div id="main"></div>
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Bouquet store</title>
5
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
6
+ <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
7
+ <%= switch_stylesheet_link_tag "bouquet/store/application" %>
8
+ <%= csrf_meta_tags %>
9
+ </head>
10
+ <body>
11
+
12
+ <%= yield %>
13
+ <%= switch_javascript_include_tag "bouquet/store/application" %>
14
+ </body>
15
+ </html>
data/store/bin/rails ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
+
4
+ ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
+ ENGINE_PATH = File.expand_path('../../lib/bouquet/store/engine', __FILE__)
6
+
7
+ # Set up gems listed in the Gemfile.
8
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
+
11
+ require 'rails/all'
12
+ require 'rails/engine/commands'
@@ -0,0 +1,22 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require "bouquet/store/version"
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |s|
8
+ s.name = "bouquet-store"
9
+ s.version = Bouquet::Store::VERSION
10
+ s.authors = ["ogom"]
11
+ s.email = ["ogom@outlook.com"]
12
+ s.homepage = "https://github.com/dddrb/bouquet"
13
+ s.summary = "Summary of Bouquet::Store."
14
+ s.description = "Description of Bouquet::Store."
15
+ s.license = "MIT"
16
+
17
+ s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
18
+
19
+ s.add_dependency "rails", ">= 5.0.0.beta1", "< 5.1"
20
+
21
+ s.add_development_dependency "sqlite3"
22
+ end
@@ -0,0 +1,4 @@
1
+ Bouquet::Store::Engine.routes.draw do
2
+ root 'main#index'
3
+ get '*path', to: 'main#index'
4
+ end
@@ -0,0 +1,15 @@
1
+ module Bouquet
2
+ module Store
3
+ class Engine < ::Rails::Engine
4
+ isolate_namespace Bouquet::Store
5
+
6
+ config.generators do |g|
7
+ g.test_framework :rspec, fixture: true
8
+ g.fixture_replacement :factory_girl, dir: "spec/factories"
9
+ g.javascripts false
10
+ g.stylesheets false
11
+ g.helper false
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ module Bouquet
2
+ module Store
3
+ VERSION = '0.1.0'
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ require "bouquet/store/engine"
2
+
3
+ module Bouquet
4
+ module Store
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :bouquet_store do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "static",
3
+ "version": "0.1.0",
4
+ "scripts": {
5
+ "start": "cd ./private/static && NODE_ENV=development node server.js",
6
+ "build": "cd ./private/static && NODE_ENV=production webpack -p --config webpack.production.js",
7
+ "elect": "cd ./private/static && electron main.js"
8
+ },
9
+ "dependencies": {
10
+ "babel-core": "^5.0.0",
11
+ "es6-promise": "^3.0.2",
12
+ "history": "^1.17.0",
13
+ "isomorphic-fetch": "^2.2.1",
14
+ "lodash": "^4.0.0",
15
+ "react": "^0.14.0",
16
+ "react-dom": "^0.14.0",
17
+ "react-redux": "^4.0.0",
18
+ "react-router": "^1.0.3",
19
+ "react-toolbox": "^0.14.0",
20
+ "redux": "^3.0.4",
21
+ "redux-simple-router": "^1.0.2",
22
+ "redux-thunk": "^1.0.0",
23
+ "whatwg-fetch": "^0.10.1"
24
+ },
25
+ "devDependencies": {
26
+ "autoprefixer": "^6.2.3",
27
+ "babel-core": "^5.0.0",
28
+ "babel-loader": "^5.0.0",
29
+ "babel-plugin-react-display-name": "^2.0.0",
30
+ "babel-plugin-react-transform": "^1.1.1",
31
+ "classnames": "^2.2.3",
32
+ "core-js": "^2.0.3",
33
+ "css-loader": "^0.23.1",
34
+ "cssnext-loader": "^1.0.1",
35
+ "electron-prebuilt": "^0.36.3",
36
+ "express": "^4.13.3",
37
+ "extract-text-webpack-plugin": "^1.0.1",
38
+ "node-sass": "^3.4.2",
39
+ "normalize.css": "^3.0.3",
40
+ "path": "^0.12.7",
41
+ "postcss-loader": "^0.8.0",
42
+ "react-addons-css-transition-group": "^0.14.6",
43
+ "react-transform-catch-errors": "^1.0.1",
44
+ "react-transform-hmr": "^1.0.1",
45
+ "redbox-react": "^1.2.0",
46
+ "redux-devtools": "^3.0.1",
47
+ "redux-devtools-dock-monitor": "^1.0.1",
48
+ "redux-devtools-log-monitor": "^1.0.2",
49
+ "sass-loader": "^3.1.2",
50
+ "style-loader": "^0.13.0",
51
+ "toolbox-loader": "0.0.3",
52
+ "webpack": "^1.12.11",
53
+ "webpack-dev-middleware": "^1.4.0",
54
+ "webpack-hot-middleware": "^2.6.0"
55
+ }
56
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "stage": 0,
3
+ "env": {
4
+ "development": {
5
+ "plugins": ["react-transform"],
6
+ "extra": {
7
+ "react-transform": {
8
+ "transforms": [{
9
+ "transform": "react-transform-hmr",
10
+ "imports": ["react"],
11
+ "locals": ["module"]
12
+ }, {
13
+ "transform": "react-transform-catch-errors",
14
+ "imports": ["react", "redbox-react"]
15
+ }]
16
+ }
17
+ }
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,8 @@
1
+ import * as types from '../constants/ActionTypes'
2
+
3
+ export function changeAccount(account) {
4
+ return {
5
+ type: types.CHANGE_ACCOUNT,
6
+ account
7
+ }
8
+ }
@@ -0,0 +1,40 @@
1
+ import * as types from '../constants/ActionTypes'
2
+
3
+ export function change(counter) {
4
+ return {
5
+ type: types.CHANGE_COUNTER,
6
+ counter
7
+ }
8
+ }
9
+
10
+ export function increment() {
11
+ return {
12
+ type: types.INCREMENT_COUNTER
13
+ }
14
+ }
15
+
16
+ export function decrement() {
17
+ return {
18
+ type: types.DECREMENT_COUNTER
19
+ }
20
+ }
21
+
22
+ export function incrementIfOdd() {
23
+ return (dispatch, getState) => {
24
+ const { counter } = getState()
25
+
26
+ if (counter % 2 === 0) {
27
+ return
28
+ }
29
+
30
+ dispatch(increment())
31
+ }
32
+ }
33
+
34
+ export function incrementAsync(delay = 1000) {
35
+ return dispatch => {
36
+ setTimeout(() => {
37
+ dispatch(increment())
38
+ }, delay)
39
+ }
40
+ }
@@ -0,0 +1,20 @@
1
+ import * as types from '../constants/ActionTypes'
2
+ import 'isomorphic-fetch'
3
+
4
+ //const endpoint = 'http://localhost:3000'
5
+ const endpoint = ''
6
+
7
+ export function receiveStorages(storages) {
8
+ return {
9
+ type: types.STORAGE_RECEIVE,
10
+ storages: storages
11
+ }
12
+ }
13
+
14
+ export function searchStorages() {
15
+ return dispatch => {
16
+ return fetch(endpoint + '/api/storages')
17
+ .then(response => response.json())
18
+ .then(json => dispatch(receiveStorages(json)))
19
+ }
20
+ }
@@ -0,0 +1,54 @@
1
+ import * as types from '../constants/ActionTypes'
2
+ import 'isomorphic-fetch'
3
+
4
+ //const endpoint = 'http://localhost:3000'
5
+ const endpoint = ''
6
+
7
+ export function receiveMaterials(materials) {
8
+ return {
9
+ type: types.MATERIAL_RECEIVE,
10
+ materials: materials
11
+ }
12
+ }
13
+
14
+ export function searchMaterials() {
15
+ return dispatch => {
16
+ return fetch(endpoint + '/api/materials')
17
+ .then(response => response.json())
18
+ .then(json => dispatch(receiveMaterials(json)))
19
+ }
20
+ }
21
+
22
+ export function showOrder(order) {
23
+ console.log(order)
24
+ return {
25
+ type: types.MATERIAL_SHOW_ORDER,
26
+ order: order
27
+ }
28
+ }
29
+
30
+ export function purchaseOrder(material_id) {
31
+ return dispatch => {
32
+ return fetch(endpoint + '/api/purchase_orders', {
33
+ method: 'post',
34
+ headers: {
35
+ 'Accept': 'application/json',
36
+ 'Content-Type': 'application/json'
37
+ },
38
+ body: JSON.stringify({
39
+ quantity: 10,
40
+ arrival_date: '2014-03-21',
41
+ material_id: material_id,
42
+ supplier_id: 1
43
+ })
44
+ })
45
+ .then(response => response.json())
46
+ .then(json => dispatch(showOrder(json)))
47
+ }
48
+ }
49
+
50
+ export function hideSnackbar() {
51
+ return {
52
+ type: types.MATERIAL_HIDE_SNACKBAR
53
+ }
54
+ }
@@ -0,0 +1,54 @@
1
+ import * as types from '../constants/ActionTypes'
2
+ import 'isomorphic-fetch'
3
+
4
+ //const endpoint = 'http://localhost:3000'
5
+ const endpoint = ''
6
+
7
+ export function receiveProducts(products) {
8
+ return {
9
+ type: types.PRODUCT_RECEIVE,
10
+ products: products
11
+ }
12
+ }
13
+
14
+ export function searchProducts() {
15
+ return dispatch => {
16
+ return fetch(endpoint + '/api/products')
17
+ .then(response => response.json())
18
+ .then(json => dispatch(receiveProducts(json)))
19
+ }
20
+ }
21
+
22
+ export function showOrder(order) {
23
+ console.log(order)
24
+ return {
25
+ type: types.PRODUCT_SHOW_ORDER,
26
+ order: order
27
+ }
28
+ }
29
+
30
+ export function salesOrder(product_id) {
31
+ return dispatch => {
32
+ return fetch(endpoint + '/api/sales_orders', {
33
+ method: 'post',
34
+ headers: {
35
+ 'Accept': 'application/json',
36
+ 'Content-Type': 'application/json'
37
+ },
38
+ body: JSON.stringify({
39
+ quantity: 10,
40
+ shipment_date: '2014-03-21',
41
+ product_id: product_id,
42
+ customer_id: 1
43
+ })
44
+ })
45
+ .then(response => response.json())
46
+ .then(json => dispatch(showOrder(json)))
47
+ }
48
+ }
49
+
50
+ export function hideSnackbar() {
51
+ return {
52
+ type: types.PRODUCT_HIDE_SNACKBAR
53
+ }
54
+ }
@@ -0,0 +1,7 @@
1
+ @import "~react-toolbox/lib/base";
2
+
3
+ $color-primary-dark: $color-primary-dark;
4
+ $color-primary-light: $color-primary-light;
5
+ $color-accent: $color-accent;
6
+ $color-divider: $color-divider;
7
+ $color-content: #fafafa;
@@ -0,0 +1,8 @@
1
+ @import "../globals";
2
+
3
+ $sidebar-width: 22 * $unit;
4
+ $sidebar-h-padding: 2.4 * $unit;
5
+ $sidebar-v-padding: 1.2 * $unit;
6
+ $sidebar-footer-border: solid 1px rgb(224, 224, 224);
7
+ $content-left-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
8
+ $content-right-shadow: -2px 0 4px rgba(0,0,0,.14);
@@ -0,0 +1,4 @@
1
+ @import '~react-toolbox/lib/commons';
2
+
3
+ $h1-size: 3 * $unit;
4
+ $color-text: $palette-blue-500;
@@ -0,0 +1,15 @@
1
+ import React, {Component} from 'react'
2
+ import style from './style';
3
+
4
+ class Layout extends Component {
5
+ render() {
6
+ return (
7
+ <div className={style.content}>
8
+ <h1>About</h1>
9
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam viverra nec consectetur ante hendrerit. Donec et mollis dolor. Praesent et diam eget libero egestas mattis sit amet vitae augue. Nam tincidunt congue enim, ut porta lorem lacinia consectetur. Donec ut libero sed arcu vehicula ultricies a non tortor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ut gravida lorem. Ut turpis felis, pulvinar a semper sed, adipiscing id dolor. Pellentesque auctor nisi id magna consequat sagittis. Curabitur dapibus enim sit amet elit pharetra tincidunt feugiat nisl imperdiet. Ut convallis libero in urna ultrices accumsan. Donec sed odio eros. Donec viverra mi quis quam pulvinar at malesuada arcu rhoncus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In rutrum accumsan ultricies. Mauris vitae nisi at sem facilisis semper ac in est.
10
+ </div>
11
+ )
12
+ }
13
+ }
14
+
15
+ export default Layout
@@ -0,0 +1 @@
1
+ @import '../content';