update required libraries

This commit is contained in:
2020-05-23 14:43:22 +09:00
parent e96d5634ff
commit d883df0858
4 changed files with 395 additions and 378 deletions
+11 -11
View File
@@ -7,22 +7,22 @@
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@types/async-lock": "^1.1.2",
"@types/jest": "25.2.1",
"@types/jest": "25.2.3",
"@types/lokijs": "^1.5.3",
"@types/node": "13.13.4",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.7",
"@types/react-helmet": "^5.0.15",
"@types/node": "14.0.5",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/react-html-parser": "^2.0.1",
"@types/react-overlays": "^1.1.3",
"@types/react-router-dom": "^5.1.5",
"@types/react-router-hash-link": "^1.2.1",
"@types/xregexp": "^4.3.0",
"async-lock": "^1.2.2",
"async-lock": "^1.2.4",
"axios": "^0.19.2",
"lokijs": "^1.5.8",
"moment": "^2.24.0",
"rc-tree": "^3.1.6",
"moment": "^2.26.0",
"rc-tree": "^3.2.2",
"react": "^16.13.1",
"react-app-polyfill": "^1.0.6",
"react-cookie": "^4.0.3",
@@ -31,12 +31,12 @@
"react-helmet": "^6.0.0",
"react-html-parser": "^2.0.2",
"react-image-lightbox": "^5.1.1",
"react-overlays": "^3.1.3",
"react-router-dom": "^5.1.2",
"react-overlays": "^3.2.0",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^1.2.2",
"react-scripts": "3.4.1",
"react-spinner-material": "^1.3.1",
"typescript": "3.8.3",
"typescript": "3.9.3",
"xregexp": "^4.3.0"
},
"scripts": {
+2 -2
View File
@@ -36,12 +36,12 @@ const PicoCategory = (props: Props) => {
const link = '/' + name + '/' + parentCategory.link;
return (
<Fragment key={parentCategory.id}>
{idx > 0 && <>&nbsp;>&nbsp;</>}
{idx > 0 && <>&nbsp;&gt;&nbsp;</>}
<Link key={parentCategory.id} to={link}>{Functions.mlang(parentCategory.title, lang)}</Link>
</Fragment>
);
})}
{parentCategories.length > 0 && <>&nbsp;>&nbsp;</>}
{parentCategories.length > 0 && <>&nbsp;&gt;&nbsp;</>}
{Functions.mlang(category.title, lang)}
</div>
)}
+2 -2
View File
@@ -90,12 +90,12 @@ class PicoContent extends Component<Props, State> {
const link = '/' + name + '/' + category.link;
return (
<Fragment key={category.id}>
{idx > 0 && <>&nbsp;>&nbsp;</>}
{idx > 0 && <>&nbsp;&gt;&nbsp;</>}
<Link key={category.id} to={link}>{Functions.mlang(category.title, lang)}</Link>
</Fragment>
);
})}
&nbsp;>&nbsp;{Functions.mlang(page.title, lang)}
&nbsp;&gt;&nbsp;{Functions.mlang(page.title, lang)}
</div>
)}
<div id="top_of_pico_body" className="pico_body">
+380 -363
View File
File diff suppressed because it is too large Load Diff