sanity-plugin-latex-input 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +17 -2
- package/dist/sanity-plugin-latex-input.cjs.development.js +2 -7
- package/dist/sanity-plugin-latex-input.cjs.development.js.map +1 -1
- package/dist/sanity-plugin-latex-input.cjs.production.min.js.map +1 -1
- package/dist/sanity-plugin-latex-input.esm.js +2 -7
- package/dist/sanity-plugin-latex-input.esm.js.map +1 -1
- package/package.json +31 -26
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/fonts/.DS_Store +0 -0
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
# LaTeX input for Sanity
|
|
2
2
|
|
|
3
|
+
> **NOTE**
|
|
4
|
+
>
|
|
5
|
+
> This is the **Sanity Studio v2 version** of sanity-plugin-latex-input.
|
|
6
|
+
>
|
|
7
|
+
> For the v3 version, please refer to the [v3-branch](https://github.com/sanity-io/sanity-plugin-latex-input).
|
|
8
|
+
|
|
3
9
|
https://sanity.io
|
|
4
10
|
|
|
5
|
-
##
|
|
11
|
+
## Installation
|
|
6
12
|
|
|
7
13
|
```
|
|
8
|
-
|
|
14
|
+
yarn install sanity-plugin-latex-input@studio-v2
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Next, add `"latex-input"` to `sanity.json` plugins array:
|
|
18
|
+
```json
|
|
19
|
+
"plugins": [
|
|
20
|
+
"latex-input"
|
|
21
|
+
]
|
|
9
22
|
```
|
|
10
23
|
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
11
26
|
You may now use the type name `latex` in your schema, such as in portable text.
|
|
12
27
|
|
|
13
28
|
## Example schema definition for portable text
|
|
@@ -12,20 +12,16 @@ require('katex/dist/katex.min.css?raw');
|
|
|
12
12
|
var LatexPreview = function LatexPreview(props) {
|
|
13
13
|
var latex = props.value && props.value.body || '';
|
|
14
14
|
var isInline = props.layout === 'inline';
|
|
15
|
-
|
|
16
15
|
var _useState = React.useState(''),
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
html = _useState[0],
|
|
17
|
+
setHtml = _useState[1];
|
|
20
18
|
var createHtml = function createHtml() {
|
|
21
19
|
setHtml(KaTeX.renderToString(latex, {
|
|
22
20
|
displayMode: !isInline,
|
|
23
21
|
throwOnError: false
|
|
24
22
|
}));
|
|
25
23
|
};
|
|
26
|
-
|
|
27
24
|
React.useMemo(createHtml, [latex, isInline]);
|
|
28
|
-
|
|
29
25
|
if (isInline) {
|
|
30
26
|
return React__default.createElement("span", {
|
|
31
27
|
dangerouslySetInnerHTML: {
|
|
@@ -33,7 +29,6 @@ var LatexPreview = function LatexPreview(props) {
|
|
|
33
29
|
}
|
|
34
30
|
});
|
|
35
31
|
}
|
|
36
|
-
|
|
37
32
|
return React__default.createElement("div", {
|
|
38
33
|
dangerouslySetInnerHTML: {
|
|
39
34
|
__html: html
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sanity-plugin-latex-input.cjs.development.js","sources":["../src/components/LatexPreview.tsx","../src/index.tsx"],"sourcesContent":["import React, { useState, useMemo } from 'react';\nimport KaTeX from 'katex';\nimport 'katex/dist/katex.min.css?raw';\n\ntype SchemaDefinition = {\n body?: string;\n};\n\ntype PreviewProps = {\n value?: SchemaDefinition;\n layout?: string;\n};\n\nconst LatexPreview = (props: PreviewProps) => {\n const latex = (props.value && props.value.body) || '';\n const isInline = props.layout === 'inline';\n const [html, setHtml] = useState<string>('');\n const createHtml = () => {\n setHtml(\n KaTeX.renderToString(latex, {\n displayMode: !isInline,\n throwOnError: false,\n })\n );\n };\n\n useMemo(createHtml, [latex, isInline]);\n if (isInline) {\n return <span dangerouslySetInnerHTML={{ __html: html }} />;\n }\n return <div dangerouslySetInnerHTML={{ __html: html }} />;\n};\n\nexport default LatexPreview;\n","import LatexPreview from './components/LatexPreview';\n\nexport default {\n name: 'latex',\n type: 'object',\n fields: [\n {\n title: 'LaTeX content',\n name: 'body',\n type: 'text',\n },\n ],\n preview: {\n select: {\n body: 'body',\n },\n prepare(selection: object) {\n return selection;\n },\n component: LatexPreview,\n },\n};\n"],"names":["LatexPreview","props","latex","value","body","isInline","layout","useState","html","setHtml","createHtml","KaTeX","renderToString","displayMode","throwOnError","useMemo","React","dangerouslySetInnerHTML","__html","name","type","fields","title","preview","select","prepare","selection","component"],"mappings":";;;;;;;;;;;AAaA,IAAMA,YAAY,GAAG,SAAfA,
|
|
1
|
+
{"version":3,"file":"sanity-plugin-latex-input.cjs.development.js","sources":["../src/components/LatexPreview.tsx","../src/index.tsx"],"sourcesContent":["import React, { useState, useMemo } from 'react';\nimport KaTeX from 'katex';\nimport 'katex/dist/katex.min.css?raw';\n\ntype SchemaDefinition = {\n body?: string;\n};\n\ntype PreviewProps = {\n value?: SchemaDefinition;\n layout?: string;\n};\n\nconst LatexPreview = (props: PreviewProps) => {\n const latex = (props.value && props.value.body) || '';\n const isInline = props.layout === 'inline';\n const [html, setHtml] = useState<string>('');\n const createHtml = () => {\n setHtml(\n KaTeX.renderToString(latex, {\n displayMode: !isInline,\n throwOnError: false,\n })\n );\n };\n\n useMemo(createHtml, [latex, isInline]);\n if (isInline) {\n return <span dangerouslySetInnerHTML={{ __html: html }} />;\n }\n return <div dangerouslySetInnerHTML={{ __html: html }} />;\n};\n\nexport default LatexPreview;\n","import LatexPreview from './components/LatexPreview';\n\nexport default {\n name: 'latex',\n type: 'object',\n fields: [\n {\n title: 'LaTeX content',\n name: 'body',\n type: 'text',\n },\n ],\n preview: {\n select: {\n body: 'body',\n },\n prepare(selection: object) {\n return selection;\n },\n component: LatexPreview,\n },\n};\n"],"names":["LatexPreview","props","latex","value","body","isInline","layout","useState","html","setHtml","createHtml","KaTeX","renderToString","displayMode","throwOnError","useMemo","React","dangerouslySetInnerHTML","__html","name","type","fields","title","preview","select","prepare","selection","component"],"mappings":";;;;;;;;;;;AAaA,IAAMA,YAAY,GAAG,SAAfA,YAAY,CAAIC,KAAmB;EACvC,IAAMC,KAAK,GAAID,KAAK,CAACE,KAAK,IAAIF,KAAK,CAACE,KAAK,CAACC,IAAI,IAAK,EAAE;EACrD,IAAMC,QAAQ,GAAGJ,KAAK,CAACK,MAAM,KAAK,QAAQ;EAC1C,gBAAwBC,cAAQ,CAAS,EAAE,CAAC;IAArCC,IAAI;IAAEC,OAAO;EACpB,IAAMC,UAAU,GAAG,SAAbA,UAAU;IACdD,OAAO,CACLE,KAAK,CAACC,cAAc,CAACV,KAAK,EAAE;MAC1BW,WAAW,EAAE,CAACR,QAAQ;MACtBS,YAAY,EAAE;KACf,CAAC,CACH;GACF;EAEDC,aAAO,CAACL,UAAU,EAAE,CAACR,KAAK,EAAEG,QAAQ,CAAC,CAAC;EACtC,IAAIA,QAAQ,EAAE;IACZ,OAAOW;MAAMC,uBAAuB,EAAE;QAAEC,MAAM,EAAEV;;MAAU;;EAE5D,OAAOQ;IAAKC,uBAAuB,EAAE;MAAEC,MAAM,EAAEV;;IAAU;AAC3D,CAAC;;AC7BD,YAAe;EACbW,IAAI,EAAE,OAAO;EACbC,IAAI,EAAE,QAAQ;EACdC,MAAM,EAAE,CACN;IACEC,KAAK,EAAE,eAAe;IACtBH,IAAI,EAAE,MAAM;IACZC,IAAI,EAAE;GACP,CACF;EACDG,OAAO,EAAE;IACPC,MAAM,EAAE;MACNpB,IAAI,EAAE;KACP;IACDqB,OAAO,mBAACC,SAAiB;MACvB,OAAOA,SAAS;KACjB;IACDC,SAAS,EAAE3B;;CAEd;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sanity-plugin-latex-input.cjs.production.min.js","sources":["../src/index.tsx","../src/components/LatexPreview.tsx"],"sourcesContent":["import LatexPreview from './components/LatexPreview';\n\nexport default {\n name: 'latex',\n type: 'object',\n fields: [\n {\n title: 'LaTeX content',\n name: 'body',\n type: 'text',\n },\n ],\n preview: {\n select: {\n body: 'body',\n },\n prepare(selection: object) {\n return selection;\n },\n component: LatexPreview,\n },\n};\n","import React, { useState, useMemo } from 'react';\nimport KaTeX from 'katex';\nimport 'katex/dist/katex.min.css?raw';\n\ntype SchemaDefinition = {\n body?: string;\n};\n\ntype PreviewProps = {\n value?: SchemaDefinition;\n layout?: string;\n};\n\nconst LatexPreview = (props: PreviewProps) => {\n const latex = (props.value && props.value.body) || '';\n const isInline = props.layout === 'inline';\n const [html, setHtml] = useState<string>('');\n const createHtml = () => {\n setHtml(\n KaTeX.renderToString(latex, {\n displayMode: !isInline,\n throwOnError: false,\n })\n );\n };\n\n useMemo(createHtml, [latex, isInline]);\n if (isInline) {\n return <span dangerouslySetInnerHTML={{ __html: html }} />;\n }\n return <div dangerouslySetInnerHTML={{ __html: html }} />;\n};\n\nexport default LatexPreview;\n"],"names":["name","type","fields","title","preview","select","body","prepare","selection","component","props","latex","value","isInline","layout","useState","html","setHtml","useMemo","KaTeX","renderToString","displayMode","throwOnError","React","dangerouslySetInnerHTML","__html"],"mappings":"sPAEe,CACbA,KAAM,QACNC,KAAM,SACNC,OAAQ,CACN,CACEC,MAAO,gBACPH,KAAM,OACNC,KAAM,SAGVG,QAAS,CACPC,OAAQ,CACNC,KAAM,QAERC,iBAAQC,
|
|
1
|
+
{"version":3,"file":"sanity-plugin-latex-input.cjs.production.min.js","sources":["../src/index.tsx","../src/components/LatexPreview.tsx"],"sourcesContent":["import LatexPreview from './components/LatexPreview';\n\nexport default {\n name: 'latex',\n type: 'object',\n fields: [\n {\n title: 'LaTeX content',\n name: 'body',\n type: 'text',\n },\n ],\n preview: {\n select: {\n body: 'body',\n },\n prepare(selection: object) {\n return selection;\n },\n component: LatexPreview,\n },\n};\n","import React, { useState, useMemo } from 'react';\nimport KaTeX from 'katex';\nimport 'katex/dist/katex.min.css?raw';\n\ntype SchemaDefinition = {\n body?: string;\n};\n\ntype PreviewProps = {\n value?: SchemaDefinition;\n layout?: string;\n};\n\nconst LatexPreview = (props: PreviewProps) => {\n const latex = (props.value && props.value.body) || '';\n const isInline = props.layout === 'inline';\n const [html, setHtml] = useState<string>('');\n const createHtml = () => {\n setHtml(\n KaTeX.renderToString(latex, {\n displayMode: !isInline,\n throwOnError: false,\n })\n );\n };\n\n useMemo(createHtml, [latex, isInline]);\n if (isInline) {\n return <span dangerouslySetInnerHTML={{ __html: html }} />;\n }\n return <div dangerouslySetInnerHTML={{ __html: html }} />;\n};\n\nexport default LatexPreview;\n"],"names":["name","type","fields","title","preview","select","body","prepare","selection","component","props","latex","value","isInline","layout","useState","html","setHtml","useMemo","KaTeX","renderToString","displayMode","throwOnError","React","dangerouslySetInnerHTML","__html"],"mappings":"sPAEe,CACbA,KAAM,QACNC,KAAM,SACNC,OAAQ,CACN,CACEC,MAAO,gBACPH,KAAM,OACNC,KAAM,SAGVG,QAAS,CACPC,OAAQ,CACNC,KAAM,QAERC,iBAAQC,GACN,OAAOA,GAETC,UCNiB,SAACC,GACpB,IAAMC,EAASD,EAAME,OAASF,EAAME,MAAMN,MAAS,GAC7CO,EAA4B,WAAjBH,EAAMI,SACCC,WAAiB,IAAlCC,OAAMC,OAWb,OADAC,WATmB,WACjBD,EACEE,EAAMC,eAAeT,EAAO,CAC1BU,aAAcR,EACdS,cAAc,OAKA,CAACX,EAAOE,IAEnBU,gBADLV,gBACWW,wBAAyB,CAAEC,OAAQT"}
|
|
@@ -5,20 +5,16 @@ import 'katex/dist/katex.min.css?raw';
|
|
|
5
5
|
var LatexPreview = function LatexPreview(props) {
|
|
6
6
|
var latex = props.value && props.value.body || '';
|
|
7
7
|
var isInline = props.layout === 'inline';
|
|
8
|
-
|
|
9
8
|
var _useState = useState(''),
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
html = _useState[0],
|
|
10
|
+
setHtml = _useState[1];
|
|
13
11
|
var createHtml = function createHtml() {
|
|
14
12
|
setHtml(KaTeX.renderToString(latex, {
|
|
15
13
|
displayMode: !isInline,
|
|
16
14
|
throwOnError: false
|
|
17
15
|
}));
|
|
18
16
|
};
|
|
19
|
-
|
|
20
17
|
useMemo(createHtml, [latex, isInline]);
|
|
21
|
-
|
|
22
18
|
if (isInline) {
|
|
23
19
|
return React.createElement("span", {
|
|
24
20
|
dangerouslySetInnerHTML: {
|
|
@@ -26,7 +22,6 @@ var LatexPreview = function LatexPreview(props) {
|
|
|
26
22
|
}
|
|
27
23
|
});
|
|
28
24
|
}
|
|
29
|
-
|
|
30
25
|
return React.createElement("div", {
|
|
31
26
|
dangerouslySetInnerHTML: {
|
|
32
27
|
__html: html
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sanity-plugin-latex-input.esm.js","sources":["../src/components/LatexPreview.tsx","../src/index.tsx"],"sourcesContent":["import React, { useState, useMemo } from 'react';\nimport KaTeX from 'katex';\nimport 'katex/dist/katex.min.css?raw';\n\ntype SchemaDefinition = {\n body?: string;\n};\n\ntype PreviewProps = {\n value?: SchemaDefinition;\n layout?: string;\n};\n\nconst LatexPreview = (props: PreviewProps) => {\n const latex = (props.value && props.value.body) || '';\n const isInline = props.layout === 'inline';\n const [html, setHtml] = useState<string>('');\n const createHtml = () => {\n setHtml(\n KaTeX.renderToString(latex, {\n displayMode: !isInline,\n throwOnError: false,\n })\n );\n };\n\n useMemo(createHtml, [latex, isInline]);\n if (isInline) {\n return <span dangerouslySetInnerHTML={{ __html: html }} />;\n }\n return <div dangerouslySetInnerHTML={{ __html: html }} />;\n};\n\nexport default LatexPreview;\n","import LatexPreview from './components/LatexPreview';\n\nexport default {\n name: 'latex',\n type: 'object',\n fields: [\n {\n title: 'LaTeX content',\n name: 'body',\n type: 'text',\n },\n ],\n preview: {\n select: {\n body: 'body',\n },\n prepare(selection: object) {\n return selection;\n },\n component: LatexPreview,\n },\n};\n"],"names":["LatexPreview","props","latex","value","body","isInline","layout","useState","html","setHtml","createHtml","KaTeX","renderToString","displayMode","throwOnError","useMemo","React","dangerouslySetInnerHTML","__html","name","type","fields","title","preview","select","prepare","selection","component"],"mappings":";;;;AAaA,IAAMA,YAAY,GAAG,SAAfA,
|
|
1
|
+
{"version":3,"file":"sanity-plugin-latex-input.esm.js","sources":["../src/components/LatexPreview.tsx","../src/index.tsx"],"sourcesContent":["import React, { useState, useMemo } from 'react';\nimport KaTeX from 'katex';\nimport 'katex/dist/katex.min.css?raw';\n\ntype SchemaDefinition = {\n body?: string;\n};\n\ntype PreviewProps = {\n value?: SchemaDefinition;\n layout?: string;\n};\n\nconst LatexPreview = (props: PreviewProps) => {\n const latex = (props.value && props.value.body) || '';\n const isInline = props.layout === 'inline';\n const [html, setHtml] = useState<string>('');\n const createHtml = () => {\n setHtml(\n KaTeX.renderToString(latex, {\n displayMode: !isInline,\n throwOnError: false,\n })\n );\n };\n\n useMemo(createHtml, [latex, isInline]);\n if (isInline) {\n return <span dangerouslySetInnerHTML={{ __html: html }} />;\n }\n return <div dangerouslySetInnerHTML={{ __html: html }} />;\n};\n\nexport default LatexPreview;\n","import LatexPreview from './components/LatexPreview';\n\nexport default {\n name: 'latex',\n type: 'object',\n fields: [\n {\n title: 'LaTeX content',\n name: 'body',\n type: 'text',\n },\n ],\n preview: {\n select: {\n body: 'body',\n },\n prepare(selection: object) {\n return selection;\n },\n component: LatexPreview,\n },\n};\n"],"names":["LatexPreview","props","latex","value","body","isInline","layout","useState","html","setHtml","createHtml","KaTeX","renderToString","displayMode","throwOnError","useMemo","React","dangerouslySetInnerHTML","__html","name","type","fields","title","preview","select","prepare","selection","component"],"mappings":";;;;AAaA,IAAMA,YAAY,GAAG,SAAfA,YAAY,CAAIC,KAAmB;EACvC,IAAMC,KAAK,GAAID,KAAK,CAACE,KAAK,IAAIF,KAAK,CAACE,KAAK,CAACC,IAAI,IAAK,EAAE;EACrD,IAAMC,QAAQ,GAAGJ,KAAK,CAACK,MAAM,KAAK,QAAQ;EAC1C,gBAAwBC,QAAQ,CAAS,EAAE,CAAC;IAArCC,IAAI;IAAEC,OAAO;EACpB,IAAMC,UAAU,GAAG,SAAbA,UAAU;IACdD,OAAO,CACLE,KAAK,CAACC,cAAc,CAACV,KAAK,EAAE;MAC1BW,WAAW,EAAE,CAACR,QAAQ;MACtBS,YAAY,EAAE;KACf,CAAC,CACH;GACF;EAEDC,OAAO,CAACL,UAAU,EAAE,CAACR,KAAK,EAAEG,QAAQ,CAAC,CAAC;EACtC,IAAIA,QAAQ,EAAE;IACZ,OAAOW;MAAMC,uBAAuB,EAAE;QAAEC,MAAM,EAAEV;;MAAU;;EAE5D,OAAOQ;IAAKC,uBAAuB,EAAE;MAAEC,MAAM,EAAEV;;IAAU;AAC3D,CAAC;;AC7BD,YAAe;EACbW,IAAI,EAAE,OAAO;EACbC,IAAI,EAAE,QAAQ;EACdC,MAAM,EAAE,CACN;IACEC,KAAK,EAAE,eAAe;IACtBH,IAAI,EAAE,MAAM;IACZC,IAAI,EAAE;GACP,CACF;EACDG,OAAO,EAAE;IACPC,MAAM,EAAE;MACNpB,IAAI,EAAE;KACP;IACDqB,OAAO,mBAACC,SAAiB;MACvB,OAAOA,SAAS;KACjB;IACDC,SAAS,EAAE3B;;CAEd;;;;"}
|
package/package.json
CHANGED
|
@@ -1,25 +1,32 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"name": "sanity-plugin-latex-input",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"sanity",
|
|
6
|
+
"plugin",
|
|
7
|
+
"latex"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/sanity-io/latex-input#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/sanity-io/latex-input"
|
|
12
|
+
},
|
|
3
13
|
"license": "MIT",
|
|
14
|
+
"author": "Sanity.io <hello@sanity.io>",
|
|
4
15
|
"main": "dist/index.js",
|
|
16
|
+
"module": "dist/sanity-plugin-latex-input.esm.js",
|
|
5
17
|
"typings": "dist/index.d.ts",
|
|
6
18
|
"files": [
|
|
7
19
|
"dist",
|
|
8
20
|
"src",
|
|
9
21
|
"sanity.json"
|
|
10
22
|
],
|
|
11
|
-
"engines": {
|
|
12
|
-
"node": ">=10"
|
|
13
|
-
},
|
|
14
23
|
"scripts": {
|
|
15
|
-
"start": "tsdx watch",
|
|
16
24
|
"build": "tsdx build",
|
|
17
|
-
"
|
|
18
|
-
"lint": "
|
|
19
|
-
"prepare": "tsdx build"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"react": ">=16"
|
|
25
|
+
"__lint": "tsdx lint",
|
|
26
|
+
"lint": "echo quckfix-disabled",
|
|
27
|
+
"prepare": "tsdx build",
|
|
28
|
+
"start": "tsdx watch",
|
|
29
|
+
"test": "tsdx test --passWithNoTests"
|
|
23
30
|
},
|
|
24
31
|
"husky": {
|
|
25
32
|
"hooks": {
|
|
@@ -32,30 +39,28 @@
|
|
|
32
39
|
"singleQuote": true,
|
|
33
40
|
"trailingComma": "es5"
|
|
34
41
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"url": "https://github.com/sanity-io/latex-input"
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@types/katex": "^0.11.0",
|
|
44
|
+
"katex": "^0.11.1"
|
|
39
45
|
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"sanity",
|
|
42
|
-
"plugin",
|
|
43
|
-
"latex"
|
|
44
|
-
],
|
|
45
|
-
"homepage": "https://github.com/sanity-io/latex-input#readme",
|
|
46
|
-
"module": "dist/sanity-plugin-latex-input.esm.js",
|
|
47
46
|
"devDependencies": {
|
|
47
|
+
"@commitlint/cli": "^17.2.0",
|
|
48
|
+
"@commitlint/config-conventional": "^17.2.0",
|
|
49
|
+
"@sanity/semantic-release-preset": "^2.0.2",
|
|
48
50
|
"@types/react": "^16.9.34",
|
|
49
51
|
"@types/react-dom": "^16.9.7",
|
|
50
52
|
"husky": "^4.2.5",
|
|
53
|
+
"prettier": "^2.7.1",
|
|
51
54
|
"react": "^16.13.1",
|
|
52
55
|
"react-dom": "^16.13.1",
|
|
53
|
-
"tsdx": "^0.
|
|
56
|
+
"tsdx": "^0.14.1",
|
|
54
57
|
"tslib": "^1.11.2",
|
|
55
58
|
"typescript": "^3.8.3"
|
|
56
59
|
},
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"react": ">=16"
|
|
62
|
+
},
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=10"
|
|
60
65
|
}
|
|
61
66
|
}
|
package/src/.DS_Store
DELETED
|
Binary file
|
package/src/components/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|