Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xpub-faraday
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
xpub
xpub-faraday
Commits
793ebead
Commit
793ebead
authored
6 years ago
by
Sinzeanu Demetriad
Browse files
Options
Downloads
Patches
Plain Diff
docs(faradai-ui): update tag items docs
parent
79062906
No related branches found
No related tags found
3 merge requests
!222
Sprint #26
,
!217
Sprint #26
,
!191
Hin 1116 documentation
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/component-faraday-ui/src/Tag.js
+19
-4
19 additions, 4 deletions
packages/component-faraday-ui/src/Tag.js
packages/component-faraday-ui/src/Text.js
+9
-9
9 additions, 9 deletions
packages/component-faraday-ui/src/Text.js
with
28 additions
and
13 deletions
packages/component-faraday-ui/src/Tag.js
+
19
−
4
View file @
793ebead
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
This diff is collapsed.
Click to expand it.
packages/component-faraday-ui/src/Text.js
+
9
−
9
View file @
793ebead
...
...
@@ -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
,
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment