flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
62
VISUALIZACION/node_modules/polished/lib/shorthands/position.js.flow
generated
vendored
Executable file
62
VISUALIZACION/node_modules/polished/lib/shorthands/position.js.flow
generated
vendored
Executable file
|
|
@ -0,0 +1,62 @@
|
|||
// @flow
|
||||
import directionalProperty from '../helpers/directionalProperty'
|
||||
|
||||
import type { Styles } from '../types/style'
|
||||
|
||||
const positionMap = ['absolute', 'fixed', 'relative', 'static', 'sticky']
|
||||
|
||||
/**
|
||||
* Shorthand accepts up to five values, including null to skip a value, and maps them to their respective directions. The first value can optionally be a position keyword.
|
||||
* @example
|
||||
* // Styles as object usage
|
||||
* const styles = {
|
||||
* ...position('12px', '24px', '36px', '48px')
|
||||
* }
|
||||
*
|
||||
* // styled-components usage
|
||||
* const div = styled.div`
|
||||
* ${position('12px', '24px', '36px', '48px')}
|
||||
* `
|
||||
*
|
||||
* // CSS as JS Output
|
||||
*
|
||||
* div {
|
||||
* 'top': '12px',
|
||||
* 'right': '24px',
|
||||
* 'bottom': '36px',
|
||||
* 'left': '48px'
|
||||
* }
|
||||
*
|
||||
* // Styles as object usage
|
||||
* const styles = {
|
||||
* ...position('absolute', '12px', '24px', '36px', '48px')
|
||||
* }
|
||||
*
|
||||
* // styled-components usage
|
||||
* const div = styled.div`
|
||||
* ${position('absolute', '12px', '24px', '36px', '48px')}
|
||||
* `
|
||||
*
|
||||
* // CSS as JS Output
|
||||
*
|
||||
* div {
|
||||
* 'position': 'absolute',
|
||||
* 'top': '12px',
|
||||
* 'right': '24px',
|
||||
* 'bottom': '36px',
|
||||
* 'left': '48px'
|
||||
* }
|
||||
*/
|
||||
export default function position(
|
||||
firstValue?: string | number | null,
|
||||
...values: Array<?string | ?number>
|
||||
): Styles {
|
||||
if (positionMap.indexOf(firstValue) >= 0 && firstValue) {
|
||||
return {
|
||||
...directionalProperty('', ...values),
|
||||
position: firstValue,
|
||||
}
|
||||
} else {
|
||||
return directionalProperty('', firstValue, ...values)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue