3.0.6 • Published 1 year ago

@sakai-ui/sui-group-picker v3.0.6

Weekly downloads
-
License
ECL-2.0
Repository
github
Last release
1 year ago

sui-group-picker

A component that renders a list of Sakai groups and allows you to select one

Installation

npm i @sakai-ui/sui-group-picker

Usage

import { SuiElement } from '@sakai-ui/sui-element';
import '@sakai-ui/sui-group-picker';

class MyElement extends SuiElement {

  render() {

    return html`
      <sui-group-picker site-id="xyz"></sui-group-picker>
    `;
  }
}

Linting and formatting

To scan the project for linting and formatting errors, run

npm run lint

To automatically fix linting and formatting errors, run

npm run format

Testing with Web Test Runner

To execute a single test run:

npm run test

To run the tests in interactive watch mode run:

npm run test:watch