forked from firecmsco/firecms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
130 lines (128 loc) · 4.19 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
127
128
129
module.exports = {
"docsSidebar": [
{
"type": "doc",
"label": "Introduction",
"id": "intro"
},
"what_is_new_v3",
"migrating_from_v2",
"customization_quickstart",
"app_config",
"deployment",
"firebase_setup",
{
"type": "category",
"label": "Collections",
"collapsed": false,
"items": [
"collections/collections",
"collections/callbacks",
"collections/entity_actions",
"collections/permissions",
"collections/exporting_data",
"collections/additional_columns",
"collections/text_search",
"collections/dynamic_collections",
"collections/entity_views",
"collections/collection_groups"
]
},
{
"type": "category",
"label": "Properties",
"collapsed": true,
"items": [
"properties/properties_intro",
{
"type": "category",
"label": "Fields",
"items": [
"properties/fields/text_fields",
"properties/fields/selects",
"properties/fields/file_upload",
"properties/fields/switch",
"properties/fields/date_time",
"properties/fields/references",
"properties/fields/group",
"properties/fields/key_value",
"properties/fields/repeat",
"properties/fields/block"
]
},
{
"type": "category",
"label": "Config",
"items": [
"properties/config/properties_common",
"properties/config/string",
"properties/config/number",
"properties/config/boolean",
"properties/config/reference",
"properties/config/date",
"properties/config/array",
"properties/config/map",
"properties/config/geopoint"
]
},
"properties/conditional_fields",
"properties/custom_fields",
"properties/custom_previews"
]
},
"top_level_views",
{
"type": "category",
"label": "Provided hooks",
"items": [
"hooks/use_auth_controller",
"hooks/use_side_entity_controller",
"hooks/use_snackbar_controller",
"hooks/use_reference_dialog",
"hooks/use_firecms_context",
"hooks/use_data_source",
"hooks/use_storage_source",
"hooks/use_mode_controller"
]
},
{
"type": "category",
"label": "Recipes",
"collapsed": false,
"items": [
"recipes/building_a_blog",
"recipes/copy_entity",
"recipes/documents_as_subcollections"
]
},
"icons/icons",
{
"type": "category",
"label": "Components",
"collapsed": false,
"items": [
"components",
"components/alert",
"components/avatar",
"components/badge",
"components/boolean_switch",
"components/button",
"components/card",
"components/centered_view",
"components/checkbox",
]
},
"changelog",
// {
// "type":"category",
// "label":"API reference",
// "collapsed":true,
// "items":[
// {
// "type":"autogenerated",
// "dirName":"api"
// }
// ]
// },
]
}