sn-controls-aurelia
Version:
Aurelia controls for sensenet ECM
21 lines (18 loc) • 575 B
text/typescript
/**
* @module FieldControls
*
*/ /** */
import { FieldBaseControl } from './FieldBaseControl';
import { FieldSettings } from 'sn-client-js';
import { customElement } from 'aurelia-framework';
/**
* Field control that represents a Checkbox field. Available values will be populated from the FieldSettings.
* Usage:
*
* ``` html
* <choice content.bind="content" settings.bind="myChoiceFieldSettings"></choice>
* ```
*/
('checkbox')
export class Checkbox extends FieldBaseControl<Object, FieldSettings.ChoiceFieldSetting> {
}