-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.ts
87 lines (86 loc) · 1.45 KB
/
styles.ts
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
interface IStyle {
className?: string;
properties?: React.CSSProperties;
}
export interface IStyles {
root?: IStyle;
workspace?: {
container?: IStyle;
root?: IStyle;
};
toolbar?: {
root?: IStyle;
tool?: {
root?: IStyle;
icon?: IStyle;
label?: IStyle;
};
divider?: IStyle;
};
operations?: {
root?: IStyle;
input?: IStyle;
trigger?: IStyle;
};
zoomControls?: {
in?: IStyle;
out?: IStyle;
};
panControls?: {
handles?: {
up?: IStyle;
right?: IStyle;
down?: IStyle;
left?: IStyle;
};
};
visibilityControls?: {
buttons?: IStyle;
};
reloadButton?: IStyle;
elements?: {
seat?: {
selected?: IStyle;
unselected?: IStyle;
base?: IStyle;
icon?: IStyle;
statusColors?: {
[key: string]: {
background?: string;
label?: string;
};
};
};
shape?: {
selected?: IStyle;
unselected?: IStyle;
base?: IStyle;
};
section?: {
base?: IStyle;
freeSeating?: IStyle;
};
image?: {
selected?: IStyle;
unselected?: IStyle;
base?: IStyle;
};
text?: {
selected?: IStyle;
unselected?: IStyle;
base?: IStyle;
};
};
core?: {
container?: IStyle;
button?: IStyle;
tooltip?: {
trigger?: IStyle;
content?: IStyle;
};
};
dock?: {
container?: IStyle;
root?: IStyle;
};
}