Skip to content

Commit 29e7e64

Browse files
committed
examples
1 parent 7848000 commit 29e7e64

File tree

6 files changed

+1306
-4
lines changed

6 files changed

+1306
-4
lines changed

examples/index.html

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
6+
* {
7+
box-sizing: border-box;
8+
}
9+
10+
html, body, #app {
11+
width: 100%;
12+
height: 100%;
13+
padding: 20px;
14+
margin: 0;
15+
box-sizing: border-box;
16+
font-family: "Segoe UI", "Helvetica Neue";
17+
font-size: 13px;
18+
}
19+
20+
.ax-headers-view {
21+
font-weight: bold;
22+
color: #666;
23+
border-bottom: 1px solid #aaa;
24+
}
25+
26+
.ax-gridlines {
27+
border-bottom: 1px solid #eee;
28+
}
29+
30+
.ax-row.selected {
31+
background: #f7eeff77;
32+
}
33+
34+
.menu-header {
35+
line-height: 2em;
36+
}
37+
38+
.menu-item {
39+
line-height: 1.5em;
40+
text-indent: 2em;
41+
}
42+
43+
</style>
44+
</head>
45+
<body>
46+
<div id="app"><div>Loading...</div></div>
47+
<script src="./viewer.js"></script>
48+
</body>
49+
</html>

examples/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+

2+
export * from '@activewidgets/datagrid/examples';

0 commit comments

Comments
 (0)