Jerome Bergmann

Results 11 comments of Jerome Bergmann

No it doesn't. The Selection is now a String but you will need to have a Set. Either the `Select` component has to be adapted to accept a Set in...

Actually. I tried both. This repo is way easier to use than elm-mdc. Is there a file where I could add my 5 cents?

Here an updated version for 8.0.1: [Ellie](https://ellie-app.com/fKkPNzLMyVga1)

`mdc-deprecated-list-item` has the property `overflow:hidden`, this causes the menu being only visible in the `ListItem`. And removing the `overflow: auto` from `mcd-menu-surface` removes the appearing scrolling wheels. The only thing...

If you would add to the style of `mdc-deprecated-list-item__ripple` `overflow:hidden` the ripple animation stays inside of each ListItem.

I'm kinda confused about this issue. The tasks would be: - [x] `ripple : Bool` entry in the `Config`-Record - [x] `ripplesProp` -> add ripples to List.Item - [x] add...

There is already a [library](https://package.elm-lang.org/packages/albertdahlin/elm-posix/1.1.0/) we could at least take inspiration from. This package didn't exist back then, when you opened that issue. There is no path joining in that...

Concerning `|>` and all the infix operators: - It's declared in Elm itself. [Source](https://github.com/elm/core/blob/master/src/Basics.elm#L72) - The Elm compiler chomps them independent of each other. [Source](https://github.com/elm/compiler/blob/master/compiler/src/Parse/Module.hs#L81) - They are read as...

- Concerning Basics: its doable for at least four Functions: ``` (&&) : Bool -> Bool -> Bool (&&) a b = case (a, b) of (True, True) -> True...

@Janiczek My apologies. You're absolutely right, I overlooked that detail. In this implementation, I really doubt this would be shortciruiting. I'll experiment if shortcircuiting can be implemented in similar fashion...