@dunite/au-fluent-ui
TypeScript icon, indicating that this package has built-in type declarations

0.1.6 • Public • Published

au-fluent-ui

An Aurelia plugin that wraps React components from Microsoft Fluent UI.

How to use

Install with au install @dunite/au-fluent-ui

It is necessery to calling the .plugin method. All components must also be manually loaded with a call to .globalResources() or by adding a <require from="@dunite/au-fluent-ui/elements/Surfaces/DuPanel"></require> tag to your html view.

export function configure(aurelia: Aurelia) {
  aurelia.use
    .standardConfiguration()
    .plugin(PLATFORM.moduleName('@dunite/au-fluent-ui')) //Add this line
    .feature('resources')
    .globalResources(
      [ // Registrer all components here
        PLATFORM.moduleName('@dunite/au-fluent-ui/elements/BasicInputs/DuActionButton'),
        PLATFORM.moduleName('@dunite/au-fluent-ui/elements/BasicInputs/DuCheckbox')
      ]);
    

  if (environment.debug) {
    aurelia.use.developmentLogging();
  }

  if (environment.testing) {
    aurelia.use.plugin('aurelia-testing');
  }

  aurelia.start().then(() => aurelia.setRoot());
}

Then just use it as below

<du-default-button checked="true" text.bind="mytextbutton"  primary class-name="lisa"  on-click.bind="buttonclick"  ></du-default-button>

Demo site

Examples of most controls in action.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.6
    0
    • latest

Version History

Package Sidebar

Install

npm i @dunite/au-fluent-ui

Weekly Downloads

1

Version

0.1.6

License

MIT

Unpacked Size

660 kB

Total Files

612

Last publish

Collaborators

  • magnusdanielson
  • dunitejoakim
  • duniteallan