Skip to content

Commit

Permalink
Somehow the VL 5.6.1 schema changed slightly. Including the changes h…
Browse files Browse the repository at this point in the history
…ere as we upgrade to 5.7 anyway before a release
  • Loading branch information
binste committed Apr 15, 2023
1 parent f28ae9b commit 09805a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
4 changes: 2 additions & 2 deletions altair/vegalite/v5/schema/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -16754,7 +16754,7 @@ class LayerRepeatSpec(RepeatSpec):
``"column"`` to the listed fields to be repeated along the particular orientations.
The objects ``{"repeat": "row"}`` and ``{"repeat": "column"}`` can be used to refer
to the repeated field respectively.
spec : anyOf(:class:`LayerSpec`, :class:`UnitSpec`)
spec : anyOf(:class:`LayerSpec`, :class:`UnitSpecWithFrame`)
A specification of the view that gets repeated.
align : anyOf(:class:`LayoutAlign`, :class:`RowColLayoutAlign`)
The alignment to apply to grid rows and columns. The supported string values are
Expand Down Expand Up @@ -18978,7 +18978,7 @@ class TopLevelSelectionParameter(TopLevelParameter):

**See also:** `init <https://vega.github.io/vega-lite/docs/value.html>`__
documentation.
views : List(anyOf(string, List(string)))
views : List(string)
By default, top-level selections are applied to every view in the visualization. If
this property is specified, selections will only be applied to views with the given
names.
Expand Down
16 changes: 3 additions & 13 deletions altair/vegalite/v5/schema/vega-lite-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12467,7 +12467,7 @@
"$ref": "#/definitions/LayerSpec"
},
{
"$ref": "#/definitions/UnitSpec"
"$ref": "#/definitions/UnitSpecWithFrame"
}
],
"description": "A specification of the view that gets repeated."
Expand Down Expand Up @@ -29223,7 +29223,7 @@
"$ref": "#/definitions/LayerSpec"
},
{
"$ref": "#/definitions/UnitSpec"
"$ref": "#/definitions/UnitSpecWithFrame"
}
],
"description": "A specification of the view that gets repeated."
Expand Down Expand Up @@ -29507,17 +29507,7 @@
"views": {
"description": "By default, top-level selections are applied to every view in the visualization. If this property is specified, selections will only be applied to views with the given names.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
"type": "string"
},
"type": "array"
}
Expand Down

0 comments on commit 09805a3

Please sign in to comment.