Skip to content

Commit

Permalink
chore(schema): update for autoCapitalize feature (#1064)
Browse files Browse the repository at this point in the history
Adding an `autoCapitalize` attribute into `text-field`.

Tested locally against changes made in
Instawork/instawork#36726

Required for Instawork/instawork#36726
  • Loading branch information
hgray-instawork authored Feb 4, 2025
1 parent 6fa704f commit 09f00a1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions schema/core.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,16 @@
<xs:attribute name="type" type="xs:string" />
<xs:attributeGroup ref="hv:behaviorAttributes" />
<xs:attribute name="text-content-type" type="hv:text-content-type" />
<xs:attribute name="autoCapitalize">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="none" />
<xs:enumeration value="sentences" />
<xs:enumeration value="words" />
<xs:enumeration value="characters" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>

Expand Down

0 comments on commit 09f00a1

Please sign in to comment.