rebo
rebo
I get this error as well.
 Update with two way data binding, here is a simple celsius to Fahrenheit converter: ```rust #[atom] fn celsius()->f64{ 0.0 } #[computed(inverse = "set_fahrenheit")] fn fahrenheit() -> f64 { link_state(celsius())...
edit re: the comment above: 1) Inverse is weird, I'm going to drop that implementation for now and hold fire until the use-case better presents itself. Recoil.js has it however...
It is also possible to have local state work with atoms in a very similar way to current Seed Hooks. Therefore it is possible to use atom backed state as...
In terms of performance, I did a very rough rewrite of the hooks [markdown tutorial page](https://seed-style-hooks.netlify.app/hooks_tutorial) using this approach. In debug mode the hooks markdown editor took 69.5ms on key...
Agreed on this.
Here is an example app that demonstrates all of the above features: https://github.com/rebo/seed_styling_app Please note that you need to be on nightly (at least since 4th April 2020) due to...
Here is an update on the api for fully typed CSS (i.e. properties and values). [lib.rs](https://gist.github.com/rebo/74041189c214277859446015dcd73da8) This file demonstrates creating a theme definition, including the named scales that are used...
Some notes based on some Discord discussions. Currently the system is flexible in that all the below are possible. Color properties: (i.e. `background-color`, `border-left-color` etc). ```rust S.color(MyColors::Primary) // typical themed...
Just an update prior to uploading an alpha of this. Combinators are now implemented. i.e. `S.is_child_of("p").font_weight_bold()` will produce: ```css p > [component_id] { font-weight: bold; } ``` and `S.adjacent_follows("li").font_style_italic()` will...