-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy pathsidebars.js
126 lines (126 loc) · 2.97 KB
/
sidebars.js
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
module.exports = {
sidebar: {
"👋 Introduction": ['index', 'philosophy', 'sponsors', 'roadmap', 'community', 'license'],
"💁 Usage": [
'install',
'hello-world',
'config',
'server-side',
],
"🛠 Config": [
'config/data',
'config/from',
'config/columns',
'config/server',
'config/style',
'config/className',
'config/language',
'config/width',
'config/height',
'config/autoWidth',
'config/fixedHeader',
'config/search',
'config/sort',
'config/pagination',
],
"🧩 Plugins": [
{
type: 'category',
label: 'Overview',
items: [
'plugins/basics',
'plugins/writing-plugin',
'plugins/advanced-plugins',
]
},
{
type: 'category',
label: 'Selection',
items: [
'plugins/selection/index',
'plugins/selection/row-selection',
'plugins/selection/selection-events',
]
}
],
"🔌 Integrations": [
'integrations/react',
'integrations/vue',
'integrations/angular',
'integrations/laravel',
'integrations/svelte',
'integrations/jquery',
],
"🌎 Localization": [
'localization/locales',
],
"🎮 Examples": [{
type: 'category',
label: 'Basic',
items: [
'examples/hello-world',
'examples/from',
'examples/pagination',
'examples/search',
'examples/sorting',
'examples/resizable',
'examples/loading-state',
'examples/wide-table',
'examples/fixed-header',
'examples/hidden-columns',
]
}, {
type: 'category',
label: 'Data Source',
items: [
'examples/import-json',
'examples/import-xml',
'examples/from',
'examples/server',
'examples/import-function',
'examples/import-async',
]
}, {
type: 'category',
label: 'Server-side',
items: [
'examples/server',
'examples/server-side-search',
'examples/server-side-pagination',
'examples/server-side-sort',
'examples/custom-http-client',
]
}, {
type: 'category',
label: 'Styling',
items: [
'examples/css-style',
'examples/css-classname',
'examples/css-in-js',
]
}, {
type: 'category',
label: 'Customizing',
items: [
'examples/cell-formatting',
'examples/cell-attributes',
'examples/row-buttons',
'examples/html-cells',
'examples/html-header-cells',
'examples/react-cells'
]
}, {
type: 'category',
label: 'Advanced',
items: [
'examples/nested-header',
'examples/force-render',
'examples/virtual-dom',
'examples/multi-sort',
'examples/custom-sort',
'examples/stock-market',
'examples/event-handler'
]
}]
},
};