chore: update pezkuwi-ui dependencies to 3.17.1

- Update @pezkuwi/react-identicon to ^3.17.1
- Update @pezkuwi/react-qr to ^3.17.1
- Update @pezkuwi/ui-keyring to ^3.17.1
- Update @pezkuwi/ui-settings to ^3.17.1

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-09 01:36:18 +03:00
parent 2a779cc25a
commit a9681f7c9f
5 changed files with 47 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM nginx:alpine
# Copy build files
COPY packages/apps/build /usr/share/nginx/html
# Copy nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
+29
View File
@@ -0,0 +1,29 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Gzip compression
gzip on;
gzip_vary on;
gzip_min_length 1024;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml application/javascript application/json;
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# SPA fallback - serve index.html for all routes
location / {
try_files $uri $uri/ /index.html;
}
# Security headers
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-XSS-Protection "1; mode=block" always;
}
+1 -1
View File
@@ -111,7 +111,7 @@
"@pezkuwi/types-create": "^16.5.6",
"@pezkuwi/types-known": "^16.5.8",
"@pezkuwi/types-support": "^16.5.6",
"@pezkuwi/ui-settings": "^3.16.9",
"@pezkuwi/ui-settings": "^3.17.1",
"@pezkuwi/util": "^14.0.7",
"@pezkuwi/util-crypto": "^14.0.7",
"@pezkuwi/wasm-crypto": "^7.5.4",
+1 -1
View File
@@ -41,7 +41,7 @@
"@pezkuwi/api": "^16.5.6",
"@pezkuwi/api-derive": "^16.5.6",
"@pezkuwi/networks": "^14.0.7",
"@pezkuwi/react-identicon": "^3.16.3",
"@pezkuwi/react-identicon": "^3.17.1",
"@pezkuwi/types": "^16.5.6",
"@pezkuwi/types-codec": "^16.5.6",
"@pezkuwi/util": "^14.0.7",
+4 -4
View File
@@ -21,11 +21,11 @@
"@fortawesome/react-fontawesome": "^0.2.0",
"@pezkuwi/keyring": "^14.0.7",
"@pezkuwi/react-api": "^0.168.2-4-x",
"@pezkuwi/react-identicon": "^3.16.3",
"@pezkuwi/react-qr": "^3.16.3",
"@pezkuwi/react-identicon": "^3.17.1",
"@pezkuwi/react-qr": "^3.17.1",
"@pezkuwi/react-query": "^0.168.2-4-x",
"@pezkuwi/ui-keyring": "^3.16.3",
"@pezkuwi/ui-settings": "^3.16.3",
"@pezkuwi/ui-keyring": "^3.17.1",
"@pezkuwi/ui-settings": "^3.17.1",
"@pezkuwi/util": "^14.0.7",
"@pezkuwi/util-crypto": "^14.0.7",
"chart.js": "^4.4.1",