forked from nylas/components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (124 loc) · 3.4 KB
/
index.html
File metadata and controls
131 lines (124 loc) · 3.4 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Nylas Component Demos</title>
<link rel="shortcut icon " href="data:;base64,=" />
</head>
<style>
body {
font-family: Helvetica, Arial, sans-serif;
margin: 0;
padding: 0.5rem;
}
h2,
ul,
li {
margin: 0;
padding: 0;
}
h2 {
margin-bottom: 0.5rem;
}
ul {
margin-bottom: 3rem;
}
li {
font-size: 1.2rem;
display: grid;
grid-template-rows: auto 1fr;
margin-bottom: 1rem;
margin-left: 1rem;
width: max-content;
}
li footer a {
font-size: 0.8rem;
display: inline-block;
}
</style>
<body>
<h2>Released Components</h2>
<ul>
<li>
<header>
<a href="components/agenda/src/index.html">Agenda</a>
</header>
<footer>
<a
href="https://github.com/nylas/components/tree/main/components/agenda"
target="_blank"
>Source Code</a
>
<a
href="https://www.npmjs.com/package/@nylas/components-agenda"
target="_blank"
>NPM</a
>
<a
href="https://developer.nylas.com/docs/user-experience/components/agenda-component/"
target="_blank"
>Documentation</a
>
</footer>
</li>
<li>
<header>
<a href="components/composer/src/index.html">Composer</a>
</header>
<footer>
<a
href="https://github.com/nylas/components/tree/main/components/composer"
target="_blank"
>Source Code</a
>
<a
href="https://www.npmjs.com/package/@nylas/components-composer"
target="_blank"
>NPM</a
>
<a
href="https://developer.nylas.com/docs/user-experience/components/composer-component/"
target="_blank"
>Documentation</a
>
</footer>
</li>
<li>
<header>
<a href="components/contact-list/src/index.html">Contact List</a>
</header>
<footer>
<a
href="https://github.com/nylas/components/tree/main/components/contact-list"
target="_blank"
>Source Code</a
>
<a
href="https://www.npmjs.com/package/@nylas/components-contact-list"
target="_blank"
>NPM</a
>
<a
href="https://developer.nylas.com/docs/user-experience/components/contact-list-component/"
target="_blank"
>Documentation</a
>
</footer>
</li>
</ul>
<h2>In Development</h2>
<ul>
<li><a href="components/conversation/src/index.html">Conversation</a></li>
<li><a href="components/day/src/index.html">Day</a></li>
<li><a href="components/email/src/index.html">Email</a></li>
<li><a href="components/mailbox/src/index.html">Mailbox</a></li>
<li><a href="components/availability/src/index.html">Availability</a></li>
<li><a href="components/scheduler/src/index.html">Scheduler</a></li>
<li>
<a href="components/schedule-editor/src/index.html">Schedule Editor</a>
</li>
<!-- $INJECT_NEW_COMPONENT_HERE$ -->
</ul>
</body>
</html>