Rename blocks/shared => blocks/types

This commit is contained in:
Michael Shilman 2020-03-31 13:03:31 +08:00
parent fbfa93f753
commit 7def42b681
9 changed files with 9 additions and 9 deletions

View File

@ -2,7 +2,7 @@ import PropTypes from 'prop-types';
import { isForwardRef, isMemo } from 'react-is';
import { PropDef } from '@storybook/components';
import { hasDocgen, extractComponentProps, PropsExtractor, TypeSystem } from '../../lib/docgen';
import { Component } from '../../blocks/shared';
import { Component } from '../../blocks/types';
import { enhancePropTypesProps } from './propTypes/handleProp';
import { enhanceTypeScriptProps } from './typeScript/handleProp';

View File

@ -3,7 +3,7 @@
import { PropDef } from '@storybook/components';
import PropTypes from 'prop-types';
import React from 'react';
import { Component } from '../../../blocks/shared';
import { Component } from '../../../blocks/types';
import { extractComponentProps, DocgenInfo, DocgenPropDefaultValue } from '../../../lib/docgen';
import { enhancePropTypesProp, enhancePropTypesProps } from './handleProp';

View File

@ -2,7 +2,7 @@ import { PropDef } from '@storybook/components';
import { ExtractedProp } from '../../../lib/docgen';
import { createType } from './createType';
import { createDefaultValue, createDefaultValueFromRawDefaultProp } from '../lib/defaultValues';
import { Component } from '../../../blocks/shared';
import { Component } from '../../../blocks/types';
import { keepOriginalDefinitionOrder } from './sortProps';
import { rawDefaultPropTypeResolvers } from './rawDefaultPropResolvers';

View File

@ -1,5 +1,5 @@
import { PropDef } from '@storybook/components';
import { Component } from '../../../blocks/shared';
import { Component } from '../../../blocks/types';
// react-docgen doesn't returned the props in the order they were defined in the "propTypes" object of the component.
// This function re-order them by their original definition order.

View File

@ -2,7 +2,7 @@
import { PropDef } from '@storybook/components';
import React from 'react';
import { Component } from '../../../blocks/shared';
import { Component } from '../../../blocks/types';
import { extractComponentProps, DocgenInfo, DocgenPropDefaultValue } from '../../../lib/docgen';
import { enhanceTypeScriptProp } from './handleProp';

View File

@ -1,6 +1,6 @@
/* eslint-disable no-underscore-dangle */
import { Component } from '../../blocks/shared';
import { Component } from '../../blocks/types';
import { extractComponentProps } from './extractDocgenProps';
const DOCGEN_SECTION = 'props';

View File

@ -1,5 +1,5 @@
import { PropDef } from '@storybook/components';
import { Component } from '../../blocks/shared';
import { Component } from '../../blocks/types';
import { ExtractedJsDoc, parseJsDoc } from '../jsdocParser';
import { DocgenInfo, TypeSystem } from './types';
import { getDocgenSection, isValidDocgenSection, getDocgenDescription } from './utils';

View File

@ -1,5 +1,5 @@
import { PropsTableProps } from '@storybook/components';
import { Component } from '../../blocks/shared';
import { Component } from '../../blocks/types';
export type PropsExtractor = (component: Component) => PropsTableProps | null;

View File

@ -1,6 +1,6 @@
/* eslint-disable no-underscore-dangle */
import { Component } from '../../../blocks/shared';
import { Component } from '../../../blocks/types';
import { str } from './string';
export function hasDocgen(component: Component): boolean {