Alexander Savin

Results 39 comments of Alexander Savin

Well, bem-components does not change the popup's `width`, only `left` and `top` props. Maybe, we should just set `right` as well and/or fix `left` prop calculation.

It's based on Electron, so I expect it to work everywhere. But I tested it only on MacOS, so I prebuild dmg files only. And yes, I think I'll add...

@chintanp Please try to use [this instruction](https://github.com/yarnpkg/yarn/issues/2821#issuecomment-284181365)

+1, need this for "subtypes" tables.

I think, it's possible to fix this behavior without a breaking change using an extra option. `normalize(json, { buildResult: true })` // { entities: {}, result: {} } We can...

Well, sounds ok to me, but usually programmer wants just put result of a request in and get normalized data out. Why do two calls instead of one?

Речь же не о том, чтобы везде использовать blocks/\* вместо *.blocks. Речь, как верно говорит @tadatuta, о дефолтном варианте. О варианте для новичков. Для тех, кто первый раз. Короче, я...

I think that requiring types for exported functions is what we need. Inside a module flow inferences all the types.

I'm not so sure: $Values can't work with arrays and the title of this issue is "Union from array literal"

I think, it's better to use the following syntax: ``` js Sequelize.ENUM({ name: 'myEnumName', values: ['one', 'two'] }) ``` Because ENUM already [can](https://github.com/sequelize/sequelize/blob/master/lib/data-types.js#L766) accepts values as shown above. But here...