All Projects β†’ mineral-ui β†’ Mineral Ui

mineral-ui / Mineral Ui

Licence: apache-2.0
A design system and React component library for the web brought to you by CA Technologies.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mineral Ui

Design System Site
πŸ“š Documentation, rationale and accessibility guidance
Stars: ✭ 72 (-86.49%)
Mutual labels:  accessibility, design-systems
fast-blazor
Blazor component library for FluentUI. Microsoft's official lightweight wrapper around the FluentUI Web Components for use with .NET 6.0 Blazor applications
Stars: ✭ 928 (+74.11%)
Mutual labels:  components, design-systems
Ebayui Core
Collection of Marko widgets; considered to be the core building blocks for all eBay components, pages & apps
Stars: ✭ 134 (-74.86%)
Mutual labels:  accessibility, components
Viewui
A high quality UI Toolkit built on Vue.js 2.0
Stars: ✭ 2,487 (+366.6%)
Mutual labels:  design-systems, components
Awesome List
Curated list of links on component-driven development and design systems
Stars: ✭ 271 (-49.16%)
Mutual labels:  design-systems, components
Storybook
πŸ““ The UI component explorer. Develop, document, & test React, Vue, Angular, Web Components, Ember, Svelte & more!
Stars: ✭ 67,445 (+12553.85%)
Mutual labels:  design-systems, components
componentry
React component library for building custom design systems
Stars: ✭ 15 (-97.19%)
Mutual labels:  design-systems, accessibility
Neumorphic Ui
πŸ“š A library of components based on the concept of neumorphism
Stars: ✭ 82 (-84.62%)
Mutual labels:  design-systems, components
pancake
Making npm work for the front end and the Australian Government Design System.
Stars: ✭ 93 (-82.55%)
Mutual labels:  components, design-systems
foundational-design-system-proto
A prototype for a foundational design system at Shopify
Stars: ✭ 82 (-84.62%)
Mutual labels:  components, design-systems
Vue Design System
An open source tool for building UI Design Systems with Vue.js
Stars: ✭ 2,077 (+289.68%)
Mutual labels:  design-systems, components
Reakit
Toolkit for building accessible rich web apps with React
Stars: ✭ 5,265 (+887.8%)
Mutual labels:  accessibility, components
X0
Document & develop React components without breaking a sweat
Stars: ✭ 1,706 (+220.08%)
Mutual labels:  design-systems, components
Primitives
An open-source UI component library for building high-quality, accessible design systems and web apps. Maintained by @modulz.
Stars: ✭ 644 (+20.83%)
Mutual labels:  accessibility, design-systems
Vue Cion Design System
CION - Design system boilerplate for Vue.js
Stars: ✭ 119 (-77.67%)
Mutual labels:  design-systems, components
Bootstrap Vue
BootstrapVue provides one of the most comprehensive implementations of Bootstrap v4 for Vue.js. With extensive and automated WAI-ARIA accessibility markup.
Stars: ✭ 13,603 (+2452.16%)
Mutual labels:  accessibility, components
Design System Starter
πŸš€ The Australian Government Design System - Starter
Stars: ✭ 61 (-88.56%)
Mutual labels:  design-systems, components
Kit
Tools for developing, documenting, and testing React component libraries
Stars: ✭ 1,201 (+125.33%)
Mutual labels:  design-systems, components
vuestic-ui
Free and Open Source UI Library for Vue 3 🀘
Stars: ✭ 1,501 (+181.61%)
Mutual labels:  components, accessibility
Story2sketch
Convert Storybook into Sketch symbols πŸ’Ž
Stars: ✭ 391 (-26.64%)
Mutual labels:  design-systems, components

build status dependency status Commitizen friendly code style Prettier

Mineral UI

Mineral UI is a design system and React component library for the web that lets you quickly build high-quality, accessible apps.

ℹ️▢️ Please read: Important updates regarding the status of this project

Project Goals

  • Consistent, thoughtful design
  • Accessible and inclusive
  • Performant
  • Responsive
  • Powerful and easy to develop with inside your app

Getting Started

Installation

Install the Mineral UI package and its dependencies.

npm install mineral-ui emotion-theming @emotion/core @emotion/is-prop-valid @emotion/styled react react-dom

or

yarn add mineral-ui emotion-theming @emotion/core @emotion/is-prop-valid @emotion/styled react react-dom

Usage

import React from 'react';
import { render } from 'react-dom';
import Button from 'mineral-ui/Button';
import { ThemeProvider } from 'mineral-ui/themes';

function App() {
  return (
    <ThemeProvider>
      <Button>
        Hello World
      </Button>
    </ThemeProvider>
  );
}

render(<App />, document.getElementById('app'));

Your app must be wrapped in a ThemeProvider at its root in order for the styles to apply correctly.

Also, please see our import syntax guide.

Open Sans Font

Mineral UI was designed around Open Sans. To get the components to look right, you will need to include this font in your project yourself or our styles will fall back to system fonts. To quickly include this font in your app, copy this code into the <head> of your HTML document.

<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">

For more options loading this font from Google, check out the Selected Family popup, in the specimen. You can also download the font file and serve it yourself if you'd like, but we'll leave that to you.

Styling

This project uses CSS-in-JS and Emotion for component styling. Refer to the styling page for details.

Questions

If you have read through the documentation but are still facing difficulties, we are happy to help. Please reproduce your error by forking our Mineral UI Starter and adding the relevant code there. Then, send us a message on the Flowdock "Mineral & Styleguide" Flow or open an issue including the relevant link.

Contributing

We welcome all contributors who abide by our Code of Conduct. Please see the Contributors Guide and Developer Docs for more details on submitting a PR, setting up a local dev environment, running tests, etc...

How You Can Help

All of the work for this project is accomplished via pull requests and issues. You can submit a PR or issue to:

  • Update components (PR)
  • Update tests (PR)
  • Improve documentation (PR)
  • Suggest a change/improvement/feature (issue)
  • Report a bug (issue)

Thank you for offering your time, expertise, and feedback. It’s greatly appreciated!

Versioning

Until this project reaches a 1.0 milestone, minor version numbers will simply be incremented during each release. The Changelog will continue to document the different types of updates, including any "breaking changes".

After the 1.0 milestone, this project will follow SemVer.

Browser Support

Mineral UI supports the latest versions of Chrome, Firefox, Safari, Edge, and Internet Explorer 11.

Roadmap

Future plans and high priority features and enhancements can be found on the Roadmap.

License

This project is licensed under the Apache 2.0 License β€” see the License file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].