cleanup Examples

This commit is contained in:
adueck 2023-02-03 00:37:50 +05:00
parent 94a9b8d607
commit b28e828f1e
5 changed files with 7 additions and 9 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "pashto-inflector",
"version": "5.7.11",
"version": "5.7.12",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "pashto-inflector",
"version": "5.7.11",
"version": "5.7.12",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "pashto-inflector",
"version": "5.7.11",
"version": "5.7.12",
"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

@ -1,6 +1,6 @@
{
"name": "@lingdocs/ps-react",
"version": "5.7.11",
"version": "5.7.12",
"description": "Pashto inflector library module with React components",
"main": "dist/components/library.js",
"module": "dist/components/library.js",

View File

@ -50,12 +50,10 @@ function Examples(props: ({
);
return Array.isArray(examples) ?
<div>
{/* @ts-ignore */}
{examples.map((example, i) => <Example key={i}>{example}</Example>)}
{examples.map((example, i) => <Example key={i}>{example as PsStringWSub}</Example>)}
</div>
:
// @ts-ignore
<Example>{examples}</Example>;
<Example>{examples as PsStringWSub}</Example>;
}
export default Examples;

View File

@ -1,6 +1,6 @@
{
"name": "@lingdocs/inflect",
"version": "5.7.11",
"version": "5.7.12",
"description": "Pashto inflector library",
"main": "dist/index.js",
"types": "dist/lib/library.d.ts",