exports
This commit is contained in:
parent
f17ebddaa1
commit
4597ea1489
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "pashto-inflector-website",
|
||||
"version": "7.7.3",
|
||||
"version": "7.7.4",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"patch": "npm version patch --no-git-tag-version && cd src/lib && npm version patch --no-git-tag-version && cd ../components && npm version patch --no-git-tag-version",
|
||||
|
|
|
@ -13,7 +13,7 @@ import useStickyState from "./src/useStickyState";
|
|||
import NPPicker from "./src/block-pickers/NPPicker";
|
||||
import SandwichPicker from "./src/block-pickers/SandwichPicker";
|
||||
import VerbFromDisplay from "./src/VerbFormDisplay";
|
||||
import Block from "./src/blocks/Block";
|
||||
import Block, { NPBlock, APBlock } from "./src/blocks/Block";
|
||||
import VerbInfo, { RootsAndStems } from "./src/verb-info/VerbInfo";
|
||||
import VPExplorer from "./src/vp-explorer/VPExplorer";
|
||||
import EPExplorer from "./src/ep-explorer/EPExplorer";
|
||||
|
@ -25,7 +25,9 @@ import { makeVPSelectionState } from "../lib/src/phrase-building/verb-selection"
|
|||
|
||||
import APPicker from "./src/block-pickers/APPicker";
|
||||
import VPDisplay from "./src/vp-explorer/VPDisplay";
|
||||
import EPDisplay from "./src/ep-explorer/EPDisplay";
|
||||
import VPPicker from "./src/vp-explorer/VPPicker";
|
||||
import EPPicker from "./src/ep-explorer/EPPicker";
|
||||
import NPDisplay from "./src/vp-explorer/NPDisplay";
|
||||
import HumanReadableInflectionPattern from "./src/tables/HumanReadableInflectionPattern";
|
||||
import { psJSXMap } from "./src/text-display/jsx-map";
|
||||
|
@ -58,6 +60,8 @@ export {
|
|||
|
||||
// blocks
|
||||
Block,
|
||||
NPBlock,
|
||||
APBlock,
|
||||
|
||||
// misc
|
||||
Hider,
|
||||
|
@ -73,7 +77,9 @@ export {
|
|||
makeVPSelectionState,
|
||||
RootsAndStems,
|
||||
VPDisplay,
|
||||
EPDisplay,
|
||||
VPPicker,
|
||||
EPPicker,
|
||||
NPDisplay,
|
||||
HumanReadableInflectionPattern,
|
||||
psJSXMap,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lingdocs/ps-react",
|
||||
"version": "7.7.3",
|
||||
"version": "7.7.4",
|
||||
"description": "Pashto inflector library module with React components",
|
||||
"main": "dist/components/library.js",
|
||||
"module": "dist/components/library.js",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lingdocs/inflect",
|
||||
"version": "7.7.3",
|
||||
"version": "7.7.4",
|
||||
"description": "Pashto inflector library",
|
||||
"main": "dist/lib/library.cjs",
|
||||
"module": "dist/lib/library.js",
|
||||
|
|
Loading…
Reference in New Issue