
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@elemental-ui-alpha/core
Advanced tools
Core includes a range of styles, variables and helpers that form the foundation of how the Design System works.
import { Core } from '@elemental-ui-alpha/core';
Emotion's core components and utilities are exposed to ensure a single version is bundled with the design system and the consuming application.
import {
ClassNames,
Global,
css,
jsx,
keyframes,
} from '@elemental-ui-alpha/core';
The Core component provides the default styles along with
CSS normalize.
<Core>
{/* app content */}
</Core>
By default normalize.css is included
with the Core component. You can opt out by passing false to the
includeNormalize property.
<Core includeNormalize={false} />
By default a handful of CSS properties are applied to optimize text legibility
across major browsers. You can opt out by passing false to the
optimizeLegibility property.
<Core optimizeLegibility={false} />
body {
font-feature-settings: 'liga' 1;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: 'liga' on;
}
Customize the theme consumed by Elemental components.
import { makeTheme } from '@elemental-ui-alpha/theme';
const customTheme = makeTheme('Custom Theme', {
foreground: {
action: 'DodgerBlue',
},
});
function App() {
return <Core theme={customTheme} />;
}
FAQs
Core includes a range of styles, variables and helpers that form the foundation of how the Design System works.
The npm package @elemental-ui-alpha/core receives a total of 3 weekly downloads. As such, @elemental-ui-alpha/core popularity was classified as not popular.
We found that @elemental-ui-alpha/core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.