cimmanon

Results 12 issues of cimmanon

In base 4.11, Semigroup was made a superclass of Monoid, with mappend belonging to Semigroup. This results in the following error: ```haskell src/Text/Digestive/Form/Encoding.hs:42:10: error: * No instance for (Semigroup FormEncType)...

While I was poking around with the disable function to see if I could repurpose it to work with Views in order to address https://github.com/jaspervdj/digestive-functors/issues/63, I learned three things: *...

I see functions for querying Text, Choice, Bool, and File via fieldInputText, etc., but there doesn't appear to be a function for querying a Singleton. I attempted to write one...

I have a number of forms that contain a list of elements, but I want to be able to force that only 1 of the elements can have a True...

I have a number of forms that have immutable data that I would like to present to the user, but the only way I can do so with digestive-functors-heist (without...

I'd like to propose adding some hooks for JavaScript purposes when using Digestive Functors (not sure how much of this applies to non-Heist users). From a front-end perspective, the names...

I have two forms that look similar to this (second form needs to be usable on its own as well as be a part of the first form): ``` haskell...

Digestive Functors lacks a nice way of generating a list of checkboxes. The functionality of radio inputs is _almost_ what I want. Basically, I have a list of categories in...

When creating a list of elements via listOf/dfInputList, the generated HTML contains duplicate IDs. This is not valid in HTML, and can cause confusion with JavaScript. My Heist template: ```...

Sass is extremely unhelpful when it comes to class names that begin with numbers (they're invalid according to CSS, but Sass doesn't give a useful error message): ``` css .007...

enhancement
planned