Oleg Kuzava
Oleg Kuzava
also, we can achieve this by using config inside configure method (preferable). something like: ```php if ($this->config->exists('supportRequestState')) { $this->supportRequestState = $this->config->get('supportRequestState'); }
Closing PR based on response from @brenoxavier. Thanks
The related PR was already merged and will be released as part of 3.11 soon
Hello, yeah, let's start with a simple PR thanks
here is all media features: https://www.w3.org/TR/css3-mediaqueries/#media1 currently, we support only `min-width`, `max-width` 💪 should we support all media features or `(min/max) width, (min/max) height, orientation` would be enough - that's...
ok, 1) yours: _(looks good but a bit lengthy)_ ```js const Button = styled.button` width: 120px; @media (orientation: landscape) and ${media.width.between('small', 'big')} { width: 300px; } `; ``` 2) mine:...
wow, looks awesome 💪 🔥 so, as conclusion: 1) add `features` which can be applied via `for`: ```js ${media.for('retina')` display: flex; `}; ${media.width.between('sm', 'lg').for('retina')` display: block; `}; ``` 2) add...
Hello. I'd say it's more like community driven. It seems I have access to release a new version from the master branch but I don't have time to work on...
I'd simply replace `data-[disabled]` to `aria-disabled` which handles true/false already like `aria-selected`
here is working fix of issue with triggering `loadMore` twice ```jsx ``` where `isLoading` is *true* when you request API and *false* when request is done.