File tree Expand file tree Collapse file tree 8 files changed +1352
-3
lines changed Expand file tree Collapse file tree 8 files changed +1352
-3
lines changed Original file line number Diff line number Diff line change 11node_modules
2+ .cache
23dist
3- out
4+ public
45* .d.ts
56* .metadata.json
67* .bat
Original file line number Diff line number Diff line change 11
2- import '@activewidgets/datagrid/css/index.css ' ;
2+ import '@activewidgets/datagrid/css' ;
Original file line number Diff line number Diff line change 11
2- require ( '@activewidgets/datagrid/css/index.css ' ) ;
2+ require ( '@activewidgets/datagrid/css' ) ;
Original file line number Diff line number Diff line change 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 "> Loading...</ div >
47+ < script src ="./viewer.js "> </ script >
48+ </ body >
49+ </ html >
Original file line number Diff line number Diff line change 1+
2+ export * from '@activewidgets/datagrid/examples' ;
You can’t perform that action at this time.
0 commit comments