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