forked from polotno-project/polotno-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
80 lines (79 loc) · 1.69 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
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
docs: [
'overview',
'config',
'theme',
{
type: 'category',
label: 'Integrations',
collapsed: false,
items: ['frameworkless', 'non-react-integration'],
},
{
type: 'category',
label: 'Store API',
collapsed: false,
items: ['store-overview', 'page-overview', 'element-overview'],
},
'workspace',
'toolbar',
{
type: 'category',
label: 'Side Panel UI',
collapsed: true,
items: [
'side-panel',
'side-panel-images',
'side-panel-hidden',
'side-panel-upload',
'side-panel-utils',
'side-panel-size',
],
},
'server-side',
'cloud-render',
{
type: 'category',
label: 'Misc',
collapsed: false,
items: [
'templates-library',
'server-api',
'vue-integration',
'nextjs-integration',
'units',
'user-roles',
'page-bleed',
],
},
{
type: 'category',
label: 'Beta experiments',
collapsed: false,
items: ['custom-element', 'rich-text', 'vertical-text-resize'],
},
{
type: 'category',
label: 'Examples',
collapsed: false,
items: [
'demo-full-editor',
'demo-book-cover-editor',
'demo-simple-t-shirt',
'demo-grid',
'demo-signature',
'demo-qr-codes',
'demo-bar-codes',
'demo-page-numbers',
'demo-page-name',
'demo-charts',
],
},
],
};