Files
pyrofetes-frontend/node_modules/ng-zorro-antd/schematics/ng-generate/side-menu/schema.json
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

34 lines
741 B
JSON

{
"$schema": "http://json-schema.org/schema",
"$id": "sidebar-nav",
"title": "Sidebar Navigation Layout",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"style": {
"description": "The file extension or preprocessor to use for style files.",
"type": "string",
"default": "css",
"enum": [
"css",
"scss",
"sass",
"less"
]
},
"prefix": {
"type": "string",
"format": "html-selector",
"description": "A prefix to apply to generated selectors.",
"default": "app",
"alias": "p"
}
}
}