
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@kodiak-ui/babel-plugin
Advanced tools
A babel plugin that hoists jsx attributes.
@kodiak-ui/babel-plugin
is used to optimize sx
attributes by hoisting anything that could be out of the render path.
.babelrc
(Recommended).babelrc
Without options:
{
"plugins": ["@kodiak-ui"]
}
With options:
Defaults Shown
{
"plugins": [
[
"@kodiak-ui",
{
attributesToHoist: ["sx", "variants"]
}
]
]
}
attributesToHoist
An array of jsx attributes to hoist.
// Input
import { Box } from '@kodiak-ui/primitives'
function sxGenerator() {
return {
bg: 'green',
}
}
function App() {
const isTrue = true
return (
<div
sx={{
backgroundColor: 'blue',
'&:hover': {
color: 'lightgreen',
},
}}
>
This has a hotpink background.
<div
css={{ backgroundColor: isTrue ? 'red' : 'blue' }}
sx={{
color: isTrue ? 'red' : 'blue',
}}
onClick={() => null}
>
Another div that isn't hoisted
</div>
<Box
variants={['var1', 'var2']}
sx={{ background: 'blue' }}
aria-label="a label"
>
A box
</Box>
<Box sx={sxGenerator()}>Pure functions are also hoisted</Box>
</div>
)
}
// Output
↓ ↓ ↓ ↓ ↓ ↓
import * as React from 'react'; // or a jsx pragma
import { Box } from '@kodiak-ui/primitives';
function sxGenerator() {
return {
bg: 'green'
};
}
var _ref = {
backgroundColor: 'blue',
'&:hover': {
color: 'lightgreen'
}
};
var _ref2 = ['var1', 'var2'];
var _ref3 = {
background: 'blue'
};
var _ref4 = sxGenerator();
function App() {
const isTrue = true;
return <div sx={_ref}>
This has a hotpink background.
<div css={{
backgroundColor: isTrue ? 'red' : 'blue'
}} sx={{
color: isTrue ? 'red' : 'blue'
}} onClick={() => null}>
Another div that isn't hoisted
</div>
<Box variants={_ref2} sx={_ref3} aria-label="a label">
A box
</Box>
<Box sx={_ref4}>Pure functions are also hoisted</Box>
</div>;
}
FAQs
A babel plugin that hoists jsx attributes.
We found that @kodiak-ui/babel-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.