mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-16 15:21:48 +03:00
Upgrade deps, fix warnings
This commit is contained in:
parent
27b0813e49
commit
ac14e61b6d
3 changed files with 398 additions and 367 deletions
747
package-lock.json
generated
747
package-lock.json
generated
File diff suppressed because it is too large
Load diff
14
package.json
14
package.json
|
@ -12,11 +12,11 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@formatjs/intl-localematcher": "~0.4.2",
|
"@formatjs/intl-localematcher": "~0.4.2",
|
||||||
"@github/text-expander-element": "~2.5.0",
|
"@github/text-expander-element": "~2.5.0",
|
||||||
"@iconify-icons/mingcute": "~1.2.7",
|
"@iconify-icons/mingcute": "~1.2.8",
|
||||||
"@justinribeiro/lite-youtube": "~1.5.0",
|
"@justinribeiro/lite-youtube": "~1.5.0",
|
||||||
"@szhsin/react-menu": "~4.0.3",
|
"@szhsin/react-menu": "~4.0.3",
|
||||||
"@uidotdev/usehooks": "~2.2.0",
|
"@uidotdev/usehooks": "~2.3.1",
|
||||||
"dayjs": "~1.11.9",
|
"dayjs": "~1.11.10",
|
||||||
"dayjs-twitter": "~0.5.0",
|
"dayjs-twitter": "~0.5.0",
|
||||||
"fast-blurhash": "~1.1.2",
|
"fast-blurhash": "~1.1.2",
|
||||||
"fast-deep-equal": "~3.1.3",
|
"fast-deep-equal": "~3.1.3",
|
||||||
|
@ -25,9 +25,9 @@
|
||||||
"lz-string": "~1.5.0",
|
"lz-string": "~1.5.0",
|
||||||
"masto": "~5.11.4",
|
"masto": "~5.11.4",
|
||||||
"mem": "~9.0.2",
|
"mem": "~9.0.2",
|
||||||
"p-retry": "~6.0.0",
|
"p-retry": "~6.1.0",
|
||||||
"p-throttle": "~5.1.0",
|
"p-throttle": "~5.1.0",
|
||||||
"preact": "~10.17.1",
|
"preact": "~10.18.0",
|
||||||
"react-hotkeys-hook": "~4.4.1",
|
"react-hotkeys-hook": "~4.4.1",
|
||||||
"react-intersection-observer": "~9.5.2",
|
"react-intersection-observer": "~9.5.2",
|
||||||
"react-quick-pinch-zoom": "~4.9.0",
|
"react-quick-pinch-zoom": "~4.9.0",
|
||||||
|
@ -44,9 +44,9 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@preact/preset-vite": "~2.5.0",
|
"@preact/preset-vite": "~2.5.0",
|
||||||
"@trivago/prettier-plugin-sort-imports": "~4.2.0",
|
"@trivago/prettier-plugin-sort-imports": "~4.2.0",
|
||||||
"postcss": "~8.4.29",
|
"postcss": "~8.4.31",
|
||||||
"postcss-dark-theme-class": "~1.0.0",
|
"postcss-dark-theme-class": "~1.0.0",
|
||||||
"postcss-preset-env": "~9.1.3",
|
"postcss-preset-env": "~9.1.4",
|
||||||
"twitter-text": "~3.1.0",
|
"twitter-text": "~3.1.0",
|
||||||
"vite": "~4.4.9",
|
"vite": "~4.4.9",
|
||||||
"vite-plugin-generate-file": "~0.0.4",
|
"vite-plugin-generate-file": "~0.0.4",
|
||||||
|
|
|
@ -125,7 +125,7 @@ function Icon({
|
||||||
}, [iconBlock]);
|
}, [iconBlock]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<span
|
||||||
class={`icon ${className}`}
|
class={`icon ${className}`}
|
||||||
title={title || alt}
|
title={title || alt}
|
||||||
style={{
|
style={{
|
||||||
|
@ -150,7 +150,7 @@ function Icon({
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue