Merge pull request #1562 from GiladFeder/patch-1

removed "both" as a verticalAlign feature
This commit is contained in:
Dolan
2022-06-25 13:27:39 +01:00
committed by GitHub

View File

@ -8,12 +8,10 @@ import { XmlAttributeComponent, XmlComponent } from "file/xml-components";
// <xsd:restriction base="xsd:string"> // <xsd:restriction base="xsd:string">
// <xsd:enumeration value="top"/> // <xsd:enumeration value="top"/>
// <xsd:enumeration value="center"/> // <xsd:enumeration value="center"/>
// <xsd:enumeration value="both"/>
// <xsd:enumeration value="bottom"/> // <xsd:enumeration value="bottom"/>
// </xsd:restriction> // </xsd:restriction>
// </xsd:simpleType> // </xsd:simpleType>
export enum VerticalAlign { export enum VerticalAlign {
BOTH = "both",
BOTTOM = "bottom", BOTTOM = "bottom",
CENTER = "center", CENTER = "center",
TOP = "top", TOP = "top",