![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
@mavenlink/design-system
Advanced tools
A set of React components created by, and for, Mavenlink. See all the available components at our Github Page.
For a living style guide of design patterns, visit our site on Notion.
Install with NPM or Yarn
npm install --save @mavenlink/design-system
# or
yarn add @mavenlink/design-system
Setup React JSX processing. One way of doing that is with babel-loader
for Webpack.
Setup CSS modules. One way of doing that is with style-loader
for Webpack and css-loader
for Webpack.
Setup SVG processing. One way of doing that is with svg-sprite-loader
for Webpack.
// Webpack configuration
const SpriteLoaderPlugin = require('svg-sprite-loader/plugin');
module.exports = {
module: {
rules: [{
test: /\.jsx?$/,
use: [{
loader: 'babel-loader',
}],
}, {
test: /\.css$/,
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader',
options: {
modules: true
},
}],
}, {
test: /\.svg$/,
use: [{
loader: 'svg-sprite-loader',
}],
}],
},
plugins: [
new SpriteLoaderPlugin(),
],
};
Use in your project
import Input from '@mavenlink/design-system/src/components/input/input.jsx';
function App() {
return <Input id="hello!" />;
}
We periodically update and upgrade styles. We have also created linters to help with those changes! To use, do the following:
Install stylelint into your project
In your stylelint configuration file (.stylelintrc.json, .stylelintrc, stylelint.config.js
) include the following:
const path = require('path');
module.exports = {
plugins: [
path.resolve('@mavenlink/design-system/src/linters/colors.js'),
],
rules: {
'mds/colors': true,
},
};
Run stylelint to see failures
FAQs
Mavenlink React Components
We found that @mavenlink/design-system demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
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.