Vitaly
Vitaly
Есть компонент `CarouselControls` с пропсами: ```typescript export interface ICarouselControlsProps extends IClassNameProps { items?: ICarouselControlsItemProps[]; colored?: boolean; theme?: 'images'; } ``` Под модификатором `colored` добавляется проп `colorScheme`: ```typescript export interface ICarouselControlsColoredProps...
1. jsdoc for `inverted` param 2. when-to-use section in `.md` like [here](https://reactjs.org/docs/context.html#when-to-use-context)
Continuing discussion about manual kill of hung mysql connection threads (https://groups.google.com/forum/#!topic/openresty-en/3gbr1Zn49-o)
```js decl.normalize({ block: 'b', elems: {elem:'e',mods:['m1', 'm2']} }) /* [ BemCell { entity: { block: 'b' } }, BemCell { entity: { block: 'b', elem: 'e' } }, BemCell {...
```js const decl = require('@bem/sdk.decl'); const BemCell = require('@bem/sdk.cell'); const BemEntityName = require('@bem/sdk.entity-name'); const scope = new BemCell({ entity: new BemEntityName({ block: 'foo' }), tech: null }); const content =...
[From](https://github.com/bem/bem-react-components/pull/74#issuecomment-374843428)
[bem-react-components](https://github.com/bem/bem-react-components) is good example of project with 1 level. For now it has only "blocks" directory for all components and have no `bemrc`. My project uses "bem-react-components". I want to...
In [webpack-bem-plugin](https://github.com/bem/webpack-bem-plugin/pull/1#discussion_r165514501) I want to get preset from path to specific file in project. Firstly I thought that `levelSync` solves my problem. But It returns "nearest parent config". Then I...
[webpack-bem-plugin](https://github.com/bem/webpack-bem-plugin/pull/1#discussion_r165372844) requests method: `import-notation-string -> import-notation-full-string` For now extending context process is integrated in [parse](https://github.com/bem/bem-sdk/blob/master/packages/import-notation/index.js#L39) method. Can we do a simple refactoring here?