3.0.6 • Published 3 years ago
@sakai-ui/sui-group-picker v3.0.6
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-pickerUsage
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 lintTo automatically fix linting and formatting errors, run
npm run formatTesting with Web Test Runner
To execute a single test run:
npm run testTo run the tests in interactive watch mode run:
npm run test:watch