Fork me on GitHub
#fulcro
<
2017-10-02
>
tony.kay05:10:49

It’s official: Fulcro 1.0.0 is on clojars.

timovanderkamp07:10:42

@roklenarcic You can use the garden selector '&': (garden.selectors/& :div :.abc :.xyz)

wilkerlucio11:10:59

hey people, do you know if there is a way to handle @keyframes on garden?

wilkerlucio11:10:28

nevermind, found it at garden.stylesheet/at-keyframes 🙂

fatihict17:10:45

Is it possible to add multiple validators and validation messages to an input managed by Fulcro's form support? I want an input which checks for a value between 0 and 100 and shows one message and a validator on that same input that checks on if decimals are inserted. Currently I am showing one validation message that tells the user that either the value entered is not between 0 and 100 or contains a decimal.

tony.kay17:10:34

@fatihict Validator composition is function composition under a new validator name. Rendering the message is up to your interpretation in the UI…so you’d have to look at the value in the UI code.