mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Remove reference to prop-types
as components are written in TS
This commit is contained in:
parent
c3e56a98cb
commit
82f527a50a
@ -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"
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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,
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user