re-com icon indicating copy to clipboard operation
re-com copied to clipboard

A ClojureScript library of reusable components for Reagent

Results 54 re-com issues
Sort by recently updated
recently updated
newest added

For example: https://github.com/Day8/re-com/blob/master/src/re_com/modal_panel.cljs#L49 and https://github.com/Day8/re-com/blob/master/src/re_com/splits.cljs#L120 The components aren't compatible with bootstrap dark themes because of this. IMO colors shouldn't be hardcoded. A possible middle ground could be to use classes....

enhancement
styling

I really like re-com. :-) but I cannot use it. Our app is built with tailwind-css. And the bootstrap css styling fucks up a lot of things. Bootstrap is two...

enhancement
styling

Hi :) When using the typeahead with async callback, if the user clicks outside the component before the suggestions arrive, they are still shown on arrival. Steps to reproduce: 1....

bug
help wanted

Currently, a single-dropdown requires the choices to be a `vector-of-maps`. But if a user specifies the `id-fn` and `label-fn`, then strictly speaking, each entry in that vector doesn't need to...

bug

Hi, Does anyone know a way to prevent the popup (menu) portion of the single-dropdown from being cut off when used inside a scroller? Thanks, Paul

help wanted

## 1. Status Quo Uses [Material Design Iconic Font](http://zavoloklom.github.io/material-design-iconic-font/icons.html). Implemented as font and CSS files distributed manually that must be made available via HTTP. A `[:span]` contains a special character...

As per the docs, by default, `simple-v-table` is vertically polite. In other words, it only takes up as much vertical space as it's parents and siblings allow. We have a...

though the documentation says the following ``` one element for each column in the table. Must contain :id,:header-label,:row-label-fn,:width, and :height. ``` None of these are actually required, but if you...

While the dropdown correctly shows disabled background and sans dropdown button, it still shows the focus rectangle when clicked or keyboard navigated to (tab). ![image](https://user-images.githubusercontent.com/4626024/109439711-2f6a6500-7a7b-11eb-97ff-4bb22d34c422.png)

As stated [here](https://github.com/day8/re-com/blob/master/src/re_com/v_table.cljs#L1095), currently, scrolling a `v-table` also scrolls parent scrollbars (usually the one on `[:body]`). The solution seems to be to use the relatively new CSS `:overscroll-behavior`. Couldn't get...