-
Notifications
You must be signed in to change notification settings - Fork 0
/
button.json
34 lines (34 loc) · 962 Bytes
/
button.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
34
{
"componentList": [
{
"name": "LyButton",
"selector": "'button[ly-button], a[ly-button]'",
"inputs": "[\n \"bg\",\n \"color\",\n \"raised\",\n \"disabled\",\n \"outlined\",\n \"elevation\",\n \"shadowColor\",\n \"disableRipple\"\n]",
"exportAs": "",
"children": "/** Button appearance */\n@Input() appearance: string\n/** Button size */\n@Input() size: LyButtonSize\nfocus(): void"
}
],
"directiveList": [],
"typeAliasList": [
{
"name": "LyButtonSize",
"children": "type LyButtonSize = 'small' | 'medium' | 'large'"
}
],
"variableList": [
{
"name": "DEFAULT_DISABLE_RIPPLE",
"children": "const DEFAULT_DISABLE_RIPPLE = false"
},
{
"name": "STYLE_PRIORITY",
"children": "const STYLE_PRIORITY = -2"
}
],
"ngModuleList": [
{
"name": "LyButtonModule",
"children": "import { LyButtonModule } from '@alyle/ui/button'"
}
]
}