Remove reference to prop-types as components are written in TS

This commit is contained in:
Gaëtan Maisse 2019-02-09 16:32:07 +01:00
parent c3e56a98cb
commit 82f527a50a
3 changed files with 7 additions and 26 deletions

View File

@ -29,7 +29,6 @@
"global": "^4.3.2",
"lodash": "^4.17.11",
"make-error": "^1.3.5",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-inspector": "^2.3.0",
"uuid": "^3.3.2"

View File

@ -1,4 +1,3 @@
import PropTypes from 'prop-types';
import React from 'react';
import Inspector from 'react-inspector';
@ -8,7 +7,13 @@ import { ActionBar } from '@storybook/components';
import { Actions, Action, Wrapper, InspectorContainer, Counter } from './style';
import { ActionDisplay } from '../../models';
export const ActionLogger = withTheme(({ actions, onClear, theme }: any) => (
interface ActionLoggerProps {
actions: ActionDisplay[];
onClear: () => void;
theme: any;
}
export const ActionLogger = withTheme(({ actions, onClear, theme }: ActionLoggerProps) => (
<Wrapper>
<Actions>
{actions.map((action: ActionDisplay) => (
@ -30,16 +35,3 @@ export const ActionLogger = withTheme(({ actions, onClear, theme }: any) => (
<ActionBar actionItems={[{ title: 'Clear', onClick: onClear }]} />
</Wrapper>
));
ActionLogger.propTypes = {
onClear: PropTypes.func.isRequired,
actions: PropTypes.arrayOf(
PropTypes.shape({
count: PropTypes.node,
data: PropTypes.shape({
name: PropTypes.node.isRequired,
args: PropTypes.any,
}),
})
).isRequired,
};

View File

@ -1,5 +1,4 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import deepEqual from 'fast-deep-equal';
import { STORY_RENDERED } from '@storybook/core-events';
@ -81,12 +80,3 @@ export default class ActionLogger extends Component<ActionLoggerProps, ActionLog
return active ? <ActionLoggerComponent {...props} /> : null;
}
}
(ActionLogger as any).propTypes = {
active: PropTypes.bool.isRequired,
api: PropTypes.shape({
on: PropTypes.func,
getQueryParam: PropTypes.func,
setQueryParams: PropTypes.func,
}).isRequired,
};