oops forgot to export
This commit is contained in:
parent
b19dd13c6e
commit
3f9b1161d5
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/pashto-inflector",
|
"name": "@lingdocs/pashto-inflector",
|
||||||
"version": "2.3.1",
|
"version": "2.3.2",
|
||||||
"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",
|
||||||
|
|
|
@ -113,6 +113,7 @@ import {
|
||||||
countSyllables,
|
countSyllables,
|
||||||
} from "./lib/accent-helpers";
|
} from "./lib/accent-helpers";
|
||||||
import NPPicker from "./components/np-picker/NPPicker";
|
import NPPicker from "./components/np-picker/NPPicker";
|
||||||
|
import EPExplorer from "./components/ep-explorer/EPExplorer";
|
||||||
import shuffleArray from "./lib/shuffle-array";
|
import shuffleArray from "./lib/shuffle-array";
|
||||||
import defaultTextOptions from "./lib/default-text-options";
|
import defaultTextOptions from "./lib/default-text-options";
|
||||||
import * as grammarUnits from "./lib/grammar-units";
|
import * as grammarUnits from "./lib/grammar-units";
|
||||||
|
@ -178,6 +179,7 @@ export {
|
||||||
readDictionaryInfo,
|
readDictionaryInfo,
|
||||||
writeDictionaryInfo,
|
writeDictionaryInfo,
|
||||||
// COMPONENTS
|
// COMPONENTS
|
||||||
|
EPExplorer,
|
||||||
VPExplorer,
|
VPExplorer,
|
||||||
ConjugationViewer, // TODO: Deprecated - remove
|
ConjugationViewer, // TODO: Deprecated - remove
|
||||||
Examples,
|
Examples,
|
||||||
|
|
|
@ -496,13 +496,6 @@ export type NonInflecting<T> = T & { __brand3: "non-inflecting" };
|
||||||
|
|
||||||
export type Entry = NounEntry | AdjectiveEntry | AdverbEntry | VerbEntry;
|
export type Entry = NounEntry | AdjectiveEntry | AdverbEntry | VerbEntry;
|
||||||
|
|
||||||
export type Words = {
|
|
||||||
nouns: NounEntry[],
|
|
||||||
adjectives: AdjectiveEntry[],
|
|
||||||
verbs: VerbEntry[],
|
|
||||||
adverbs: AdverbEntry[],
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: make this Rendered<VPSelectionComplete> with recursive Rendered<>
|
// TODO: make this Rendered<VPSelectionComplete> with recursive Rendered<>
|
||||||
export type VPRendered = {
|
export type VPRendered = {
|
||||||
type: "VPRendered",
|
type: "VPRendered",
|
||||||
|
|
Loading…
Reference in New Issue