Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A utility for helping make inline stylesheets from plain javascript objects. Probably for use with react.
import cataract from 'cataract'
const styles = {
background: 'black',
color: 'white',
link: {
fontStyle: 'inherit',
active: {
color: 'orange',
fontSize: '2.1em',
border: '1px'
}
}
}
var styleSheet = cataract(styles)
styleSheet
will be:
{
$base: {
color: 'white'
},
link: {
color: 'white',
fontStyle: 'inherit'
},
'link:active': {
color: 'orange',
fontStyle: 'inherit',
fontSize: '2.1em',
border: '1px'
}
}
So then you can just do something like this (in react 0.14)
function MyComponent (props) {
const { isActive } = props
const { $base, link, 'link:active': linkActive } = styleSheet
return (
<div style={$base}>
<h1>Hello World</h1>
<a style={isActive ? linkActive : link}>
Follow Me
</a>
</div>
)
}
More documentation to come...
FAQs
Cascade style values down an object stylesheet
The npm package cataract receives a total of 0 weekly downloads. As such, cataract popularity was classified as not popular.
We found that cataract demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.