touchup
This commit is contained in:
parent
0cccfaa083
commit
dc75525e74
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/pashto-inflector",
|
"name": "@lingdocs/pashto-inflector",
|
||||||
"version": "3.6.7",
|
"version": "3.6.8",
|
||||||
"author": "lingdocs.com",
|
"author": "lingdocs.com",
|
||||||
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
||||||
"homepage": "https://verbs.lingdocs.com",
|
"homepage": "https://verbs.lingdocs.com",
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import ButtonSelect from "../ButtonSelect";
|
import ButtonSelect from "../ButtonSelect";
|
||||||
import * as T from "../../types";
|
import * as T from "../../types";
|
||||||
import { roleIcon } from "./VPExplorerExplanationModal";
|
import { roleIcon } from "./VPExplorerExplanationModal";
|
||||||
|
import classNames from "classnames";
|
||||||
|
|
||||||
const options = [
|
const options = [
|
||||||
{
|
{
|
||||||
|
@ -86,7 +87,7 @@ function AbbreviationFormSelector({ form, onChange, adjustable, inline }: {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// TODO: limit display of shrinking options based on the verb type
|
// TODO: limit display of shrinking options based on the verb type
|
||||||
return <div className="mb-3 mx-3">
|
return <div className={classNames("mx-3", { "mb-3": !inline })}>
|
||||||
{/* <div className="text-center text-small mb-2">Abbreviation Options</div> */}
|
{/* <div className="text-center text-small mb-2">Abbreviation Options</div> */}
|
||||||
<ButtonSelect
|
<ButtonSelect
|
||||||
faded={inline}
|
faded={inline}
|
||||||
|
|
|
@ -45,7 +45,7 @@ function VPDisplay({ VPS, opts, setForm, justify, onlyOne, length, mode: preferr
|
||||||
form={rendered.form}
|
form={rendered.form}
|
||||||
onChange={setForm}
|
onChange={setForm}
|
||||||
/>}
|
/>}
|
||||||
<div className="d-flex flex-row">
|
<div className="d-flex flex-row mb-2">
|
||||||
<ModeSelect value={mode} onChange={setMode} />
|
<ModeSelect value={mode} onChange={setMode} />
|
||||||
{mode === "blocks" && <ScriptSelect value={script} onChange={setScript} />}
|
{mode === "blocks" && <ScriptSelect value={script} onChange={setScript} />}
|
||||||
{mode === "text" && length && "long" in result.ps && onLengthChange && <LengthSelect value={length} onChange={onLengthChange} />}
|
{mode === "text" && length && "long" in result.ps && onLengthChange && <LengthSelect value={length} onChange={onLengthChange} />}
|
||||||
|
|
Loading…
Reference in New Issue