Andreas Hultgren

Results 11 issues of Andreas Hultgren

I keep running into issues today it seems. Example: ```less #media { #desktop (@ruleset) { @media (min-width: 700px) { @ruleset(); } } #mobile (@ruleset) { @media (max-width: 699px) { @ruleset();...

bug
needs decision

This might be related to https://github.com/less/less.js/issues/3405: ```less .mix (@n) { value: @n; } @var: .mix(var); #lookup { @var: .mix(lookup); @bar: bar; } .example { @var(); value2: #lookup[@bar]; // This is...

feature request
consider closing
needs decision

It would be awesome to be able to `compound g crud "admin/posts" stuff`. Since #93 is closed I assumed it was implemented, but apparently it's not. When I try to...

Currently if making some edits and saving, stuff will be saved and the url be `?action=save`. If one then wants to just update the page (eg pressing enter in the...

This should fix #74 and #128. I just removed [this line](https://github.com/geraintluff/tv4/blob/2a32c8c6dccab69a63ed9d9a9fd86f8e036a4136/source/combinations.js#L60) and the previous tests still pass and my quickly cobbled together test failed before and passes after the fix.

It would be really neat if there was a way to automatically add new elements to localStorage or any server-side database when elements are added. One way to implement this...

enhancement

Currently the tests a big mess in a single mega-file. They would benefit from being separated into a lot more specified describe sections with fewer assertions per "it".

enhancement

Currently, setting unique on an index (eg `field: { unique: true }`) will make that property unique in that index, but not in the main List or any other indexes....

enhancement

Currently object and array `definitions` are defined using union types, to enable recursive types. For example: ```elm type Article = Article ArticleRecord ``` I'm pondering if it would make sense...

Consider the code ```elm type alias ArticleRecord = { rules : Maybe Rules -- other non-pertinent stuff } decodeArticle : Decoder ArticleRecord decodeArticle = decode ArticleRecord |> maybe "rules" decodeRules...

help wanted