Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 873 Bytes

README.md

File metadata and controls

45 lines (32 loc) · 873 Bytes

ember-eui

This project aims to provide ember components implementing the css layer of https://elastic.github.io/eui

Icons

For icons to work you will need to:

  • install ember-svg-jar
  • add the following ember-svg-jar options to your ember-cli-build.js:
// ember-cli-build.js
var app = new EmberApp(defaults, {
  ...
    svgJar: {
      sourceDirs: [
        'public/assets',
        '../node_modules/@ember-eui/core/public',
        '../node_modules/@ember-eui/core/vendor/icon',
      ],
    },
  ...
});

Compatibility

  • Ember.js v3.24 or above
  • Ember CLI v3.24 or above
  • Node.js v12 or above

Installation

ember install @ember-eui/core

Contributing

See the Contributing guide for details.

PR's are truly welcome