Dmitriy Lazarev
Dmitriy Lazarev
Значение тени и обводки для разных компонентов: - `DatePicker` ```less @picker-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 10px 0 rgba(0, 0, 0, 0.2); ``` - `Autocomplete/ComboBox/Dropdown/Select/TokenInput`...
```ts export interface DropdownContainerProps { align?: 'left' | 'right'; getParent: () => DOMNode; children?: React.ReactNode; disablePortal?: boolean; offsetY?: number; offsetX?: number; } ``` ```ts export interface PopupMenuProps { children?: React.ReactNode;...
Компонент `Menu` должен быть помечен как устаревший, при этом `PopupMenu` должно реализовывать текущие сценарии в которых работает `Menu`
Подозрительная правка. Нужно потестить, как себя ведет выпадаха, если для Select указано `menuWidth`, возможно ещё про какие-нибудь сценарии подумать. @qwerty2323, можешь взять в тестирование?
@slaeme пока можно решить проблему следующим образом ```jsx let input = null; setTimeout(() => input.focus(), 100)} > Заголовок меню Раз Два Три Раз Два Три input = el} /> ```...
Переоткрою, надо допилить библиотеку, чтобы можно было использовать автофокус без костылей
I agree the `watch` mode is a must-have feature. The initialization time of BigTest, especially with building an app, might be too much
@cowboyd What about? ```js test .step(renderCalendar({ maxDate: new Date("2014-08-18") })) .exception(calendar.setDay(20)) // Or .exception('With error message', calendar.setDay(20)) ``` The reason is `setDay` is an action and it could produce side-effects...
I have a similar problem, but in my case I have a preset in `.ts` which imports es module with `.js` extension. So I use this preset like this: ```js...
@oliviertassinari here is scraped list of all public github repo dependents https://gist.github.com/wKich/a9c7ce41b0ac15233717469ea9e3a627 sorted by star count. For an unknown reason, github includes repos that had or mentioned material-ui somewhere in...