Valerii Sorokobatko

Results 8 issues of Valerii Sorokobatko

Seems now we don't need this addon because most of the feature provided by `stroybook-readme` are implemented at storybook https://medium.com/storybookjs/storybook-docspage-e185bc3622bf

depends on storybook
waiting for a feedback
investigate
update docs

Current blockers: ### Importing components from md code blocks The problem is that we parse it in runtime and seems it is not possible to make dynamic imports. To make...

investigate

#83 current blocker described at https://github.com/tuchk4/storybook-readme/issues/83#issuecomment-490169116

- https://tuchk4.github.io/storybook-readme (current live version not from master) - https://github.com/tuchk4/storybook-readme/tree/master/packages/example-react I would like to update storybook examples. Make it looks more like showcase. Some stories of current examples looks like...

update docs

The same way as `` works. Support - `` component's description - `` component's methods - `` aggregate & description & methods & props Also would be nice to automatically...

feature request

Prev request typings request https://github.com/tuchk4/storybook-readme/issues/93 Prev DefinitelyTyped PR https://github.com/DefinitelyTyped/DefinitelyTyped/pull/29512 What new at `5.0.0` ### storybook-readme/index - Added `addReadme` decorator that is result of [makeDecorator()](https://github.com/storybooks/storybook/blob/next/lib/addons/src/make-decorator.ts#L38). According to storybooks code it should...

``` js const events = new BaseEvents(); events.on('a', () => { ... }); events.on('a.*', () => { ... }); events.on('a.b.c', () => { ... }); events.on('a.*.c', () => { ......

(simplified examples) Select: ```tsx import { Select as BaseSelect } from "@radix-ui/themes"; export const Select = React.forwardRef(({ value, onChange }, ref) => { return ( {/* Important to pass ref...