Im trying to install aurelia-ux using setup in topic. I will publish a public repo with FAST, Tailwind and UX when I have it working.
TIA
John
Currently the main.js
import Aurelia, { RouterConfiguration } from ‘aurelia’;
import * as UxComponents from ‘ux’;
import {
FASTDesignSystemProvider,
FASTCard,
FASTButton,
FASTTextField,
FASTTextArea,
FASTCheckbox
} from ‘@microsoft/fast-components’;
import { AureliaFastAdapter } from ‘./aurelia-fast-adapter’;
FASTDesignSystemProvider;
FASTCard;
FASTButton;
FASTTextField;
FASTTextArea;
FASTCheckbox;
// ‘@aurelia-ux/core’;
// ‘@aurelia-ux/components’;
// ‘@aurelia-ux/input’;
// ‘@aurelia-ux/icons’;
// ‘@aurelia-ux/datepicker’;
// export function configure(aurelia) {
// aurelia.use.plugin(’@aurelia-ux/core’);
// aurelia.use.plugin(’@aurelia-ux/components’);
// aurelia.use.plugin(’@aurelia-ux/input’);
// aurelia.use.plugin(’@aurelia-ux/icons’);
// aurelia.use.plugin(’@aurelia-ux/datepicker’);
// // ‘@aurelia-ux/core’;
// // ‘@aurelia-ux/components’;
// // ‘@aurelia-ux/input’;
// // ‘@aurelia-ux/icons’;
// // ‘@aurelia-ux/datepicker’;
// }
Aurelia
.register(RouterConfiguration)
.register(AureliaFastAdapter) // add this line
.register( UxComponents )
.app(MyApp)
.start();