pers label in verb chart

This commit is contained in:
Bill D 2021-04-08 10:04:34 +03:00
parent cdba254140
commit 0d67166b33
3 changed files with 2 additions and 10 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@lingdocs/pashto-inflector",
"version": "0.3.4",
"version": "0.3.5",
"author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com",

View File

@ -120,7 +120,7 @@ function VerbTable({ block, textOptions, english }: {
return <table className="table mt-2" style={{ tableLayout: "fixed" }}>
<thead>
<tr>
<th scope="col" style={{ width: "3rem" }}></th>
<th scope="col" style={{ width: "3rem" }}>Pers.</th>
<th scope="col">Singular</th>
<th scope="col">Plural</th>
</tr>

View File

@ -418,11 +418,3 @@ export type DisplayFormSubgroup = {
}
export type AayTail = "ey" | "aay";
export type EntryEdit = {
entry: DictionaryEntry,
comment: string,
final?: boolean,
}
export type EditsSubmission = EntryEdit[];