aurelia-redeye-design
v1.8.2
Published
An Aurelia Component Library based on the RedEye Design Pattern.
Downloads
4
Readme
RedEye Design Aurelia
Component Library based on the RedEye Design Library.
Usage
To use this plugin, firstly install this library:
npm install "git+ssh://[email protected]/redeyeapps/aurelia-redeye-design.git#X.X.X"
X.X.X
is the version number of the release. Please check this repository for the latest version.
To get the component styling, import in your project as well the CSS from the RedEye Design Library.
In your project's main.ts
file, utilize the plugin.
export async function configure(aurelia: Aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging();
aurelia.use.plugin(PLATFORM.moduleName('aurelia-redeye-design'), config => {
config.useAll();
});
await aurelia.start();
await aurelia.setRoot(PLATFORM.moduleName('main'));
}
For documentation on how to use the components individually, see here
Development
NPM
To start, must link the package first.
npm install
npm run build && npm link aurelia-redeye-design
cd /path/to/aurelia/app
npm install --link aurelia-redeye-design
And when finished.
cd /path/to/aurelia/app
npm install --unlink aurelia-redeye-design
JSPM
To start, must link the package first.
npm install
npm run build && jspm link github:redeyeapps/[email protected] -y
cd /path/to/aurelia/app
jspm install --link aurelia-redeye-design=github:redeyeapps/[email protected]
And when finished.
cd /path/to/aurelia/app
jspm install --unlink aurelia-redeye-design=github:redeyeapps/[email protected]