mirror of
https://github.com/zhigang1992/firecms.git
synced 2026-06-14 01:34:55 +08:00
86 lines
2.4 KiB
JavaScript
86 lines
2.4 KiB
JavaScript
module.exports = {
|
|
docsSidebar: [
|
|
{
|
|
type: 'doc',
|
|
label: 'Introduction',
|
|
id: 'intro'
|
|
},
|
|
'quickstart',
|
|
{
|
|
type: 'category',
|
|
label: 'Entities',
|
|
items: [
|
|
'entities/entity_schemas',
|
|
{
|
|
type: 'category',
|
|
label: 'Properties',
|
|
items: [
|
|
'entities/properties/properties_intro',
|
|
'entities/properties/string',
|
|
'entities/properties/number',
|
|
'entities/properties/boolean',
|
|
'entities/properties/reference',
|
|
'entities/properties/timestamp',
|
|
'entities/properties/array',
|
|
'entities/properties/map',
|
|
'entities/properties/geopoint'
|
|
]
|
|
},
|
|
'entities/conditional_fields',
|
|
'entities/custom_fields',
|
|
'entities/custom_previews',
|
|
'entities/custom_schema_views',
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Collections',
|
|
items: [
|
|
'collections/collections',
|
|
'collections/saving_callbacks',
|
|
'collections/permissions',
|
|
'collections/exporting_data',
|
|
]
|
|
},
|
|
'navigation',
|
|
'custom_top_level_views',
|
|
{
|
|
type: 'category',
|
|
label: 'Provided hooks',
|
|
items: [
|
|
'hooks/use_auth_controller',
|
|
'hooks/use_side_entity_controller',
|
|
'hooks/use_snackbar_controller',
|
|
'hooks/use_firecms_context',
|
|
'hooks/use_data_source',
|
|
'hooks/use_storage_source',
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'General configuration',
|
|
items: [
|
|
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Firebase CMS app',
|
|
items: [
|
|
'firebase_cms_app',
|
|
'firebase_setup',
|
|
'deployment',
|
|
]
|
|
},
|
|
'custom_cms_app',
|
|
'migrating_from_alpha_versions',
|
|
'changelog'
|
|
],
|
|
|
|
apiSidebar: [{
|
|
type: 'autogenerated',
|
|
dirName: 'api'
|
|
}]
|
|
}
|
|
|