forked from material-table-core/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.demos.js
More file actions
111 lines (111 loc) · 2.18 KB
/
sidebar.demos.js
File metadata and controls
111 lines (111 loc) · 2.18 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
module.exports = {
sidebar: [
"demos",
{
type: "category",
label: "Actions",
items: ["actions/basic"],
},
{
type: "category",
label: "Override Components",
items: ["override/toolbar"],
},
{
type: "category",
label: "Columns",
items: ["columns/render-image", "columns/hide"],
},
{
type: "category",
label: "Details Panel",
items: ["details-panel/basic", "details-panel/single"],
},
{
type: "category",
label: "Edit",
items: ["edit/editable"],
},
{
type: "category",
label: "Export",
items: [
"export/basic",
"export/custom",
{
type: "link",
label: "Exporter Package",
href: "https://github.com/material-table-core/exporters",
},
],
},
{
type: "category",
label: "Filter",
items: [
"filter/basic",
"filter/custom-filter",
"filter/custom-filter-row",
],
},
{
type: "category",
label: "Group",
items: ["group/basic"],
},
{
type: "category",
label: "Localization",
items: ["localization/basic"],
},
{
type: "category",
label: "Remote Data",
items: ["remote-data/basic"],
},
{
type: "category",
label: "Search",
items: ["search/basic"],
},
{
type: "category",
label: "Selection",
items: [
"selection/basic",
"selection/on-row-click",
"selection/persist-events",
],
},
{
type: "category",
label: "Sort",
items: ["sort/basic"],
},
{
type: "category",
label: "Style",
items: ["style/header-cell", "style/rows", "style/selected-row"],
},
{
type: "category",
label: "Tree Data",
items: ["tree-data/basic"],
},
{
type: "category",
label: "Validation",
items: ["validation/basic"],
},
{
type: "category",
label: "Summary Row",
items: ["Summaryrow/basic"],
},
{
type: "category",
label: "Pagination",
items: ["pagination/basic"],
},
],
};