This repository has been archived by the owner on Jan 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbumbleDocs.coffee
63 lines (57 loc) · 2.06 KB
/
bumbleDocs.coffee
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
module.exports =
logo: "img/docs/react-datum-datagrid.logo.png",
# these get added to the css linked to the static examples and docs and copied to
# docs/css
styleSheets: [{
path: "css/docs/docs.css"
media: "screen"
},{
path: "dist/react-datum-datagrid.css"
media: "screen"
}]
scripts: [
# the vendor scripts are copied from our node_modules dir by Gruntfile.coffee
{ path: "docs/vendor/react-datum-datagrid.js" },
{ path: "docs/vendor/react-bootstrap.js" },
{ path: "docs/vendor/react-virtualized-9.18.5.js"}
{ path: "/test/lib/puppyData.js" }
]
apiDocs: {
sections: [{
label: "Datagrid"
path: "src/?(*.coffee|*.cjsx)"
}]
}
examples:
root: 'examples'
demos: [{
id: "basic",
name: "Basic Datagrid Demo",
path: "basicDatagrid/basicDatagrid.jsx",
description: "This demo shows how simple it is to create a basic react-datum-datagrid.",
thumbnailUrl: "http://zulily.github.io/react-datum-datagrid/img/docs/basicDatagridDemo.png"
},{
id: "editable",
name: "Editable Datagrid Demo",
path: "editing/editing.jsx",
description: "This demo shows how to create an editable react-datum-datagrid.",
thumbnailUrl: null
},{
id: "selfSorting",
name: "Self Sorting Grid Demo",
path: "selfSorting/selfSorting.jsx",
description: "This demo shows how to create a grid that will sort without a callback method",
thumbnailUrl: null
},{
id: "collectionSorting",
name: "Collection Fetch Sorting Grid Demo",
path: "collectionFetchSorting/collectionFetchSorting.jsx",
description: "This demo shows how to create a grid that will sort using a method on the collection that presumably has to fetch data from a data service.",
thumbnailUrl: null
},{
id: "rvIssue",
name: "React Virtualized Demo",
path: "reactVirtualizedIssue/demo.jsx",
description: "This demo shows how to create a react-virtualized grid component",
thumbnailUrl: null
}]