Files
Laca-City/backend/node_modules/@noble/hashes/sha512.d.ts
PhongPham c65cc97a33 🎯 MapView v2.0 - Global Deployment Ready
 MAJOR FEATURES:
• Auto-zoom intelligence với smart bounds fitting
• Enhanced 3D GPS markers với pulsing effects
• Professional route display với 6-layer rendering
• Status-based parking icons với availability indicators
• Production-ready build optimizations

🗺️ AUTO-ZOOM FEATURES:
• Smart bounds fitting cho GPS + selected parking
• Adaptive padding (50px) cho visual balance
• Max zoom control (level 16) để tránh quá gần
• Dynamic centering khi không có selection

🎨 ENHANCED VISUALS:
• 3D GPS marker với multi-layer pulse effects
• Advanced parking icons với status colors
• Selection highlighting với animation
• Dimming system cho non-selected items

🛣️ ROUTE SYSTEM:
• OpenRouteService API integration
• Multi-layer route rendering (glow, shadow, main, animated)
• Real-time distance & duration calculation
• Visual route info trong popup

📱 PRODUCTION READY:
• SSR safe với dynamic imports
• Build errors resolved
• Global deployment via Vercel
• Optimized performance

🌍 DEPLOYMENT:
• Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app
• Bundle size: 22.8 kB optimized
• Global CDN distribution
• HTTPS enabled

💾 VERSION CONTROL:
• MapView-v2.0.tsx backup created
• MAPVIEW_VERSIONS.md documentation
• Full version history tracking
2025-07-20 19:52:16 +07:00

26 lines
1.4 KiB
TypeScript

/**
* SHA2-512 a.k.a. sha512 and sha384. It is slower than sha256 in js because u64 operations are slow.
*
* Check out [RFC 4634](https://datatracker.ietf.org/doc/html/rfc4634) and
* [the paper on truncated SHA512/256](https://eprint.iacr.org/2010/548.pdf).
* @module
* @deprecated
*/
import { SHA384 as SHA384n, sha384 as sha384n, sha512_224 as sha512_224n, SHA512_224 as SHA512_224n, sha512_256 as sha512_256n, SHA512_256 as SHA512_256n, SHA512 as SHA512n, sha512 as sha512n } from './sha2.ts';
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const SHA512: typeof SHA512n;
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const sha512: typeof sha512n;
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const SHA384: typeof SHA384n;
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const sha384: typeof sha384n;
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const SHA512_224: typeof SHA512_224n;
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const sha512_224: typeof sha512_224n;
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const SHA512_256: typeof SHA512_256n;
/** @deprecated Use import from `noble/hashes/sha2` module */
export declare const sha512_256: typeof sha512_256n;
//# sourceMappingURL=sha512.d.ts.map