Skip to content

Commit

Permalink
Add missing ref support for textAlign and textColumns
Browse files Browse the repository at this point in the history
  • Loading branch information
ajlende committed Jul 16, 2024
1 parent 0b9a945 commit e3aff9d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions schemas/json/theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -1678,11 +1678,25 @@
},
"textAlign": {
"description": "Sets the `text-align` CSS property.",
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/refComplete"
}
]
},
"textColumns": {
"description": "Sets the `column-count` CSS property.",
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/refComplete"
}
]
},
"textDecoration": {
"description": "Sets the `text-decoration` CSS property.",
Expand Down

0 comments on commit e3aff9d

Please sign in to comment.