-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbox.json
33 lines (33 loc) · 1.09 KB
/
checkbox.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"componentList": [
{
"name": "LyCheckbox",
"selector": "'ly-checkbox'",
"inputs": "[\n \"disableRipple\"\n]",
"exportAs": "'lyCheckbox'",
"children": "/** Event emitted when the checkbox's `checked` value changes. */\n@Output() change: EventEmitter\n/** The value attribute of the native input element */\n@Input() value: string\n/** Whether the checkbox is checked. */\n@Input() checked: boolean\n@Input() color: string\n@Input() disabled: boolean\n@Input() required: boolean\n/** Toggles the `checked` state of the checkbox. */\ntoggle(): void"
}
],
"directiveList": [],
"classList": [],
"variableList": [
{
"name": "DEFAULT_DISABLE_RIPPLE",
"children": "const DEFAULT_DISABLE_RIPPLE = false"
},
{
"name": "DEFAULT_WITH_COLOR",
"children": "const DEFAULT_WITH_COLOR = \"accent\""
},
{
"name": "STYLE_PRIORITY",
"children": "const STYLE_PRIORITY = -2"
}
],
"ngModuleList": [
{
"name": "LyCheckboxModule",
"children": "import { LyCheckboxModule } from '@alyle/ui/checkbox'"
}
]
}