diff --git a/packages/component-faraday-ui/src/TextTooltip.js b/packages/component-faraday-ui/src/TextTooltip.js index 8bcd4cc0352c3754f269295dab914b7c3ed089aa..2c43317ee93a8e6ed19b25a9ae36113c3d2d0350 100644 --- a/packages/component-faraday-ui/src/TextTooltip.js +++ b/packages/component-faraday-ui/src/TextTooltip.js @@ -1,6 +1,7 @@ -import React, { Fragment } from 'react' +import PropTypes from 'prop-types' import 'react-tippy/dist/tippy.css' import { Tooltip } from 'react-tippy' +import React, { Fragment } from 'react' import { Text, Row } from 'pubsweet-component-faraday-ui' import { ThemeProvider, withTheme } from 'styled-components' @@ -25,4 +26,13 @@ const TextTooltip = ({ theme = {}, children, ...rest }) => ( </Tooltip> ) +TextTooltip.propTypes = { + /** User can hover over an item, without clicking it, and a new window will appear with a new title */ + title: PropTypes.string, +} +TextTooltip.defaultProps = { + title: + 'β-Carboline Silver Compound Binding Studies with Human Serum Albumin: A Comprehensive Multispectroscopic Analysis and Molecular Modeling Study', +} + export default withTheme(TextTooltip) diff --git a/packages/component-faraday-ui/src/WizardFiles.js b/packages/component-faraday-ui/src/WizardFiles.js index 99e09b45189540f5e3be6202f51eea9849286f9d..d93ddfe81f76b809d52d828a3dc03bc5952ecca0 100644 --- a/packages/component-faraday-ui/src/WizardFiles.js +++ b/packages/component-faraday-ui/src/WizardFiles.js @@ -80,7 +80,7 @@ const initialFiles = { } WizardFiles.propTypes = { - /** Passes properties for the manuscript file. */ + /** Fragments manuscript file. */ manuscripts: PropTypes.arrayOf( PropTypes.shape({ /** Id of added manuscript file. */ @@ -91,7 +91,7 @@ WizardFiles.propTypes = { size: PropTypes.number, }), ), - /** Passes properties for the cover letter file. */ + /** Fragments cover letter file. */ coverLetter: PropTypes.arrayOf( PropTypes.shape({ /** Id of added cover letter file. */ @@ -102,7 +102,7 @@ WizardFiles.propTypes = { size: PropTypes.number, }), ), - /** Passes properties for supplementary file. */ + /** Fragments supplementary file. */ supplementary: PropTypes.arrayOf( PropTypes.shape({ /** Id of added cover letter file. */