igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
51 lines (49 loc) • 1.51 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ThemeChange": {
"properties": {
"name": {
"description": "Name of the theme property",
"type": "string"
},
"owner": {
"description": "Theming function this parameter belongs to",
"type": "string"
},
"remove": {
"description": "Remove directive/component/property",
"type": "boolean"
},
"replaceWith": {
"description": "Replace original selector/property with new one",
"type": "string"
},
"type": {
"$ref": "#/definitions/ThemeType",
"description": "The type of the change: variable, function, mixin"
}
},
"type": "object"
},
"ThemeType": {
"enum": [
"function",
"mixin",
"property",
"variable"
],
"type": "string"
}
},
"properties": {
"changes": {
"description": "An array of changes to theme function properties",
"items": {
"$ref": "#/definitions/ThemeChange"
},
"type": "array"
}
},
"type": "object"
}