Vincent Cantin
Vincent Cantin
I suggest the creation of a demo account with predefined fixtures, for people to try online without handing out their email.
As mentioned in https://github.com/green-coder/girouette/pull/74#issuecomment-974616150, the problem is: ```clojure (garden/css [".space-x-2" [#garden.selectors.CSSSelector{:selector "& > * + *"} {:margin-left "0.5rem"}]]) => ".space-x-2 & > * + * {\n margin-left: 0.5rem;\n}" ``` The...
Hi, nice little lib. I noticed that you forgot to document in the `readme.md` the other way to listen to events, using the eventMap.
It would be nice to have the meaning of string extended when they are used inside of route maps, so that they behave as constraints. It could allow an improved...
There are 2 distinct types of intended operation: - **Moving** data from a place to another. - **Copying** the data from a place to another. ## Moving pieces of data...
The operations on lists would be similar to what can be done in Clojure: `conj` and `remove` from the front of the list. (names of the operations to be defined)
(Based on the feedback from @plexus w.r.t. the http PATCH use case) The data representation of the diff was chosen for its user friendliness and its efficiency during composition. It...
Girouette, Instaparse and Garden are all written in CLJC, which means that it should be possible to generate the CSS content while running in the browser. That could be a...
This task is to be done via the Wiki pages. Contributions are very welcome, even for little bits of documentation. Before the next release, I will merge the commits from...
We may add a grammar for setting css variables, for example: ``` (* Matches "set-var-foobar-#fff" *) set-css-variable = css-variable-name encoded-css-value ``` or to read a css variable: ``` read-css-variable =...