react-docgen-typescript-loader icon indicating copy to clipboard operation
react-docgen-typescript-loader copied to clipboard

Webpack loader to generate docgen information from Typescript React components.

Results 55 react-docgen-typescript-loader issues
Sort by recently updated
recently updated
newest added

## TLDR If a component has a displayName like one of the following examples: ```jsx Button.displayName = "UI/Button"; // invalid characters Button.displayName = "Some-Kebab-Name"; // invalid characters Toggle.displayName = "switch";...

Hello, I just upgraded to Yarn 2 which ensures a strict dependency tree. I have to fix the missing peerDependency from this package to be able to build. > react-docgen-typescript-loader@npm:3.7.2...

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.20. Commits ded9bc6 Bump to v4.17.20. 63150ef Documentation fixes. 00f0f62 test.js: Remove trailing comma. 846e434 Temporarily use a custom fork of lodash-cli. 5d046f3 Re-enable Travis...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.20. Commits ded9bc6 Bump to v4.17.20. 63150ef Documentation fixes. 00f0f62 test.js: Remove trailing comma. 846e434 Temporarily use a custom fork of lodash-cli. 5d046f3 Re-enable Travis...

dependencies

I use `react-docgen-typescript-loader` on storybook with react typescript project and see it does not support interface props with extends. Example: ```ts interface WidgetBodyProps { md?: GridSize; sm?: GridSize; xs?: GridSize;...

If a component uses a prop of an `enum` that is imported from another file, the `propType` will be shown as `any`. This will correctly label the `color` property as...

This change switches the initial loading of TypeScript into memory from synchronous to asynchronous, and avoids using `fs.existsSync` in the Service Host if we already have the file in memory....

![image](https://user-images.githubusercontent.com/44258525/86124808-4896cc80-bb0e-11ea-9d73-bba0d8be7d73.png) > This is my React component ```tsx import React, { FC, useState, useEffect, CSSProperties } from 'react' import classNames from 'classnames' import { getPrefixCls } from '@util' const prefixCls...

Adds support for `shouldExtractValuesFromUnion` option. This change updates `react-docgen-typescript` in order to get access to this option which was first introduced in `[email protected]`.

## What happen Update react-docgen-typescript for using `shouldExtractLiteralValuesFromEnum` and `shouldRemoveUndefinedFromOptional` options. Also fix links to parser options.