angular-datatables
Version:
Angular directive for DataTables
38 lines (37 loc) • 979 B
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "angular-datatables-schematic-angular-datatables",
"title": "Angular DataTables angular-datatables schematic",
"type": "object",
"properties": {
"project": {
"title": "angular-datatables",
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"style": {
"description": "The styling library to use for Datatables.",
"type": "string",
"default": "dt",
"enum": ["dt", "bs3", "bs4"],
"x-prompt": {
"message": "Which styling library would you like to use for DataTables?",
"type": "list",
"items": [
{ "value": "dt", "label": "DataTables (Default)" },
{
"value": "bs3",
"label": "Bootstrap 3"
},
{
"value": "bs4",
"label": "Bootstrap 4"
}
]
}
}
}
}