Skip to content
Snippets Groups Projects
Commit 793ebead authored by Sinzeanu Demetriad's avatar Sinzeanu Demetriad
Browse files

docs(faradai-ui): update tag items docs

parent 79062906
No related branches found
No related tags found
3 merge requests!222Sprint #26,!217Sprint #26,!191Hin 1116 documentation
import { has } from 'lodash'
import { get } from 'lodash'
import PropTypes from 'prop-types'
import { th } from '@pubsweet/ui-toolkit'
import styled, { css } from 'styled-components'
import { marginHelper } from './styledHelpers'
const tagCSS = props => {
if (has(props, 'oldStatus')) {
if (get(props, 'oldStatus')) {
return css`
background-color: ${th('colorFurnitureHue')};
height: calc(${th('gridUnit')} * 3)
......@@ -15,7 +16,7 @@ const tagCSS = props => {
`
}
if (has(props, `status`)) {
if (get(props, `status`)) {
return css`
background-color: ${th('tag.statusBackgroundColor')};
padding: calc(${th('gridUnit')} / 4) ${th('gridUnit')};
......@@ -35,7 +36,7 @@ const tagCSS = props => {
}
/** @component */
export default styled.div`
const Tag = styled.div`
border-radius: ${th('tag.borderRadius')
? th('tag.borderRadius')
: th('borderRadius')};
......@@ -52,3 +53,17 @@ export default styled.div`
${tagCSS};
${marginHelper};
`
Tag.propTypes = {
/** if true then object gets properties. */
oldStatus: PropTypes.bool,
/** if true then object gets properties. */
status: PropTypes.boo,
}
Tag.defaultProps = {
oldStatus: false,
status: false,
}
export default Tag
......@@ -100,23 +100,23 @@ const Text = ({ bullet, children, ...rest }) =>
)
Text.propTypes = {
/** if true */
/** if true then object gets properties. */
secondary: PropTypes.bool,
/** if true then object gets properties */
/** if true then object gets properties. */
error: PropTypes.bool,
/** if true then object gets properties */
/** if true then object gets properties. */
customId: PropTypes.bool,
/** if true then object gets properties */
/** if true then object gets properties. */
labelLine: PropTypes.bool,
/** if true then object gets properties */
/** if true then object gets properties. */
journal: PropTypes.bool,
/** if true thenobject gets properties */
/** if true thenobject gets properties. */
small: PropTypes.bool,
/** defines how items will be displayed */
/** defines how items will be displayed. */
display: PropTypes.string,
/** defines how items will be aligned */
/** defines how items will be aligned. */
align: PropTypes.string,
/** defines if there will be a white space */
/** defines if there will be a white space. */
whiteSpace: PropTypes.string,
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment