Eric Vida

Results 22 issues of Eric Vida

If a dynamic value is placed inline with an element, a nested css block will throw an error. ```imba name # throws error css c:cooler5 "name" # no error css...

The compiler seems to not add hashes to dynamic image sources resulting in broken links. ```imba let example = [ image: '01-deep-fried-eggrolls' ] tag app def render for item in...

bug
compiler
stale

If I make the sass folder my root workspace in vscode, my stats will say I spent the time working on the "Sass" project rather than on the "Awesome Project"...

enhancement

When running `npm run build` there is no index.html outputted and The -P flag doesn't work anymore in the build script.

### Description I expected the ability to pass a dynamic value to a hue style property, but it does not work as expected. Here's a code to reproduce the issue,...

bug

### Description ``` css self hue:indigo c:hue45 # I expect this to generate a tone of the indigo hue between hue4 and hue5, but it does not work. c:indigo45 #...

bug

Currently outline doesn't support inset from my experience. It'd be great if it did. ```imba css bxs: outline hue2 # >>> bxs:0 0 0 3px hue2 css bxs: outline hue2...

feature

### Description change to value of property in an `@observable` object doesn't trigger `@autorun` and I expected it to. Is this a feature or a bug? ```imba @observable query =...

bug

### Description When i try to use the native `list` property on input, i get error. Code to reproduce: ```imba ``` Error ``` client.imba:97 Uncaught TypeError: Cannot set property list...

bug

Currently imba can infer when a definition is an object with no need of curly braces ```imba let object = one: "one" two: "two" three: "three" ``` Could the same...