Merge pull request #75 from telerik/props-description-short-text

fix: component props description short text modified
This commit is contained in:
Kiril Peyanski 2018-08-21 08:46:44 +03:00 коммит произвёл GitHub
Родитель 5b7ae158e5 2c70d6cb59
Коммит a7a1ee9c2f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,6 @@
const inheritanceMessage = 'A subclass of [React.Component](https://reactjs.org/docs/react-component.html).';
const sfcMessage = 'A [Stateless Functional Component](https://reactjs.org/docs/components-and-props.html#functional-and-class-components).';
const toComment = (model) => ({ shortText: `[The props of the ${model.name} Component.]({% slug ${model.slug}props %})` });
const toComment = (model) => ({ shortText: `The [props of the ${model.name} component]({% slug ${model.slug}props %}).` });
const componentRegExp = new RegExp('^(Pure)?Component$');
const reactMembers = [ 'context', 'refs', 'state', 'forceUpdate', 'setState', 'render' ];
const lifecycleRegExp = new RegExp("^(DeprecatedLifecycle\.|NewLifecycle\.|ComponentLifecycle\.)");