@akinon/projectzero 1.32.0 → 1.33.0
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/CHANGELOG.md +6 -0
- package/app-template/.editorconfig +7 -0
- package/app-template/.env.example +9 -0
- package/app-template/.eslintignore +1 -0
- package/app-template/.eslintrc.js +31 -0
- package/app-template/.gitattributes +18 -0
- package/app-template/.husky/pre-commit +4 -0
- package/app-template/.lintstagedrc.js +12 -0
- package/app-template/.prettierrc +13 -0
- package/app-template/.releaserc.json +49 -0
- package/app-template/.stylelintrc.json +37 -0
- package/app-template/.vscode/extensions.json +11 -0
- package/app-template/.vscode/launch.json +29 -0
- package/app-template/.yarnrc +1 -0
- package/app-template/CHANGELOG.md +636 -0
- package/app-template/LICENSE +21 -0
- package/app-template/Procfile +1 -0
- package/app-template/README.md +29 -0
- package/app-template/akinon.json +28 -0
- package/app-template/bitbucket-pipelines.yml +54 -0
- package/app-template/build.sh +7 -0
- package/app-template/docs/CHANGELOG.md +85 -0
- package/app-template/docs/advanced-usage.md +43 -0
- package/app-template/docs/basic-setup.md +59 -0
- package/app-template/docs/data-fetching/client/account.md +1064 -0
- package/app-template/docs/data-fetching/client/address.md +805 -0
- package/app-template/docs/data-fetching/client/basket.md +107 -0
- package/app-template/docs/data-fetching/client/checkout.md +904 -0
- package/app-template/docs/data-fetching/client/misc.md +135 -0
- package/app-template/docs/data-fetching/client/product.md +284 -0
- package/app-template/docs/data-fetching/client/user.md +56 -0
- package/app-template/docs/data-fetching/client/wishlist.md +111 -0
- package/app-template/docs/data-fetching/server/category.md +324 -0
- package/app-template/docs/data-fetching/server/flat-page.md +42 -0
- package/app-template/docs/data-fetching/server/list.md +353 -0
- package/app-template/docs/data-fetching/server/menu.md +363 -0
- package/app-template/docs/data-fetching/server/product.md +131 -0
- package/app-template/docs/data-fetching/server/seo.md +44 -0
- package/app-template/docs/data-fetching/server/special-page.md +79 -0
- package/app-template/docs/data-fetching/server/widget.md +218 -0
- package/app-template/docs/delete-account.md +25 -0
- package/app-template/docs/deployment.md +46 -0
- package/app-template/docs/dynamic-route.md +33 -0
- package/app-template/docs/icons.md +52 -0
- package/app-template/docs/localization.md +204 -0
- package/app-template/docs/logging.md +48 -0
- package/app-template/docs/plugins.md +76 -0
- package/app-template/docs/seo-management.md +125 -0
- package/app-template/docs/static-assets.md +36 -0
- package/app-template/docs/widgets.md +127 -0
- package/app-template/global.d.ts +1 -0
- package/app-template/jest.config.ts +34 -0
- package/app-template/next-env.d.ts +6 -0
- package/app-template/next.config.mjs +34 -0
- package/app-template/package.json +97 -0
- package/app-template/plugins.d.ts +1 -0
- package/app-template/postcss.config.js +6 -0
- package/app-template/public/404.png +0 -0
- package/app-template/public/500.png +0 -0
- package/app-template/public/apple-splash-1125-2436.jpg +0 -0
- package/app-template/public/apple-splash-1136-640.jpg +0 -0
- package/app-template/public/apple-splash-1170-2532.jpg +0 -0
- package/app-template/public/apple-splash-1242-2208.jpg +0 -0
- package/app-template/public/apple-splash-1242-2688.jpg +0 -0
- package/app-template/public/apple-splash-1284-2778.jpg +0 -0
- package/app-template/public/apple-splash-1334-750.jpg +0 -0
- package/app-template/public/apple-splash-1536-2048.jpg +0 -0
- package/app-template/public/apple-splash-1620-2160.jpg +0 -0
- package/app-template/public/apple-splash-1668-2224.jpg +0 -0
- package/app-template/public/apple-splash-1668-2388.jpg +0 -0
- package/app-template/public/apple-splash-1792-828.jpg +0 -0
- package/app-template/public/apple-splash-2048-1536.jpg +0 -0
- package/app-template/public/apple-splash-2048-2732.jpg +0 -0
- package/app-template/public/apple-splash-2160-1620.jpg +0 -0
- package/app-template/public/apple-splash-2208-1242.jpg +0 -0
- package/app-template/public/apple-splash-2224-1668.jpg +0 -0
- package/app-template/public/apple-splash-2388-1668.jpg +0 -0
- package/app-template/public/apple-splash-2436-1125.jpg +0 -0
- package/app-template/public/apple-splash-2532-1170.jpg +0 -0
- package/app-template/public/apple-splash-2688-1242.jpg +0 -0
- package/app-template/public/apple-splash-2732-2048.jpg +0 -0
- package/app-template/public/apple-splash-2778-1284.jpg +0 -0
- package/app-template/public/apple-splash-640-1136.jpg +0 -0
- package/app-template/public/apple-splash-750-1334.jpg +0 -0
- package/app-template/public/apple-splash-828-1792.jpg +0 -0
- package/app-template/public/apple-touch-icon-152x152.png +0 -0
- package/app-template/public/apple-touch-icon-167x167.png +0 -0
- package/app-template/public/apple-touch-icon-180x180.png +0 -0
- package/app-template/public/apple-touch-icon.png +0 -0
- package/app-template/public/apple.svg +47 -0
- package/app-template/public/cvv.jpg +0 -0
- package/app-template/public/facebook.svg +3 -0
- package/app-template/public/google.svg +12 -0
- package/app-template/public/icon-192x192.png +0 -0
- package/app-template/public/icon-256x256.png +0 -0
- package/app-template/public/icon-384x384.png +0 -0
- package/app-template/public/icon-512x512.png +0 -0
- package/app-template/public/icon-sprite.svg +528 -0
- package/app-template/public/locales/en/account.json +490 -0
- package/app-template/public/locales/en/auth.json +100 -0
- package/app-template/public/locales/en/basket.json +50 -0
- package/app-template/public/locales/en/category.json +26 -0
- package/app-template/public/locales/en/checkout.json +152 -0
- package/app-template/public/locales/en/common.json +65 -0
- package/app-template/public/locales/en/forgot_password.json +41 -0
- package/app-template/public/locales/en/form.json +5 -0
- package/app-template/public/locales/en/product.json +39 -0
- package/app-template/public/locales/tr/account.json +490 -0
- package/app-template/public/locales/tr/auth.json +100 -0
- package/app-template/public/locales/tr/basket.json +50 -0
- package/app-template/public/locales/tr/category.json +26 -0
- package/app-template/public/locales/tr/checkout.json +152 -0
- package/app-template/public/locales/tr/common.json +65 -0
- package/app-template/public/locales/tr/forgot_password.json +41 -0
- package/app-template/public/locales/tr/form.json +5 -0
- package/app-template/public/locales/tr/product.json +39 -0
- package/app-template/public/logo.svg +29 -0
- package/app-template/public/manifest.json +35 -0
- package/app-template/public/mastercard.png +0 -0
- package/app-template/public/mastersecure.png +0 -0
- package/app-template/public/mfs-client.min.js +3 -0
- package/app-template/public/noimage.jpg +0 -0
- package/app-template/public/safari-pinned-tab.svg +320 -0
- package/app-template/public/ssl-secure.png +0 -0
- package/app-template/public/vbv.png +0 -0
- package/app-template/public/visa.png +0 -0
- package/app-template/public/zepto.min.js +2 -0
- package/app-template/sentry.client.config.ts +16 -0
- package/app-template/sentry.edge.config.ts +3 -0
- package/app-template/sentry.properties +4 -0
- package/app-template/sentry.server.config.ts +3 -0
- package/app-template/setupTests.ts +4 -0
- package/app-template/src/__tests__/index.test.tsx +7 -0
- package/app-template/src/__tests__/tsconfig.json +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +74 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-email/page.tsx +174 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-password/page.tsx +206 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/contact/page.tsx +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +210 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/email-verification/page.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/faq/page.tsx +23 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/favourite-products/page.tsx +32 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/layout.tsx +28 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/my-quotations/page.tsx +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/cancellation/page.tsx +255 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/layout.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/page.tsx +309 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/page.tsx +137 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/page.tsx +226 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +399 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/address/stores/page.tsx +271 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/anonymous-tracking/page.tsx +33 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/auth/oauth-login/page.tsx +3 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/auth/page.tsx +76 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +77 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/basket-b2b/page.tsx +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/loading.tsx +53 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +16 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/client-root.tsx +9 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/contact-us/page.tsx +11 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/error.tsx +20 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/loading.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +18 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/forms/[pk]/generate/page.tsx +48 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/loading.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +72 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/loading.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +23 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/layout.tsx +78 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/list/loading.tsx +53 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/list/page.tsx +16 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx +140 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/layout.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +284 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/page.tsx +50 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +81 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/loading.tsx +53 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +25 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/template.tsx +75 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/email-set-primary/[[...id]]/page.tsx +43 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/password/reset/page.tsx +79 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/registration/account-confirm-email/[[...id]]/page.tsx +43 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/reset/[[...id]]/page.tsx +110 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/[node]/route.ts +25 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/route.ts +37 -0
- package/app-template/src/app/api/cache/route.ts +1 -0
- package/app-template/src/app/api/client/[...slug]/route.ts +1 -0
- package/app-template/src/app/api/form/[...id]/route.ts +7 -0
- package/app-template/src/app/api/logout/route.ts +1 -0
- package/app-template/src/app/api/sentry/route.ts +9 -0
- package/app-template/src/app/api/web-vitals/route.ts +1 -0
- package/app-template/src/app/favicon.ico +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/index.scss +269 -0
- package/app-template/src/assets/fonts/index.scss +1 -0
- package/app-template/src/assets/fonts/pz-icon.css +154 -0
- package/app-template/src/assets/fonts/pz-icon.eot +0 -0
- package/app-template/src/assets/fonts/pz-icon.html +456 -0
- package/app-template/src/assets/fonts/pz-icon.scss +300 -0
- package/app-template/src/assets/fonts/pz-icon.svg +144 -0
- package/app-template/src/assets/fonts/pz-icon.ttf +0 -0
- package/app-template/src/assets/fonts/pz-icon.woff +0 -0
- package/app-template/src/assets/fonts/pz-icon.woff2 +0 -0
- package/app-template/src/assets/globals.scss +65 -0
- package/app-template/src/assets/icons/akinon.svg +11 -0
- package/app-template/src/assets/icons/arrow-up.svg +11 -0
- package/app-template/src/assets/icons/bell.svg +1 -0
- package/app-template/src/assets/icons/cart.svg +13 -0
- package/app-template/src/assets/icons/check.svg +19 -0
- package/app-template/src/assets/icons/chevron-down.svg +8 -0
- package/app-template/src/assets/icons/chevron-end.svg +8 -0
- package/app-template/src/assets/icons/chevron-start.svg +8 -0
- package/app-template/src/assets/icons/chevron-up.svg +8 -0
- package/app-template/src/assets/icons/close.svg +12 -0
- package/app-template/src/assets/icons/cvc.svg +54 -0
- package/app-template/src/assets/icons/default.svg +6 -0
- package/app-template/src/assets/icons/directions.svg +14 -0
- package/app-template/src/assets/icons/eye-off.svg +10 -0
- package/app-template/src/assets/icons/eye-on.svg +17 -0
- package/app-template/src/assets/icons/facebook-login.svg +11 -0
- package/app-template/src/assets/icons/facebook.svg +9 -0
- package/app-template/src/assets/icons/giftbox.svg +22 -0
- package/app-template/src/assets/icons/globe.svg +12 -0
- package/app-template/src/assets/icons/google-login.svg +19 -0
- package/app-template/src/assets/icons/google.svg +9 -0
- package/app-template/src/assets/icons/hamburger.svg +5 -0
- package/app-template/src/assets/icons/heart-full.svg +20 -0
- package/app-template/src/assets/icons/heart-stroke.svg +22 -0
- package/app-template/src/assets/icons/info.svg +1 -0
- package/app-template/src/assets/icons/instagram.svg +14 -0
- package/app-template/src/assets/icons/layout-2.svg +7 -0
- package/app-template/src/assets/icons/layout-3.svg +4 -0
- package/app-template/src/assets/icons/logo.svg +24 -0
- package/app-template/src/assets/icons/mail.svg +1 -0
- package/app-template/src/assets/icons/minus.svg +4 -0
- package/app-template/src/assets/icons/money.svg +4 -0
- package/app-template/src/assets/icons/mp-otp.svg +1 -0
- package/app-template/src/assets/icons/pin.svg +16 -0
- package/app-template/src/assets/icons/pinterest.svg +12 -0
- package/app-template/src/assets/icons/plus.svg +5 -0
- package/app-template/src/assets/icons/search.svg +13 -0
- package/app-template/src/assets/icons/share.svg +10 -0
- package/app-template/src/assets/icons/spinner.svg +6 -0
- package/app-template/src/assets/icons/store-pin.svg +14 -0
- package/app-template/src/assets/icons/track-order.svg +1 -0
- package/app-template/src/assets/icons/twitter.svg +11 -0
- package/app-template/src/assets/icons/user.svg +14 -0
- package/app-template/src/assets/icons/whatsapp.svg +45 -0
- package/app-template/src/components/__tests__/Modal.test.tsx +103 -0
- package/app-template/src/components/__tests__/accordion.test.tsx +65 -0
- package/app-template/src/components/__tests__/badge.test.tsx +20 -0
- package/app-template/src/components/__tests__/button.test.tsx +59 -0
- package/app-template/src/components/__tests__/checkbox.test.tsx +57 -0
- package/app-template/src/components/__tests__/file-input.test.tsx +42 -0
- package/app-template/src/components/__tests__/icon.test.tsx +39 -0
- package/app-template/src/components/__tests__/input.test.tsx +69 -0
- package/app-template/src/components/__tests__/language-select.test.tsx +81 -0
- package/app-template/src/components/__tests__/link.test.tsx +65 -0
- package/app-template/src/components/__tests__/price.test.tsx +72 -0
- package/app-template/src/components/__tests__/radio.test.tsx +52 -0
- package/app-template/src/components/__tests__/select.test.tsx +115 -0
- package/app-template/src/components/__tests__/tab.test.tsx +101 -0
- package/app-template/src/components/accordion.tsx +64 -0
- package/app-template/src/components/badge.tsx +21 -0
- package/app-template/src/components/button.tsx +46 -0
- package/app-template/src/components/canonical-url.tsx +21 -0
- package/app-template/src/components/carousel-core.tsx +42 -0
- package/app-template/src/components/checkbox.tsx +28 -0
- package/app-template/src/components/currency-select.tsx +81 -0
- package/app-template/src/components/custom-loader.tsx +21 -0
- package/app-template/src/components/dynamic-form.tsx +17 -0
- package/app-template/src/components/file-input.tsx +8 -0
- package/app-template/src/components/generate-form-fields.tsx +349 -0
- package/app-template/src/components/icon.tsx +18 -0
- package/app-template/src/components/index.ts +41 -0
- package/app-template/src/components/input.tsx +110 -0
- package/app-template/src/components/language-select.tsx +33 -0
- package/app-template/src/components/link.tsx +53 -0
- package/app-template/src/components/loader-spinner.tsx +23 -0
- package/app-template/src/components/modal.tsx +66 -0
- package/app-template/src/components/pagination.tsx +267 -0
- package/app-template/src/components/password-rules-feedback.tsx +60 -0
- package/app-template/src/components/price.tsx +54 -0
- package/app-template/src/components/pwa-tags.tsx +233 -0
- package/app-template/src/components/radio.tsx +18 -0
- package/app-template/src/components/react-portal.tsx +47 -0
- package/app-template/src/components/select.tsx +70 -0
- package/app-template/src/components/shimmer.tsx +21 -0
- package/app-template/src/components/skeleton-article.tsx +15 -0
- package/app-template/src/components/skeleton-product.tsx +14 -0
- package/app-template/src/components/skeleton-profile.tsx +19 -0
- package/app-template/src/components/skeleton-wrapper.tsx +19 -0
- package/app-template/src/components/skeleton.tsx +37 -0
- package/app-template/src/components/source.tsx +12 -0
- package/app-template/src/components/tab-panel.tsx +10 -0
- package/app-template/src/components/tab.tsx +58 -0
- package/app-template/src/components/tabs.tsx +58 -0
- package/app-template/src/components/types/index.ts +89 -0
- package/app-template/src/hooks/index.ts +1 -0
- package/app-template/src/hooks/use-add-product-to-basket.ts +48 -0
- package/app-template/src/hooks/use-contract.tsx +58 -0
- package/app-template/src/hooks/use-fav-button.tsx +99 -0
- package/app-template/src/instrumentation.ts +1 -0
- package/app-template/src/middleware.ts +33 -0
- package/app-template/src/pages/_error.js +14 -0
- package/app-template/src/pages/api/auth/[...nextauth].ts +3 -0
- package/app-template/src/plugins.js +14 -0
- package/app-template/src/redux/middlewares/category.ts +42 -0
- package/app-template/src/redux/reducers/category.ts +67 -0
- package/app-template/src/redux/store.ts +47 -0
- package/app-template/src/routes/index.ts +46 -0
- package/app-template/src/settings.js +62 -0
- package/app-template/src/theme.js +1 -0
- package/app-template/src/types/index.ts +72 -0
- package/app-template/src/types/next-auth.d.ts +24 -0
- package/app-template/src/types/widgets.ts +115 -0
- package/app-template/src/utils/convert-facet-search-params.ts +15 -0
- package/app-template/src/utils/generate-jsonld.ts +23 -0
- package/app-template/src/utils/gtm.ts +247 -0
- package/app-template/src/utils/index.ts +60 -0
- package/app-template/src/views/account/account-menu.tsx +117 -0
- package/app-template/src/views/account/address-card.tsx +157 -0
- package/app-template/src/views/account/address-form.tsx +374 -0
- package/app-template/src/views/account/back-button.tsx +27 -0
- package/app-template/src/views/account/contact-form.tsx +283 -0
- package/app-template/src/views/account/content-header.tsx +52 -0
- package/app-template/src/views/account/faq/faq-footer.tsx +30 -0
- package/app-template/src/views/account/faq/faq-search.tsx +35 -0
- package/app-template/src/views/account/faq/faq-tabs.tsx +54 -0
- package/app-template/src/views/account/faq/index.ts +3 -0
- package/app-template/src/views/account/favorite-item.tsx +191 -0
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +65 -0
- package/app-template/src/views/account/index.ts +4 -0
- package/app-template/src/views/account/order.tsx +89 -0
- package/app-template/src/views/account/orders/order-cancellation-item.tsx +99 -0
- package/app-template/src/views/account/orders/order-detail-header.tsx +39 -0
- package/app-template/src/views/anonymous-tracking/index.tsx +109 -0
- package/app-template/src/views/anonymous-tracking/order-detail/index.tsx +318 -0
- package/app-template/src/views/basket/basket-item.tsx +231 -0
- package/app-template/src/views/basket/index.ts +2 -0
- package/app-template/src/views/basket/summary.tsx +220 -0
- package/app-template/src/views/breadcrumb.tsx +35 -0
- package/app-template/src/views/category/category-active-filters.tsx +98 -0
- package/app-template/src/views/category/category-banner.tsx +34 -0
- package/app-template/src/views/category/category-header.tsx +143 -0
- package/app-template/src/views/category/category-info.tsx +123 -0
- package/app-template/src/views/category/filters/index.tsx +163 -0
- package/app-template/src/views/category/filters/size-filter.tsx +27 -0
- package/app-template/src/views/category/layout.tsx +38 -0
- package/app-template/src/views/checkout/auth.tsx +54 -0
- package/app-template/src/views/checkout/index.tsx +3 -0
- package/app-template/src/views/checkout/layout/footer.tsx +48 -0
- package/app-template/src/views/checkout/layout/header.tsx +38 -0
- package/app-template/src/views/checkout/step-button.tsx +69 -0
- package/app-template/src/views/checkout/step-list.tsx +51 -0
- package/app-template/src/views/checkout/steps/payment/agreements.tsx +42 -0
- package/app-template/src/views/checkout/steps/payment/index.tsx +31 -0
- package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +382 -0
- package/app-template/src/views/checkout/steps/payment/options/credit-card/installments.tsx +100 -0
- package/app-template/src/views/checkout/steps/payment/options/credit-payment.tsx +14 -0
- package/app-template/src/views/checkout/steps/payment/options/funds-transfer.tsx +174 -0
- package/app-template/src/views/checkout/steps/payment/options/loyalty.tsx +19 -0
- package/app-template/src/views/checkout/steps/payment/options/pay-on-delivery.tsx +15 -0
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +94 -0
- package/app-template/src/views/checkout/steps/payment/payment-header.tsx +17 -0
- package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +73 -0
- package/app-template/src/views/checkout/steps/shipping/address-box.tsx +244 -0
- package/app-template/src/views/checkout/steps/shipping/addresses.tsx +189 -0
- package/app-template/src/views/checkout/steps/shipping/index.tsx +27 -0
- package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +72 -0
- package/app-template/src/views/checkout/summary.tsx +181 -0
- package/app-template/src/views/coupon-item/index.tsx +80 -0
- package/app-template/src/views/find-in-store/index.tsx +183 -0
- package/app-template/src/views/footer.tsx +21 -0
- package/app-template/src/views/guest-login/index.tsx +130 -0
- package/app-template/src/views/header/action-menu.tsx +117 -0
- package/app-template/src/views/header/band.tsx +32 -0
- package/app-template/src/views/header/index.tsx +66 -0
- package/app-template/src/views/header/mini-basket.tsx +267 -0
- package/app-template/src/views/header/mobile-hamburger-button.tsx +35 -0
- package/app-template/src/views/header/mobile-menu.tsx +144 -0
- package/app-template/src/views/header/navbar.tsx +186 -0
- package/app-template/src/views/header/pwa-back-button.tsx +60 -0
- package/app-template/src/views/header/search/index.tsx +82 -0
- package/app-template/src/views/header/search/results.tsx +123 -0
- package/app-template/src/views/header/user-menu.tsx +72 -0
- package/app-template/src/views/index.tsx +2 -0
- package/app-template/src/views/installment-options/index.tsx +127 -0
- package/app-template/src/views/login/index.tsx +233 -0
- package/app-template/src/views/otp-login/index.tsx +152 -0
- package/app-template/src/views/page-loader-spinner/index.tsx +9 -0
- package/app-template/src/views/product/accordion-wrapper.tsx +59 -0
- package/app-template/src/views/product/combine-product-card.tsx +82 -0
- package/app-template/src/views/product/index.ts +8 -0
- package/app-template/src/views/product/layout.tsx +40 -0
- package/app-template/src/views/product/misc-buttons.tsx +65 -0
- package/app-template/src/views/product/price-wrapper.tsx +41 -0
- package/app-template/src/views/product/product-group-info.tsx +63 -0
- package/app-template/src/views/product/product-info.tsx +273 -0
- package/app-template/src/views/product/slider.tsx +124 -0
- package/app-template/src/views/product/variant.tsx +104 -0
- package/app-template/src/views/product-item/index.tsx +96 -0
- package/app-template/src/views/product-pointer-banner-item.tsx +243 -0
- package/app-template/src/views/register/index.tsx +417 -0
- package/app-template/src/views/root-modal.tsx +21 -0
- package/app-template/src/views/sales-contract-modal/index.tsx +288 -0
- package/app-template/src/views/share/index.tsx +71 -0
- package/app-template/src/views/widgets/home-hero-slider-content.tsx +54 -0
- package/app-template/src/views/widgets/recommendation-content.tsx +86 -0
- package/app-template/src/widgets/footer-copyright.tsx +25 -0
- package/app-template/src/widgets/footer-info.tsx +78 -0
- package/app-template/src/widgets/footer-menu.tsx +258 -0
- package/app-template/src/widgets/footer-social.tsx +53 -0
- package/app-template/src/widgets/footer-subscription/footer-subscription-form.tsx +110 -0
- package/app-template/src/widgets/footer-subscription/index.tsx +30 -0
- package/app-template/src/widgets/header-band-text.tsx +21 -0
- package/app-template/src/widgets/home-discovery.tsx +191 -0
- package/app-template/src/widgets/home-hero-slider.tsx +36 -0
- package/app-template/src/widgets/home-product-recommendation.tsx +18 -0
- package/app-template/src/widgets/home-single-banner.tsx +87 -0
- package/app-template/src/widgets/home-stories-eng.tsx +112 -0
- package/app-template/src/widgets/index.ts +25 -0
- package/app-template/src/widgets/product-pointer-banners.tsx +35 -0
- package/app-template/src/widgets/special-page-banner.tsx +49 -0
- package/app-template/src/widgets/special-page-carousel.tsx +68 -0
- package/app-template/src/widgets/widget-order.tsx +1 -0
- package/app-template/tailwind.config.js +170 -0
- package/app-template/tsconfig.json +44 -0
- package/app-template/tsconfig.test.json +6 -0
- package/app-template/yarn.lock +11278 -0
- package/commands/create.ts +49 -118
- package/dist/commands/create.js +32 -68
- package/package.json +1 -1
- package/tsconfig.json +9 -8
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="5888.000000pt" height="5888.000000pt" viewBox="0 0 5888.000000 5888.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
<metadata>
|
|
8
|
+
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
|
9
|
+
</metadata>
|
|
10
|
+
<g transform="translate(0.000000,5888.000000) scale(0.100000,-0.100000)"
|
|
11
|
+
fill="#000000" stroke="none">
|
|
12
|
+
<path d="M55879 32316 c-2 -2 -40 -7 -84 -10 -188 -16 -330 -40 -475 -78 -41
|
|
13
|
+
-11 -89 -23 -106 -28 -18 -4 -37 -10 -43 -14 -6 -4 -19 -9 -29 -11 -70 -13
|
|
14
|
+
-348 -144 -439 -206 -23 -16 -46 -29 -52 -29 -6 0 -11 -3 -11 -7 0 -5 -17 -19
|
|
15
|
+
-38 -33 -51 -34 -49 -33 -116 -92 -126 -112 -304 -297 -373 -388 -40 -52 -77
|
|
16
|
+
-100 -83 -107 -5 -7 -10 -15 -10 -19 0 -4 -10 -21 -23 -38 -45 -60 -112 -186
|
|
17
|
+
-182 -341 -41 -90 -119 -312 -130 -372 -2 -10 -4 -18 -5 -18 -1 0 -3 -7 -5
|
|
18
|
+
-15 -2 -8 -6 -26 -9 -40 -3 -14 -7 -34 -10 -45 -25 -106 -40 -185 -55 -295
|
|
19
|
+
-21 -155 -29 -232 -35 -356 -2 -28 -6 -56 -10 -62 -4 -7 -4 -12 1 -12 4 0 7
|
|
20
|
+
-19 5 -42 -7 -121 0 -442 13 -563 2 -22 7 -65 10 -95 8 -74 13 -109 32 -215 8
|
|
21
|
+
-49 16 -97 18 -105 13 -86 76 -307 129 -457 49 -138 203 -444 247 -492 10 -11
|
|
22
|
+
19 -23 19 -26 0 -11 84 -125 92 -125 4 0 8 -4 8 -10 0 -43 444 -480 488 -480
|
|
23
|
+
6 0 12 -4 14 -9 4 -11 165 -111 178 -111 5 0 10 -4 10 -10 0 -5 3 -9 8 -8 4 1
|
|
24
|
+
41 -15 82 -34 157 -75 385 -151 515 -171 17 -3 37 -7 45 -10 8 -3 33 -8 55
|
|
25
|
+
-11 22 -3 49 -7 60 -10 11 -2 51 -7 88 -11 37 -3 78 -8 90 -11 19 -3 185 -12
|
|
26
|
+
345 -17 28 -1 52 0 52 3 0 3 46 5 103 6 117 1 293 14 362 28 17 3 50 9 75 12
|
|
27
|
+
44 6 57 9 103 19 12 3 33 8 47 10 73 12 242 65 360 113 86 35 244 113 248 124
|
|
28
|
+
2 4 8 8 13 8 16 0 146 88 230 156 95 76 249 229 338 334 100 118 101 120 101
|
|
29
|
+
128 0 5 8 17 18 28 101 111 304 526 358 733 2 9 13 50 25 91 39 138 80 347 95
|
|
30
|
+
480 3 30 7 69 9 85 29 245 24 818 -9 1015 -3 19 -8 55 -11 80 -3 25 -7 55 -9
|
|
31
|
+
66 -2 12 -7 37 -10 55 -31 190 -97 428 -172 614 -36 90 -145 309 -156 313 -4
|
|
32
|
+
2 -8 8 -8 14 0 10 -88 145 -124 189 -12 14 -28 36 -36 48 -41 60 -254 282
|
|
33
|
+
-351 366 -220 191 -453 315 -764 410 -99 30 -165 44 -375 81 -14 2 -50 6 -80
|
|
34
|
+
10 -30 3 -66 8 -80 10 -28 6 -575 15 -581 10z m421 -950 c88 -12 120 -18 192
|
|
35
|
+
-36 111 -29 233 -79 313 -129 22 -14 52 -32 67 -41 15 -8 47 -30 70 -49 54
|
|
36
|
+
-43 238 -231 238 -243 0 -5 9 -19 21 -31 28 -30 107 -165 152 -260 91 -191
|
|
37
|
+
161 -464 182 -707 2 -30 7 -77 10 -105 13 -109 6 -537 -10 -649 -3 -17 -7 -47
|
|
38
|
+
-9 -66 -29 -239 -92 -459 -186 -655 -45 -93 -123 -222 -166 -275 -106 -128
|
|
39
|
+
-186 -202 -301 -280 -88 -61 -188 -110 -290 -144 -76 -24 -206 -57 -221 -55
|
|
40
|
+
-4 1 -9 0 -12 -1 -33 -13 -378 -18 -437 -6 -18 3 -48 8 -65 11 -410 67 -762
|
|
41
|
+
337 -961 740 -52 104 -131 320 -142 389 -3 17 -8 39 -11 48 -7 24 -14 58 -20
|
|
42
|
+
98 -2 19 -6 42 -9 50 -2 8 -7 38 -10 65 -3 28 -8 66 -10 85 -23 166 -24 576 0
|
|
43
|
+
765 8 65 16 125 21 148 2 12 6 36 8 52 8 60 45 203 81 310 101 300 281 559
|
|
44
|
+
500 721 33 24 69 51 80 60 66 51 415 188 433 170 2 -3 15 -1 29 5 13 5 59 12
|
|
45
|
+
101 15 42 4 78 7 79 8 5 4 248 -3 283 -8z"/>
|
|
46
|
+
<path d="M11538 32295 c-1 -2 -37 -6 -79 -9 -199 -13 -520 -90 -674 -161 -136
|
|
47
|
+
-62 -313 -152 -325 -165 -3 -3 -41 -30 -85 -60 -112 -75 -213 -159 -319 -265
|
|
48
|
+
-91 -90 -236 -265 -236 -285 0 -5 -4 -10 -9 -10 -7 0 -54 -68 -86 -125 -6 -11
|
|
49
|
+
-23 -38 -37 -60 -57 -91 -197 -395 -214 -465 -2 -8 -10 -33 -18 -55 -8 -22
|
|
50
|
+
-15 -48 -16 -57 0 -10 -5 -18 -12 -18 -6 0 -9 -3 -5 -6 3 -3 -1 -29 -10 -57
|
|
51
|
+
-8 -28 -17 -59 -19 -69 -2 -10 -6 -26 -8 -36 -2 -9 -9 -35 -14 -57 -9 -35 -16
|
|
52
|
+
-66 -26 -125 -1 -8 -5 -28 -9 -45 -3 -16 -8 -46 -11 -65 -29 -212 -32 -242
|
|
53
|
+
-42 -410 -5 -73 -5 -135 -2 -159 0 -3 -1 -10 -2 -16 -4 -25 5 -294 14 -380 20
|
|
54
|
+
-194 24 -230 26 -230 1 0 3 -11 5 -25 3 -29 14 -88 20 -110 2 -8 6 -31 9 -51
|
|
55
|
+
10 -69 77 -314 112 -413 61 -172 121 -307 178 -406 11 -19 22 -41 23 -50 1 -8
|
|
56
|
+
7 -16 12 -18 6 -2 11 -7 11 -12 0 -10 105 -170 156 -238 120 -158 295 -332
|
|
57
|
+
454 -448 136 -100 371 -230 515 -284 33 -12 74 -27 90 -33 17 -7 32 -12 35
|
|
58
|
+
-13 3 0 12 -3 20 -7 14 -5 123 -33 165 -42 11 -3 40 -9 65 -14 25 -6 61 -13
|
|
59
|
+
80 -15 19 -3 44 -7 55 -10 20 -4 99 -12 210 -22 137 -12 487 -5 567 12 13 2
|
|
60
|
+
46 6 73 9 28 2 61 7 75 10 14 3 41 8 60 11 19 2 43 7 52 10 9 2 25 6 35 8 106
|
|
61
|
+
21 418 130 447 157 6 5 18 9 28 9 10 0 18 4 18 9 0 5 15 14 33 22 49 20 256
|
|
62
|
+
149 322 200 156 124 276 241 401 394 47 57 189 271 219 331 11 21 23 41 28 42
|
|
63
|
+
4 2 7 12 7 23 0 10 5 19 10 19 6 0 10 9 10 20 0 11 5 20 10 20 6 0 10 6 10 12
|
|
64
|
+
0 7 11 35 24 63 32 69 63 141 81 195 15 41 63 191 69 215 2 6 6 17 9 25 14 38
|
|
65
|
+
70 301 81 380 7 46 26 215 31 263 2 26 7 52 10 57 3 5 1 11 -5 15 -6 4 -7 13
|
|
66
|
+
-1 23 16 32 4 553 -16 682 -3 25 -6 48 -5 51 1 7 -15 121 -24 164 -3 17 -7 39
|
|
67
|
+
-9 50 -2 11 -6 32 -9 48 -3 15 -8 38 -10 50 -19 111 -125 453 -171 555 -8 17
|
|
68
|
+
-22 49 -31 70 -23 53 -83 169 -116 225 -15 26 -28 50 -28 53 0 3 -5 10 -10 17
|
|
69
|
+
-6 7 -31 44 -57 82 -25 39 -50 72 -55 73 -4 2 -8 9 -8 16 0 6 -8 19 -17 27
|
|
70
|
+
-10 9 -27 29 -38 45 -41 59 -173 197 -267 279 -80 69 -131 108 -226 171 -37
|
|
71
|
+
24 -72 47 -78 51 -15 11 -50 31 -97 56 -23 11 -45 25 -48 30 -3 5 -9 8 -13 7
|
|
72
|
+
-4 -1 -33 10 -64 25 -106 49 -141 64 -167 71 -5 1 -42 14 -81 28 -39 14 -82
|
|
73
|
+
27 -95 30 -13 3 -33 7 -44 10 -52 14 -112 28 -133 32 -95 17 -144 24 -192 30
|
|
74
|
+
-30 3 -66 8 -80 11 -29 6 -506 13 -512 8z m482 -440 c25 -4 52 -7 60 -7 8 0
|
|
75
|
+
31 -4 50 -8 31 -8 83 -17 130 -24 28 -5 165 -47 235 -74 115 -43 294 -138 395
|
|
76
|
+
-210 153 -109 350 -316 446 -467 10 -16 21 -32 24 -35 19 -18 178 -333 185
|
|
77
|
+
-367 2 -10 15 -46 29 -80 13 -35 22 -63 20 -63 -3 0 0 -9 6 -19 13 -25 66
|
|
78
|
+
-220 75 -276 3 -22 15 -91 20 -115 2 -8 6 -40 10 -70 4 -30 9 -66 11 -80 9
|
|
79
|
+
-46 14 -95 18 -187 2 -51 6 -96 8 -100 15 -30 -6 -539 -27 -653 -2 -14 -7 -45
|
|
80
|
+
-10 -70 -5 -36 -38 -208 -50 -255 -1 -5 -6 -29 -10 -52 -4 -24 -12 -43 -17
|
|
81
|
+
-43 -5 0 -7 -4 -4 -8 9 -15 -87 -303 -123 -370 -6 -9 -22 -44 -37 -77 -16 -33
|
|
82
|
+
-31 -62 -34 -65 -3 -3 -16 -25 -29 -50 -22 -41 -48 -82 -91 -145 -8 -12 -24
|
|
83
|
+
-35 -35 -51 -11 -16 -24 -34 -30 -40 -5 -6 -41 -47 -80 -91 -38 -43 -107 -110
|
|
84
|
+
-152 -148 -46 -39 -89 -75 -96 -82 -29 -25 -185 -122 -258 -161 -148 -78 -355
|
|
85
|
+
-145 -524 -168 -11 -1 -20 -3 -20 -4 0 -1 -25 -4 -145 -16 -127 -12 -391 -7
|
|
86
|
+
-505 10 -16 2 -55 7 -85 11 -30 4 -58 9 -61 11 -3 2 -20 6 -38 9 -78 14 -226
|
|
87
|
+
59 -300 91 -278 124 -495 287 -683 514 -52 63 -178 253 -178 268 0 6 -4 12 -8
|
|
88
|
+
14 -9 3 -102 193 -102 207 0 5 -6 22 -14 38 -18 35 -39 85 -41 98 -2 6 -9 30
|
|
89
|
+
-18 55 -18 54 -68 235 -72 264 -2 12 -6 32 -9 46 -3 14 -7 37 -10 53 -3 15 -7
|
|
90
|
+
35 -10 45 -9 31 -42 314 -46 407 -6 111 -4 399 3 490 10 123 23 238 32 285 3
|
|
91
|
+
14 7 39 10 55 2 17 7 41 10 55 3 14 8 37 10 53 7 44 75 295 97 356 85 238 223
|
|
92
|
+
492 349 646 69 84 248 254 334 317 78 57 255 168 268 168 3 0 31 12 63 27 33
|
|
93
|
+
15 61 28 64 29 3 0 12 3 20 7 97 39 319 91 429 101 29 3 55 7 57 9 7 7 433 0
|
|
94
|
+
484 -8z"/>
|
|
95
|
+
<path d="M25498 32295 c-2 -1 -39 -5 -83 -9 -106 -8 -221 -22 -255 -31 -8 -2
|
|
96
|
+
-31 -6 -50 -9 -73 -12 -198 -41 -300 -72 -208 -63 -388 -146 -555 -258 -33
|
|
97
|
+
-22 -62 -43 -65 -46 -3 -4 -10 -9 -16 -11 -19 -7 -105 -80 -197 -169 -291
|
|
98
|
+
-278 -507 -671 -628 -1140 -17 -63 -32 -128 -34 -145 -3 -16 -9 -52 -15 -80
|
|
99
|
+
-6 -27 -12 -66 -15 -85 -3 -19 -7 -46 -10 -60 -3 -14 -8 -54 -11 -90 -3 -36
|
|
100
|
+
-7 -81 -9 -100 -26 -252 -26 -788 0 -985 2 -16 7 -56 10 -87 3 -31 8 -67 10
|
|
101
|
+
-80 3 -13 8 -43 11 -68 3 -25 8 -54 10 -65 10 -49 21 -107 28 -147 8 -49 67
|
|
102
|
+
-270 90 -342 35 -105 118 -310 128 -314 4 -2 8 -10 8 -17 0 -15 42 -95 100
|
|
103
|
+
-190 20 -33 43 -71 51 -85 8 -14 16 -27 19 -30 3 -3 26 -34 52 -70 85 -121
|
|
104
|
+
216 -258 348 -364 47 -37 94 -75 105 -84 38 -31 220 -135 310 -178 83 -40 266
|
|
105
|
+
-106 325 -118 14 -3 52 -12 85 -20 78 -18 216 -39 340 -52 110 -11 473 -5 585
|
|
106
|
+
10 25 3 68 8 95 12 71 8 107 14 128 20 11 3 29 7 40 9 12 2 33 6 47 10 14 3
|
|
107
|
+
36 8 50 11 41 8 255 81 304 104 57 25 88 37 100 38 5 0 12 4 15 9 3 4 24 17
|
|
108
|
+
46 28 22 11 64 35 93 53 29 17 55 32 57 32 5 0 63 41 153 107 105 76 280 254
|
|
109
|
+
372 378 16 22 34 45 39 52 6 6 24 35 42 65 18 29 38 60 45 68 45 56 188 374
|
|
110
|
+
249 555 56 165 96 325 82 326 -7 0 -124 1 -262 2 l-250 0 -23 -79 c-28 -95
|
|
111
|
+
-48 -164 -53 -184 -2 -8 -6 -17 -9 -20 -3 -3 -14 -30 -24 -60 -39 -111 -192
|
|
112
|
+
-397 -218 -408 -4 -2 -8 -8 -8 -14 0 -18 -109 -149 -199 -238 -138 -137 -238
|
|
113
|
+
-210 -409 -294 -98 -49 -254 -108 -313 -120 -13 -2 -35 -7 -49 -10 -44 -10
|
|
114
|
+
-114 -22 -195 -32 -96 -11 -427 -5 -505 10 -14 3 -45 8 -70 11 -25 3 -53 8
|
|
115
|
+
-62 11 -9 3 -27 7 -40 9 -39 7 -112 26 -133 35 -11 5 -45 16 -75 26 -104 32
|
|
116
|
+
-261 118 -420 231 -129 92 -331 322 -411 468 -34 62 -139 273 -139 280 0 4 -6
|
|
117
|
+
21 -14 38 -16 37 -49 126 -53 145 -9 38 -12 47 -13 47 -1 0 -3 7 -5 15 -2 8
|
|
118
|
+
-12 49 -23 90 -22 82 -36 149 -68 330 -4 19 -8 51 -10 70 -3 19 -7 55 -10 80
|
|
119
|
+
-17 146 -25 289 -27 460 -1 157 9 381 19 435 3 17 7 48 9 70 2 22 4 40 5 40 1
|
|
120
|
+
0 3 16 5 35 2 19 6 46 8 60 3 14 10 54 16 90 15 81 38 181 56 240 8 25 16 56
|
|
121
|
+
19 70 3 14 14 49 25 78 11 29 20 54 20 55 0 17 99 240 128 292 13 22 28 51 35
|
|
122
|
+
65 7 14 23 39 35 56 13 17 23 34 23 38 0 4 32 50 70 101 65 86 173 202 262
|
|
123
|
+
282 51 46 246 177 315 212 128 64 336 130 463 146 25 3 68 9 95 13 109 15 481
|
|
124
|
+
7 610 -13 68 -10 91 -14 115 -20 14 -3 37 -7 53 -10 27 -5 93 -23 172 -45 22
|
|
125
|
+
-7 46 -17 53 -22 6 -6 12 -8 12 -5 0 16 225 -95 313 -155 197 -134 373 -359
|
|
126
|
+
467 -598 12 -30 27 -66 33 -80 5 -14 11 -29 13 -35 1 -5 14 -48 28 -95 14 -47
|
|
127
|
+
30 -104 36 -127 l11 -43 259 1 c242 1 258 2 255 19 -2 9 -6 33 -9 51 -3 19 -8
|
|
128
|
+
45 -11 59 -3 14 -7 36 -10 50 -2 14 -16 63 -30 110 -14 47 -27 93 -30 102 -20
|
|
129
|
+
87 -186 433 -224 468 -12 10 -51 69 -51 76 0 4 -8 14 -18 23 -9 9 -35 38 -57
|
|
130
|
+
66 -66 82 -167 179 -255 245 -18 14 -38 30 -44 36 -6 6 -22 17 -36 24 -13 7
|
|
131
|
+
-29 17 -34 21 -62 52 -298 166 -436 212 -118 40 -244 72 -360 91 -64 10 -114
|
|
132
|
+
17 -170 23 -60 6 -496 13 -502 8z"/>
|
|
133
|
+
<path d="M34923 32207 c-7 -12 -5 -305 2 -317 3 -6 3 -10 -2 -10 -9 0 -8 -603
|
|
134
|
+
1 -626 3 -8 2 -14 -2 -14 -8 0 -6 -1205 2 -1226 3 -8 2 -14 -2 -14 -8 0 -7
|
|
135
|
+
-124 2 -146 3 -7 2 -14 -2 -14 -8 0 -6 -165 2 -186 3 -8 2 -14 -2 -14 -8 0 -7
|
|
136
|
+
-564 2 -586 3 -7 2 -14 -2 -14 -8 0 -7 -124 2 -146 3 -7 2 -14 -2 -14 -8 0 -7
|
|
137
|
+
-1391 1 -1421 3 -11 2 -19 -1 -19 -8 0 -6 -125 2 -146 3 -7 2 -14 -2 -14 -8 0
|
|
138
|
+
-6 -165 2 -186 3 -8 2 -14 -2 -14 -4 0 -6 -35 -5 -77 1 -43 2 -100 2 -128 l1
|
|
139
|
+
-50 287 2 c159 1 298 2 309 2 l22 1 0 2690 c0 2487 -1 2690 -17 2691 -76 6
|
|
140
|
+
-594 2 -598 -4z"/>
|
|
141
|
+
<path d="M18 32162 c-17 -3 -18 -138 -18 -2668 0 -2124 3 -2664 13 -2665 6 0
|
|
142
|
+
117 -1 245 -1 155 -1 236 2 240 9 4 6 7 536 7 1177 0 641 2 1166 5 1166 3 1
|
|
143
|
+
320 3 705 5 385 2 720 6 745 8 25 3 72 8 105 11 66 6 121 13 175 22 54 9 93
|
|
144
|
+
15 115 18 226 35 536 146 703 252 29 19 56 34 61 34 5 0 11 3 13 8 2 4 21 20
|
|
145
|
+
43 37 119 89 222 199 309 330 53 81 119 215 132 270 4 17 9 35 13 40 3 6 6 15
|
|
146
|
+
7 20 1 6 9 42 18 80 8 39 18 97 22 130 8 71 8 413 -1 470 -5 34 -15 99 -31
|
|
147
|
+
190 -3 18 -40 157 -48 180 -2 6 -7 20 -11 33 -48 149 -216 384 -355 497 -188
|
|
148
|
+
152 -516 280 -795 310 -27 3 -57 8 -65 11 -21 7 -167 17 -277 18 -51 1 -93 5
|
|
149
|
+
-93 9 0 5 -5 5 -11 2 -13 -8 -133 -10 -146 -2 -5 3 -15 2 -22 -3 -8 -4 -27 -4
|
|
150
|
+
-42 0 -16 5 -31 5 -34 0 -2 -4 -19 -5 -36 -1 -17 3 -62 4 -101 1 -38 -3 -72
|
|
151
|
+
-2 -74 2 -3 4 -15 4 -27 -1 -12 -5 -31 -5 -42 -1 -11 4 -34 4 -51 0 -18 -4
|
|
152
|
+
-38 -4 -45 1 -7 4 -17 5 -22 2 -5 -3 -33 -5 -63 -4 -30 1 -62 1 -71 1 -26 0
|
|
153
|
+
-65 1 -88 4 -11 1 -29 -1 -40 -5 -11 -3 -29 -3 -40 1 -11 4 -24 5 -29 2 -11
|
|
154
|
+
-6 -122 -6 -133 1 -5 3 -15 2 -22 -3 -8 -4 -27 -4 -42 0 -16 5 -31 5 -34 0 -2
|
|
155
|
+
-4 -19 -5 -36 -1 -17 3 -62 4 -101 1 -38 -3 -72 -2 -74 2 -3 4 -15 4 -27 -1
|
|
156
|
+
-12 -5 -31 -5 -42 -1 -11 4 -34 4 -51 0 -18 -4 -38 -4 -45 1 -7 4 -17 5 -22 2
|
|
157
|
+
-13 -8 -97 -9 -97 -1 0 4 -13 3 -29 -2 -16 -4 -32 -6 -35 -3 -7 7 -164 6 -175
|
|
158
|
+
-2 -5 -3 -11 -2 -13 3 -1 4 -11 6 -20 4z m2102 -445 c36 -4 79 -9 95 -12 17
|
|
159
|
+
-2 48 -7 70 -11 22 -3 48 -11 59 -16 12 -7 16 -7 12 0 -5 9 22 2 169 -40 81
|
|
160
|
+
-24 215 -88 293 -140 53 -37 172 -151 172 -167 0 -6 4 -11 9 -11 23 0 133
|
|
161
|
+
-223 147 -300 3 -14 9 -41 14 -60 28 -109 30 -392 5 -520 -3 -14 -8 -38 -11
|
|
162
|
+
-55 -14 -81 -80 -257 -103 -275 -3 -3 -13 -17 -21 -31 -26 -47 -63 -92 -119
|
|
163
|
+
-147 -56 -54 -171 -138 -171 -125 0 5 -4 3 -8 -3 -15 -24 -233 -110 -297 -118
|
|
164
|
+
-19 -3 -38 -7 -42 -9 -11 -7 -187 -35 -258 -42 -33 -3 -87 -8 -120 -11 -33 -4
|
|
165
|
+
-386 -8 -785 -10 l-726 -3 2 1052 c1 579 2 1056 3 1060 1 9 1512 3 1611 -6z"/>
|
|
166
|
+
<path d="M4545 32160 c-4 -6 -7 -2936 -5 -4955 l0 -370 118 -2 c64 -1 178 -3
|
|
167
|
+
252 -3 l135 -2 -1 1211 0 1212 905 -4 c498 -2 927 -7 952 -10 118 -13 158 -20
|
|
168
|
+
252 -43 4 -1 9 -3 12 -4 3 -1 8 -3 13 -4 4 -1 34 -12 67 -25 157 -60 285 -176
|
|
169
|
+
359 -325 74 -150 107 -310 121 -596 6 -120 15 -274 20 -355 3 -44 8 -114 10
|
|
170
|
+
-155 7 -109 14 -187 21 -255 4 -33 8 -73 10 -90 6 -59 13 -121 19 -155 3 -19
|
|
171
|
+
8 -50 10 -69 8 -65 48 -206 73 -261 14 -30 24 -58 24 -62 -2 -9 5 -9 203 -7
|
|
172
|
+
83 1 198 2 258 2 106 0 107 0 104 23 -1 13 -16 38 -32 56 -36 39 -68 88 -59
|
|
173
|
+
88 4 0 0 7 -7 16 -7 9 -14 21 -15 28 -1 6 -9 36 -18 66 -8 30 -18 69 -21 85
|
|
174
|
+
-2 17 -7 41 -10 55 -3 14 -7 44 -10 67 -3 23 -7 57 -9 75 -15 103 -28 318 -42
|
|
175
|
+
668 -3 80 -7 168 -9 195 -10 160 -17 242 -20 255 -2 8 -7 42 -11 75 -3 33 -10
|
|
176
|
+
68 -15 77 -5 9 -8 21 -7 25 5 20 -48 196 -83 270 -10 24 -19 45 -19 49 0 18
|
|
177
|
+
-137 208 -181 251 -61 59 -148 123 -166 123 -7 0 -13 3 -13 8 0 4 -33 21 -74
|
|
178
|
+
37 l-74 30 26 17 c15 10 35 18 44 18 9 0 18 3 20 8 2 4 23 17 48 29 117 58
|
|
179
|
+
276 171 374 268 76 75 136 140 136 148 0 2 23 41 50 87 28 46 50 91 50 100 0
|
|
180
|
+
9 4 20 9 26 16 17 59 167 81 284 28 151 28 457 0 620 -19 112 -26 143 -42 189
|
|
181
|
+
-6 20 -12 41 -13 46 -3 24 -76 186 -97 214 -10 13 -18 28 -18 32 0 8 -14 28
|
|
182
|
+
-45 63 -6 6 -21 27 -34 46 -13 19 -54 61 -90 93 -58 51 -77 67 -126 104 -48
|
|
183
|
+
37 -263 141 -365 176 -112 38 -286 82 -370 92 -19 2 -48 6 -65 9 -31 6 -94 13
|
|
184
|
+
-180 21 -27 3 -116 7 -197 10 -81 3 -151 5 -155 6 -4 1 -12 0 -18 -1 -22 -4
|
|
185
|
+
-96 -2 -102 3 -3 3 -15 2 -27 -2 -11 -5 -30 -5 -40 -1 -11 3 -37 3 -58 0 -21
|
|
186
|
+
-4 -41 -4 -44 1 -2 4 -15 5 -27 0 -12 -5 -31 -5 -42 -1 -11 4 -34 4 -51 0 -18
|
|
187
|
+
-4 -38 -4 -45 1 -7 4 -17 5 -22 2 -13 -8 -97 -9 -97 -1 0 4 -13 3 -29 -2 -16
|
|
188
|
+
-4 -32 -6 -35 -3 -7 8 -164 6 -176 -2 -6 -3 -10 -2 -10 3 0 4 -22 6 -50 2 -27
|
|
189
|
+
-3 -55 -3 -63 1 -7 4 -19 4 -26 -1 -8 -4 -27 -4 -42 0 -16 5 -31 5 -34 0 -2
|
|
190
|
+
-4 -19 -5 -36 -1 -17 3 -62 4 -101 1 -38 -3 -72 -2 -74 2 -3 4 -15 4 -27 -1
|
|
191
|
+
-12 -5 -31 -5 -42 -1 -11 4 -34 4 -51 0 -18 -4 -38 -4 -45 1 -7 4 -17 5 -22 2
|
|
192
|
+
-5 -3 -33 -5 -63 -4 -30 1 -62 1 -71 1 -26 0 -65 1 -88 4 -11 1 -29 -1 -40 -5
|
|
193
|
+
-11 -3 -29 -3 -40 1 -11 4 -24 5 -29 2 -11 -6 -122 -6 -133 1 -5 3 -15 2 -22
|
|
194
|
+
-3 -8 -4 -26 -4 -41 0 -15 4 -33 4 -40 0 -7 -4 -26 -4 -41 0 -16 5 -31 5 -34
|
|
195
|
+
0z m2395 -445 c30 -5 65 -9 78 -9 12 -1 22 -3 22 -6 0 -3 10 -5 23 -6 84 -3
|
|
196
|
+
299 -66 391 -116 125 -67 161 -92 232 -163 120 -119 194 -257 230 -430 2 -11
|
|
197
|
+
7 -31 10 -45 10 -44 12 -305 3 -361 -5 -30 -11 -65 -13 -79 -16 -113 -71 -243
|
|
198
|
+
-152 -356 -103 -144 -214 -236 -388 -321 -52 -26 -214 -82 -256 -89 -14 -3
|
|
199
|
+
-56 -11 -95 -19 -91 -18 -151 -25 -258 -30 -49 -2 -92 -7 -97 -10 -6 -4 -10
|
|
200
|
+
-1 -10 5 0 6 -5 8 -11 4 -16 -10 -353 -9 -369 1 -7 5 -11 4 -7 -1 6 -10 -73
|
|
201
|
+
-10 -99 0 -8 3 -13 2 -10 -2 3 -6 -116 -7 -134 -1 -3 1 -9 1 -14 0 -35 -7 -76
|
|
202
|
+
-6 -76 1 0 5 -5 6 -12 2 -16 -10 -138 -11 -138 -1 0 5 -5 5 -11 1 -16 -10 -60
|
|
203
|
+
-11 -85 -2 -12 4 -25 4 -28 1 -6 -6 -118 -8 -141 -3 -5 1 -14 1 -20 0 -29 -5
|
|
204
|
+
-174 -2 -185 5 -7 5 -11 4 -7 -1 6 -10 -73 -10 -99 0 -8 3 -13 2 -10 -2 2 -4
|
|
205
|
+
-23 -7 -57 -5 -34 1 -71 2 -83 2 l-20 1 0 1026 0 1025 920 -4 c507 -2 946 -8
|
|
206
|
+
976 -12z"/>
|
|
207
|
+
<path d="M17296 32163 c-4 -4 -22 -6 -41 -5 -28 2 -35 -1 -36 -15 0 -10 -2
|
|
208
|
+
-931 -4 -2048 -1 -1116 -5 -2046 -8 -2065 -3 -19 -8 -48 -11 -65 -3 -16 -8
|
|
209
|
+
-43 -11 -60 -12 -69 -28 -134 -48 -195 -12 -36 -20 -68 -19 -72 1 -5 -2 -8 -7
|
|
210
|
+
-8 -5 0 -12 -12 -16 -27 -8 -32 -75 -147 -107 -185 -13 -14 -30 -35 -39 -46
|
|
211
|
+
-48 -57 -187 -142 -276 -169 -70 -20 -71 -20 -108 -28 -16 -3 -37 -8 -45 -10
|
|
212
|
+
-61 -17 -331 -24 -425 -10 -22 3 -54 7 -72 10 -185 24 -370 127 -486 270 -87
|
|
213
|
+
107 -158 276 -182 430 -2 11 -6 34 -8 50 -16 88 -28 291 -30 492 -1 60 -6 104
|
|
214
|
+
-12 106 -5 2 -118 3 -250 3 l-240 -1 1 -115 c0 -110 10 -287 19 -360 3 -19 7
|
|
215
|
+
-55 10 -80 3 -25 7 -56 10 -70 6 -35 17 -111 20 -135 2 -11 8 -40 15 -65 7
|
|
216
|
+
-25 13 -52 15 -60 2 -8 8 -28 15 -45 6 -16 11 -31 10 -33 -2 -3 15 -49 35 -97
|
|
217
|
+
7 -16 20 -48 29 -69 29 -69 114 -209 169 -276 70 -86 190 -189 290 -247 44
|
|
218
|
+
-26 83 -48 86 -48 3 -1 20 -8 36 -17 28 -15 142 -53 189 -62 11 -3 32 -8 46
|
|
219
|
+
-11 14 -3 41 -8 60 -11 19 -3 46 -7 60 -10 121 -22 442 -21 605 2 17 2 46 6
|
|
220
|
+
65 9 30 4 65 11 190 40 92 21 284 110 385 178 70 48 207 183 250 247 16 25 33
|
|
221
|
+
47 37 50 11 9 129 240 122 240 -4 0 -2 6 4 13 12 14 81 243 86 287 2 14 6 36
|
|
222
|
+
9 50 4 14 9 48 12 75 3 28 8 64 10 80 14 89 16 343 16 2165 1 1092 0 1993 0
|
|
223
|
+
2003 -1 10 -5 15 -11 12 -5 -3 -10 -2 -10 3 0 6 -14 7 -34 2 -19 -4 -40 -4
|
|
224
|
+
-47 0 -7 5 -22 5 -33 1 -12 -4 -34 -5 -51 -1 -16 3 -41 3 -55 0 -14 -4 -36 -4
|
|
225
|
+
-50 0 -14 3 -41 3 -61 0 -21 -4 -44 -3 -52 1 -8 5 -17 5 -21 2z"/>
|
|
226
|
+
<path d="M19016 32163 c-3 -3 -18 -6 -33 -7 l-28 -1 -3 -2662 c-2 -2531 -1
|
|
227
|
+
-2663 15 -2664 10 0 825 -1 1811 -2 1189 -1 1792 1 1793 8 0 12 0 396 0 411
|
|
228
|
+
-1 7 -468 10 -1548 9 -852 0 -1553 1 -1558 2 -7 2 -10 360 -9 1056 1 578 2
|
|
229
|
+
1054 3 1057 0 3 617 5 1371 5 1219 0 1370 1 1371 15 4 80 3 385 -2 398 -6 16
|
|
230
|
+
-92 17 -1365 18 -747 1 -1364 2 -1369 3 -7 1 -10 324 -10 959 l0 957 1522 3
|
|
231
|
+
1523 2 -3 213 -2 212 -25 3 c-41 4 -101 2 -110 -3 -5 -3 -11 -1 -14 4 -4 6
|
|
232
|
+
-18 6 -35 1 -15 -4 -34 -4 -40 0 -7 4 -30 4 -51 0 -21 -4 -44 -4 -51 1 -7 4
|
|
233
|
+
-17 5 -22 2 -13 -8 -117 -9 -117 -1 0 4 -11 3 -24 -2 -13 -5 -26 -7 -29 -4 -7
|
|
234
|
+
8 -97 10 -97 3 0 -4 -17 -3 -37 0 -21 3 -56 4 -78 1 -22 -3 -51 -3 -65 0 -14
|
|
235
|
+
4 -36 4 -50 0 -14 -4 -35 -3 -46 1 -12 4 -25 5 -28 2 -9 -9 -76 -9 -76 0 0 5
|
|
236
|
+
-4 6 -9 3 -5 -4 -35 -6 -68 -6 -60 1 -82 0 -146 -3 -20 -1 -37 1 -37 4 0 4
|
|
237
|
+
-16 3 -35 -1 -19 -4 -37 -4 -40 0 -2 4 -22 4 -42 1 -21 -4 -49 -4 -63 -1 -14
|
|
238
|
+
4 -36 3 -50 0 -14 -4 -34 -4 -45 0 -11 4 -24 5 -29 2 -15 -8 -76 -8 -76 1 0 5
|
|
239
|
+
-4 6 -9 3 -8 -5 -39 -6 -131 -5 -8 0 -43 -1 -78 -2 -34 -1 -65 1 -68 4 -3 3
|
|
240
|
+
-18 2 -33 -3 -16 -4 -34 -4 -41 0 -7 4 -26 4 -41 0 -16 -5 -31 -5 -34 0 -3 5
|
|
241
|
+
-18 5 -34 0 -15 -4 -34 -4 -40 0 -7 4 -30 4 -51 0 -21 -4 -44 -4 -51 1 -7 4
|
|
242
|
+
-17 5 -22 2 -13 -8 -117 -9 -117 -1 0 4 -11 3 -24 -2 -13 -5 -26 -7 -29 -4 -7
|
|
243
|
+
8 -97 10 -97 3 0 -4 -17 -4 -37 0 -21 3 -60 4 -88 1 -27 -3 -60 -2 -72 2 -12
|
|
244
|
+
4 -25 3 -28 -1 -3 -5 -20 -5 -39 -1 -19 4 -37 5 -40 2 -8 -7 -66 -9 -66 -2 0
|
|
245
|
+
3 -27 3 -61 0 -33 -3 -62 -3 -65 1 -2 4 -17 4 -33 -1 -15 -4 -34 -4 -40 0 -7
|
|
246
|
+
4 -30 4 -51 0 -21 -4 -44 -4 -51 1 -7 4 -17 5 -22 2 -6 -3 -28 -5 -51 -5 -48
|
|
247
|
+
1 -114 2 -136 1 -8 0 -25 2 -37 4 -11 3 -24 3 -27 0z"/>
|
|
248
|
+
<path d="M28398 32165 c-2 -3 -15 -6 -29 -8 l-24 -4 -2 -211 -2 -212 845 0
|
|
249
|
+
844 0 2 -2451 3 -2452 247 -1 c239 -1 247 0 250 19 2 11 3 1115 3 2453 l-1
|
|
250
|
+
2432 843 -2 843 -3 1 35 c4 283 3 400 -6 397 -5 -2 -22 -1 -37 4 -14 4 -29 5
|
|
251
|
+
-32 2 -7 -8 -76 -10 -76 -3 0 3 -29 3 -65 0 -36 -3 -74 -2 -85 2 -11 4 -22 3
|
|
252
|
+
-25 -1 -3 -5 -21 -5 -40 -1 -19 4 -35 5 -35 1 0 -3 -16 -6 -35 -6 -19 0 -35 2
|
|
253
|
+
-35 5 0 3 -27 3 -61 0 -33 -3 -62 -3 -65 1 -2 4 -17 4 -33 -1 -15 -4 -34 -4
|
|
254
|
+
-40 0 -7 4 -30 4 -51 0 -21 -4 -44 -4 -51 1 -7 4 -17 5 -22 2 -12 -7 -116 -7
|
|
255
|
+
-123 0 -3 3 -16 2 -29 -3 -13 -5 -25 -7 -26 -5 -9 8 -68 12 -79 5 -7 -4 -25
|
|
256
|
+
-4 -41 0 -15 5 -30 6 -33 3 -7 -8 -133 -6 -145 1 -5 4 -12 2 -15 -3 -3 -5 -21
|
|
257
|
+
-5 -41 -1 -19 4 -35 5 -35 1 0 -3 -16 -6 -35 -6 -19 0 -35 2 -35 6 0 3 -24 2
|
|
258
|
+
-53 -1 -29 -3 -64 -3 -78 0 -13 4 -36 3 -50 -1 -15 -4 -32 -3 -40 1 -7 5 -20
|
|
259
|
+
5 -28 1 -9 -4 -29 -5 -46 -2 -16 4 -53 4 -81 1 -27 -3 -61 -3 -75 0 -13 4 -35
|
|
260
|
+
4 -49 0 -14 -3 -38 -3 -55 0 -16 3 -45 3 -63 -1 -17 -4 -34 -4 -37 1 -2 4 -24
|
|
261
|
+
4 -47 0 -24 -3 -54 -3 -68 0 -14 4 -37 3 -51 -1 -15 -4 -32 -3 -40 1 -7 5 -20
|
|
262
|
+
5 -30 0 -9 -5 -19 -7 -22 -4 -3 4 -37 5 -74 4 -37 -1 -74 -1 -80 -1 -25 1 -84
|
|
263
|
+
1 -128 -1 -25 0 -48 2 -51 5 -3 3 -18 2 -32 -2 -15 -5 -36 -5 -47 -1 -11 4
|
|
264
|
+
-32 4 -47 -1 -15 -4 -30 -4 -33 1 -3 5 -18 5 -34 0 -15 -4 -34 -4 -40 0 -7 4
|
|
265
|
+
-30 4 -51 0 -21 -4 -44 -4 -51 1 -7 4 -17 5 -22 2 -13 -8 -97 -9 -97 -1 0 4
|
|
266
|
+
-13 3 -29 -2 -16 -4 -32 -6 -35 -3 -7 8 -164 5 -176 -2 -6 -3 -10 -2 -10 3 0
|
|
267
|
+
4 -22 6 -49 2 -27 -3 -58 -3 -70 1 -11 5 -23 4 -26 0 -3 -5 -21 -5 -40 -1 -19
|
|
268
|
+
4 -35 5 -35 1 0 -3 -16 -6 -35 -6 -19 0 -35 2 -35 5 0 3 -27 3 -60 0 -33 -3
|
|
269
|
+
-66 -2 -74 2 -7 4 -15 5 -18 3z"/>
|
|
270
|
+
<path d="M38643 32147 c-8 -13 -8 -911 0 -924 4 -6 482 -9 1317 -9 722 1 1316
|
|
271
|
+
-2 1321 -5 5 -3 -1 -17 -13 -31 -13 -14 -45 -54 -73 -89 -27 -35 -54 -69 -60
|
|
272
|
+
-76 -5 -6 -21 -26 -35 -44 -60 -79 -145 -184 -152 -187 -5 -2 -8 -10 -8 -17 0
|
|
273
|
+
-7 -3 -15 -8 -17 -6 -3 -55 -63 -217 -268 -33 -41 -65 -82 -72 -90 -6 -8 -87
|
|
274
|
+
-109 -178 -225 -91 -115 -175 -220 -186 -233 -10 -12 -19 -25 -19 -27 0 -3 -9
|
|
275
|
+
-16 -20 -28 -12 -12 -46 -55 -78 -97 -31 -41 -60 -77 -63 -80 -6 -5 -108 -133
|
|
276
|
+
-159 -200 -14 -18 -30 -38 -35 -44 -6 -6 -24 -29 -40 -51 -17 -22 -32 -42 -35
|
|
277
|
+
-45 -3 -3 -48 -59 -100 -125 -52 -66 -98 -121 -102 -123 -4 -2 -8 -10 -8 -18
|
|
278
|
+
0 -8 -4 -14 -9 -14 -4 0 -19 -16 -32 -34 -18 -26 -287 -368 -406 -516 -25 -31
|
|
279
|
+
-189 -239 -218 -276 -27 -34 -47 -60 -150 -189 -16 -21 -76 -97 -133 -168
|
|
280
|
+
l-102 -130 2 -470 3 -470 2045 0 c1125 1 2050 2 2055 2 7 1 10 160 10 469 l0
|
|
281
|
+
467 -1370 2 c-753 1 -1376 2 -1383 2 -13 1 34 68 71 102 9 9 17 21 17 27 0 6
|
|
282
|
+
4 12 8 14 4 2 108 131 231 288 124 157 230 290 238 296 7 6 13 16 13 22 0 6 6
|
|
283
|
+
15 13 19 6 4 41 46 77 93 61 79 91 117 115 144 6 6 28 36 50 66 22 30 47 62
|
|
284
|
+
55 70 9 9 31 37 49 63 19 26 38 47 43 47 4 0 8 6 8 14 0 8 3 16 8 18 4 2 66
|
|
285
|
+
77 137 168 71 91 134 170 140 177 14 17 21 26 108 138 43 55 86 109 95 120 10
|
|
286
|
+
11 35 44 57 73 21 28 43 52 47 52 4 0 8 5 8 11 0 6 6 16 13 23 6 7 23 28 37
|
|
287
|
+
46 14 18 33 43 42 54 9 12 30 37 45 56 16 19 53 66 82 104 29 37 59 75 67 85
|
|
288
|
+
7 9 52 66 99 126 48 61 94 119 103 130 10 11 31 38 47 60 16 22 37 49 47 60
|
|
289
|
+
10 11 48 58 84 105 36 47 73 94 83 105 9 11 30 38 46 60 16 22 32 42 35 45 3
|
|
290
|
+
3 30 36 60 75 62 79 81 102 95 119 6 6 32 40 60 76 27 36 55 71 61 77 7 7 21
|
|
291
|
+
27 32 45 19 31 20 50 18 363 -1 182 2 340 6 353 4 12 4 22 0 22 -4 0 -7 39 -7
|
|
292
|
+
87 l0 88 -2013 1 c-1277 0 -2015 -3 -2019 -9z"/>
|
|
293
|
+
<path d="M43506 32151 c-2 -3 -4 -1202 -4 -2663 l0 -2658 27 -1 c113 -4 4003
|
|
294
|
+
-1 4007 3 4 4 7 672 5 908 l-1 45 -1475 0 -1475 0 2 685 3 685 1292 0 1293 0
|
|
295
|
+
0 463 c0 433 -1 462 -17 463 -10 0 -592 1 -1293 2 l-1275 2 -3 559 c-1 330 2
|
|
296
|
+
562 7 565 5 3 640 6 1410 5 l1401 0 0 471 0 471 -1951 0 c-1072 0 -1952 -2
|
|
297
|
+
-1953 -5z"/>
|
|
298
|
+
<path d="M48439 32151 c-5 -18 -3 -5321 1 -5322 3 0 245 -2 538 -2 337 -1 536
|
|
299
|
+
2 540 8 3 5 6 475 6 1045 l1 1035 630 -1 c639 -1 679 -3 782 -25 32 -7 60 -13
|
|
300
|
+
63 -14 117 -24 284 -138 306 -208 4 -12 10 -24 13 -27 16 -12 66 -174 76 -245
|
|
301
|
+
3 -22 7 -56 10 -75 10 -79 15 -200 21 -510 6 -382 8 -425 29 -565 1 -11 6 -42
|
|
302
|
+
10 -70 3 -27 9 -58 11 -67 3 -10 8 -30 10 -45 6 -32 40 -164 54 -208 l10 -30
|
|
303
|
+
607 2 c335 0 611 2 614 2 4 1 6 31 6 67 -1 61 -3 67 -31 87 -94 65 -163 190
|
|
304
|
+
-181 322 -2 22 -7 56 -10 75 -3 19 -8 227 -10 461 -4 494 -9 582 -40 769 -19
|
|
305
|
+
113 -86 299 -131 365 -13 20 -24 38 -24 41 0 15 -128 147 -185 189 -22 17 -42
|
|
306
|
+
32 -45 36 -3 3 -25 16 -50 30 -25 13 -47 27 -50 30 -3 3 -38 20 -78 39 l-73
|
|
307
|
+
34 33 12 c86 30 251 117 286 151 7 7 17 13 21 13 24 0 231 223 231 249 0 6 4
|
|
308
|
+
11 8 11 7 0 93 165 123 235 20 48 58 165 74 229 26 106 26 108 29 152 1 22 5
|
|
309
|
+
45 9 50 8 13 1 364 -8 419 -3 22 -11 58 -17 80 -6 22 -12 50 -14 63 -17 90
|
|
310
|
+
-134 358 -187 427 -4 6 -36 51 -71 100 -104 148 -269 298 -427 389 -80 47
|
|
311
|
+
-266 119 -334 132 -11 2 -38 8 -60 13 -22 5 -58 12 -80 15 -23 4 -50 8 -62 10
|
|
312
|
+
-12 3 -53 8 -90 12 -37 3 -79 8 -93 11 -37 7 -2800 11 -2801 4z m2349 -922
|
|
313
|
+
c125 -2 185 -7 277 -23 194 -34 346 -143 424 -301 31 -64 60 -154 67 -208 2
|
|
314
|
+
-17 6 -43 9 -57 7 -33 7 -256 0 -295 -5 -27 -16 -81 -20 -95 -1 -3 -5 -18 -10
|
|
315
|
+
-35 -26 -95 -151 -275 -191 -275 -8 0 -14 -4 -14 -8 0 -16 -131 -73 -213 -92
|
|
316
|
+
-130 -30 -147 -31 -437 -37 -329 -6 -288 -5 -330 -4 -36 2 -263 3 -290 2 -8 0
|
|
317
|
+
-62 0 -120 0 -58 1 -112 1 -120 0 -63 -3 -285 1 -290 5 -3 3 -5 325 -6 714 l0
|
|
318
|
+
709 65 3 c71 3 965 1 1199 -3z"/>
|
|
319
|
+
</g>
|
|
320
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/* Zepto v1.2.0 - zepto event ajax form ie - zeptojs.com/license */
|
|
2
|
+
!function(t,e){"function"==typeof define&&define.amd?define(function(){return e(t)}):e(t)}(this,function(t){var e=function(){function $(t){return null==t?String(t):S[C.call(t)]||"object"}function F(t){return"function"==$(t)}function k(t){return null!=t&&t==t.window}function M(t){return null!=t&&t.nodeType==t.DOCUMENT_NODE}function R(t){return"object"==$(t)}function Z(t){return R(t)&&!k(t)&&Object.getPrototypeOf(t)==Object.prototype}function z(t){var e=!!t&&"length"in t&&t.length,n=r.type(t);return"function"!=n&&!k(t)&&("array"==n||0===e||"number"==typeof e&&e>0&&e-1 in t)}function q(t){return a.call(t,function(t){return null!=t})}function H(t){return t.length>0?r.fn.concat.apply([],t):t}function I(t){return t.replace(/::/g,"/").replace(/([A-Z]+)([A-Z][a-z])/g,"$1_$2").replace(/([a-z\d])([A-Z])/g,"$1_$2").replace(/_/g,"-").toLowerCase()}function V(t){return t in l?l[t]:l[t]=new RegExp("(^|\\s)"+t+"(\\s|$)")}function _(t,e){return"number"!=typeof e||h[I(t)]?e:e+"px"}function B(t){var e,n;return c[t]||(e=f.createElement(t),f.body.appendChild(e),n=getComputedStyle(e,"").getPropertyValue("display"),e.parentNode.removeChild(e),"none"==n&&(n="block"),c[t]=n),c[t]}function U(t){return"children"in t?u.call(t.children):r.map(t.childNodes,function(t){return 1==t.nodeType?t:void 0})}function X(t,e){var n,r=t?t.length:0;for(n=0;r>n;n++)this[n]=t[n];this.length=r,this.selector=e||""}function J(t,r,i){for(n in r)i&&(Z(r[n])||L(r[n]))?(Z(r[n])&&!Z(t[n])&&(t[n]={}),L(r[n])&&!L(t[n])&&(t[n]=[]),J(t[n],r[n],i)):r[n]!==e&&(t[n]=r[n])}function W(t,e){return null==e?r(t):r(t).filter(e)}function Y(t,e,n,r){return F(e)?e.call(t,n,r):e}function G(t,e,n){null==n?t.removeAttribute(e):t.setAttribute(e,n)}function K(t,n){var r=t.className||"",i=r&&r.baseVal!==e;return n===e?i?r.baseVal:r:void(i?r.baseVal=n:t.className=n)}function Q(t){try{return t?"true"==t||("false"==t?!1:"null"==t?null:+t+""==t?+t:/^[\[\{]/.test(t)?r.parseJSON(t):t):t}catch(e){return t}}function tt(t,e){e(t);for(var n=0,r=t.childNodes.length;r>n;n++)tt(t.childNodes[n],e)}var e,n,r,i,O,P,o=[],s=o.concat,a=o.filter,u=o.slice,f=t.document,c={},l={},h={"column-count":1,columns:1,"font-weight":1,"line-height":1,opacity:1,"z-index":1,zoom:1},p=/^\s*<(\w+|!)[^>]*>/,d=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,m=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,g=/^(?:body|html)$/i,v=/([A-Z])/g,y=["val","css","html","text","data","width","height","offset"],x=["after","prepend","before","append"],b=f.createElement("table"),E=f.createElement("tr"),j={tr:f.createElement("tbody"),tbody:b,thead:b,tfoot:b,td:E,th:E,"*":f.createElement("div")},w=/complete|loaded|interactive/,T=/^[\w-]*$/,S={},C=S.toString,N={},A=f.createElement("div"),D={tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},L=Array.isArray||function(t){return t instanceof Array};return N.matches=function(t,e){if(!e||!t||1!==t.nodeType)return!1;var n=t.matches||t.webkitMatchesSelector||t.mozMatchesSelector||t.oMatchesSelector||t.matchesSelector;if(n)return n.call(t,e);var r,i=t.parentNode,o=!i;return o&&(i=A).appendChild(t),r=~N.qsa(i,e).indexOf(t),o&&A.removeChild(t),r},O=function(t){return t.replace(/-+(.)?/g,function(t,e){return e?e.toUpperCase():""})},P=function(t){return a.call(t,function(e,n){return t.indexOf(e)==n})},N.fragment=function(t,n,i){var o,s,a;return d.test(t)&&(o=r(f.createElement(RegExp.$1))),o||(t.replace&&(t=t.replace(m,"<$1></$2>")),n===e&&(n=p.test(t)&&RegExp.$1),n in j||(n="*"),a=j[n],a.innerHTML=""+t,o=r.each(u.call(a.childNodes),function(){a.removeChild(this)})),Z(i)&&(s=r(o),r.each(i,function(t,e){y.indexOf(t)>-1?s[t](e):s.attr(t,e)})),o},N.Z=function(t,e){return new X(t,e)},N.isZ=function(t){return t instanceof N.Z},N.init=function(t,n){var i;if(!t)return N.Z();if("string"==typeof t)if(t=t.trim(),"<"==t[0]&&p.test(t))i=N.fragment(t,RegExp.$1,n),t=null;else{if(n!==e)return r(n).find(t);i=N.qsa(f,t)}else{if(F(t))return r(f).ready(t);if(N.isZ(t))return t;if(L(t))i=q(t);else if(R(t))i=[t],t=null;else if(p.test(t))i=N.fragment(t.trim(),RegExp.$1,n),t=null;else{if(n!==e)return r(n).find(t);i=N.qsa(f,t)}}return N.Z(i,t)},r=function(t,e){return N.init(t,e)},r.extend=function(t){var e,n=u.call(arguments,1);return"boolean"==typeof t&&(e=t,t=n.shift()),n.forEach(function(n){J(t,n,e)}),t},N.qsa=function(t,e){var n,r="#"==e[0],i=!r&&"."==e[0],o=r||i?e.slice(1):e,s=T.test(o);return t.getElementById&&s&&r?(n=t.getElementById(o))?[n]:[]:1!==t.nodeType&&9!==t.nodeType&&11!==t.nodeType?[]:u.call(s&&!r&&t.getElementsByClassName?i?t.getElementsByClassName(o):t.getElementsByTagName(e):t.querySelectorAll(e))},r.contains=f.documentElement.contains?function(t,e){return t!==e&&t.contains(e)}:function(t,e){for(;e&&(e=e.parentNode);)if(e===t)return!0;return!1},r.type=$,r.isFunction=F,r.isWindow=k,r.isArray=L,r.isPlainObject=Z,r.isEmptyObject=function(t){var e;for(e in t)return!1;return!0},r.isNumeric=function(t){var e=Number(t),n=typeof t;return null!=t&&"boolean"!=n&&("string"!=n||t.length)&&!isNaN(e)&&isFinite(e)||!1},r.inArray=function(t,e,n){return o.indexOf.call(e,t,n)},r.camelCase=O,r.trim=function(t){return null==t?"":String.prototype.trim.call(t)},r.uuid=0,r.support={},r.expr={},r.noop=function(){},r.map=function(t,e){var n,i,o,r=[];if(z(t))for(i=0;i<t.length;i++)n=e(t[i],i),null!=n&&r.push(n);else for(o in t)n=e(t[o],o),null!=n&&r.push(n);return H(r)},r.each=function(t,e){var n,r;if(z(t)){for(n=0;n<t.length;n++)if(e.call(t[n],n,t[n])===!1)return t}else for(r in t)if(e.call(t[r],r,t[r])===!1)return t;return t},r.grep=function(t,e){return a.call(t,e)},t.JSON&&(r.parseJSON=JSON.parse),r.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(t,e){S["[object "+e+"]"]=e.toLowerCase()}),r.fn={constructor:N.Z,length:0,forEach:o.forEach,reduce:o.reduce,push:o.push,sort:o.sort,splice:o.splice,indexOf:o.indexOf,concat:function(){var t,e,n=[];for(t=0;t<arguments.length;t++)e=arguments[t],n[t]=N.isZ(e)?e.toArray():e;return s.apply(N.isZ(this)?this.toArray():this,n)},map:function(t){return r(r.map(this,function(e,n){return t.call(e,n,e)}))},slice:function(){return r(u.apply(this,arguments))},ready:function(t){return w.test(f.readyState)&&f.body?t(r):f.addEventListener("DOMContentLoaded",function(){t(r)},!1),this},get:function(t){return t===e?u.call(this):this[t>=0?t:t+this.length]},toArray:function(){return this.get()},size:function(){return this.length},remove:function(){return this.each(function(){null!=this.parentNode&&this.parentNode.removeChild(this)})},each:function(t){return o.every.call(this,function(e,n){return t.call(e,n,e)!==!1}),this},filter:function(t){return F(t)?this.not(this.not(t)):r(a.call(this,function(e){return N.matches(e,t)}))},add:function(t,e){return r(P(this.concat(r(t,e))))},is:function(t){return this.length>0&&N.matches(this[0],t)},not:function(t){var n=[];if(F(t)&&t.call!==e)this.each(function(e){t.call(this,e)||n.push(this)});else{var i="string"==typeof t?this.filter(t):z(t)&&F(t.item)?u.call(t):r(t);this.forEach(function(t){i.indexOf(t)<0&&n.push(t)})}return r(n)},has:function(t){return this.filter(function(){return R(t)?r.contains(this,t):r(this).find(t).size()})},eq:function(t){return-1===t?this.slice(t):this.slice(t,+t+1)},first:function(){var t=this[0];return t&&!R(t)?t:r(t)},last:function(){var t=this[this.length-1];return t&&!R(t)?t:r(t)},find:function(t){var e,n=this;return e=t?"object"==typeof t?r(t).filter(function(){var t=this;return o.some.call(n,function(e){return r.contains(e,t)})}):1==this.length?r(N.qsa(this[0],t)):this.map(function(){return N.qsa(this,t)}):r()},closest:function(t,e){var n=[],i="object"==typeof t&&r(t);return this.each(function(r,o){for(;o&&!(i?i.indexOf(o)>=0:N.matches(o,t));)o=o!==e&&!M(o)&&o.parentNode;o&&n.indexOf(o)<0&&n.push(o)}),r(n)},parents:function(t){for(var e=[],n=this;n.length>0;)n=r.map(n,function(t){return(t=t.parentNode)&&!M(t)&&e.indexOf(t)<0?(e.push(t),t):void 0});return W(e,t)},parent:function(t){return W(P(this.pluck("parentNode")),t)},children:function(t){return W(this.map(function(){return U(this)}),t)},contents:function(){return this.map(function(){return this.contentDocument||u.call(this.childNodes)})},siblings:function(t){return W(this.map(function(t,e){return a.call(U(e.parentNode),function(t){return t!==e})}),t)},empty:function(){return this.each(function(){this.innerHTML=""})},pluck:function(t){return r.map(this,function(e){return e[t]})},show:function(){return this.each(function(){"none"==this.style.display&&(this.style.display=""),"none"==getComputedStyle(this,"").getPropertyValue("display")&&(this.style.display=B(this.nodeName))})},replaceWith:function(t){return this.before(t).remove()},wrap:function(t){var e=F(t);if(this[0]&&!e)var n=r(t).get(0),i=n.parentNode||this.length>1;return this.each(function(o){r(this).wrapAll(e?t.call(this,o):i?n.cloneNode(!0):n)})},wrapAll:function(t){if(this[0]){r(this[0]).before(t=r(t));for(var e;(e=t.children()).length;)t=e.first();r(t).append(this)}return this},wrapInner:function(t){var e=F(t);return this.each(function(n){var i=r(this),o=i.contents(),s=e?t.call(this,n):t;o.length?o.wrapAll(s):i.append(s)})},unwrap:function(){return this.parent().each(function(){r(this).replaceWith(r(this).children())}),this},clone:function(){return this.map(function(){return this.cloneNode(!0)})},hide:function(){return this.css("display","none")},toggle:function(t){return this.each(function(){var n=r(this);(t===e?"none"==n.css("display"):t)?n.show():n.hide()})},prev:function(t){return r(this.pluck("previousElementSibling")).filter(t||"*")},next:function(t){return r(this.pluck("nextElementSibling")).filter(t||"*")},html:function(t){return 0 in arguments?this.each(function(e){var n=this.innerHTML;r(this).empty().append(Y(this,t,e,n))}):0 in this?this[0].innerHTML:null},text:function(t){return 0 in arguments?this.each(function(e){var n=Y(this,t,e,this.textContent);this.textContent=null==n?"":""+n}):0 in this?this.pluck("textContent").join(""):null},attr:function(t,r){var i;return"string"!=typeof t||1 in arguments?this.each(function(e){if(1===this.nodeType)if(R(t))for(n in t)G(this,n,t[n]);else G(this,t,Y(this,r,e,this.getAttribute(t)))}):0 in this&&1==this[0].nodeType&&null!=(i=this[0].getAttribute(t))?i:e},removeAttr:function(t){return this.each(function(){1===this.nodeType&&t.split(" ").forEach(function(t){G(this,t)},this)})},prop:function(t,e){return t=D[t]||t,1 in arguments?this.each(function(n){this[t]=Y(this,e,n,this[t])}):this[0]&&this[0][t]},removeProp:function(t){return t=D[t]||t,this.each(function(){delete this[t]})},data:function(t,n){var r="data-"+t.replace(v,"-$1").toLowerCase(),i=1 in arguments?this.attr(r,n):this.attr(r);return null!==i?Q(i):e},val:function(t){return 0 in arguments?(null==t&&(t=""),this.each(function(e){this.value=Y(this,t,e,this.value)})):this[0]&&(this[0].multiple?r(this[0]).find("option").filter(function(){return this.selected}).pluck("value"):this[0].value)},offset:function(e){if(e)return this.each(function(t){var n=r(this),i=Y(this,e,t,n.offset()),o=n.offsetParent().offset(),s={top:i.top-o.top,left:i.left-o.left};"static"==n.css("position")&&(s.position="relative"),n.css(s)});if(!this.length)return null;if(f.documentElement!==this[0]&&!r.contains(f.documentElement,this[0]))return{top:0,left:0};var n=this[0].getBoundingClientRect();return{left:n.left+t.pageXOffset,top:n.top+t.pageYOffset,width:Math.round(n.width),height:Math.round(n.height)}},css:function(t,e){if(arguments.length<2){var i=this[0];if("string"==typeof t){if(!i)return;return i.style[O(t)]||getComputedStyle(i,"").getPropertyValue(t)}if(L(t)){if(!i)return;var o={},s=getComputedStyle(i,"");return r.each(t,function(t,e){o[e]=i.style[O(e)]||s.getPropertyValue(e)}),o}}var a="";if("string"==$(t))e||0===e?a=I(t)+":"+_(t,e):this.each(function(){this.style.removeProperty(I(t))});else for(n in t)t[n]||0===t[n]?a+=I(n)+":"+_(n,t[n])+";":this.each(function(){this.style.removeProperty(I(n))});return this.each(function(){this.style.cssText+=";"+a})},index:function(t){return t?this.indexOf(r(t)[0]):this.parent().children().indexOf(this[0])},hasClass:function(t){return t?o.some.call(this,function(t){return this.test(K(t))},V(t)):!1},addClass:function(t){return t?this.each(function(e){if("className"in this){i=[];var n=K(this),o=Y(this,t,e,n);o.split(/\s+/g).forEach(function(t){r(this).hasClass(t)||i.push(t)},this),i.length&&K(this,n+(n?" ":"")+i.join(" "))}}):this},removeClass:function(t){return this.each(function(n){if("className"in this){if(t===e)return K(this,"");i=K(this),Y(this,t,n,i).split(/\s+/g).forEach(function(t){i=i.replace(V(t)," ")}),K(this,i.trim())}})},toggleClass:function(t,n){return t?this.each(function(i){var o=r(this),s=Y(this,t,i,K(this));s.split(/\s+/g).forEach(function(t){(n===e?!o.hasClass(t):n)?o.addClass(t):o.removeClass(t)})}):this},scrollTop:function(t){if(this.length){var n="scrollTop"in this[0];return t===e?n?this[0].scrollTop:this[0].pageYOffset:this.each(n?function(){this.scrollTop=t}:function(){this.scrollTo(this.scrollX,t)})}},scrollLeft:function(t){if(this.length){var n="scrollLeft"in this[0];return t===e?n?this[0].scrollLeft:this[0].pageXOffset:this.each(n?function(){this.scrollLeft=t}:function(){this.scrollTo(t,this.scrollY)})}},position:function(){if(this.length){var t=this[0],e=this.offsetParent(),n=this.offset(),i=g.test(e[0].nodeName)?{top:0,left:0}:e.offset();return n.top-=parseFloat(r(t).css("margin-top"))||0,n.left-=parseFloat(r(t).css("margin-left"))||0,i.top+=parseFloat(r(e[0]).css("border-top-width"))||0,i.left+=parseFloat(r(e[0]).css("border-left-width"))||0,{top:n.top-i.top,left:n.left-i.left}}},offsetParent:function(){return this.map(function(){for(var t=this.offsetParent||f.body;t&&!g.test(t.nodeName)&&"static"==r(t).css("position");)t=t.offsetParent;return t})}},r.fn.detach=r.fn.remove,["width","height"].forEach(function(t){var n=t.replace(/./,function(t){return t[0].toUpperCase()});r.fn[t]=function(i){var o,s=this[0];return i===e?k(s)?s["inner"+n]:M(s)?s.documentElement["scroll"+n]:(o=this.offset())&&o[t]:this.each(function(e){s=r(this),s.css(t,Y(this,i,e,s[t]()))})}}),x.forEach(function(n,i){var o=i%2;r.fn[n]=function(){var n,a,s=r.map(arguments,function(t){var i=[];return n=$(t),"array"==n?(t.forEach(function(t){return t.nodeType!==e?i.push(t):r.zepto.isZ(t)?i=i.concat(t.get()):void(i=i.concat(N.fragment(t)))}),i):"object"==n||null==t?t:N.fragment(t)}),u=this.length>1;return s.length<1?this:this.each(function(e,n){a=o?n:n.parentNode,n=0==i?n.nextSibling:1==i?n.firstChild:2==i?n:null;var c=r.contains(f.documentElement,a);s.forEach(function(e){if(u)e=e.cloneNode(!0);else if(!a)return r(e).remove();a.insertBefore(e,n),c&&tt(e,function(e){if(!(null==e.nodeName||"SCRIPT"!==e.nodeName.toUpperCase()||e.type&&"text/javascript"!==e.type||e.src)){var n=e.ownerDocument?e.ownerDocument.defaultView:t;n.eval.call(n,e.innerHTML)}})})})},r.fn[o?n+"To":"insert"+(i?"Before":"After")]=function(t){return r(t)[n](this),this}}),N.Z.prototype=X.prototype=r.fn,N.uniq=P,N.deserializeValue=Q,r.zepto=N,r}();return t.Zepto=e,void 0===t.$&&(t.$=e),function(e){function h(t){return t._zid||(t._zid=n++)}function p(t,e,n,r){if(e=d(e),e.ns)var i=m(e.ns);return(a[h(t)]||[]).filter(function(t){return t&&(!e.e||t.e==e.e)&&(!e.ns||i.test(t.ns))&&(!n||h(t.fn)===h(n))&&(!r||t.sel==r)})}function d(t){var e=(""+t).split(".");return{e:e[0],ns:e.slice(1).sort().join(" ")}}function m(t){return new RegExp("(?:^| )"+t.replace(" "," .* ?")+"(?: |$)")}function g(t,e){return t.del&&!f&&t.e in c||!!e}function v(t){return l[t]||f&&c[t]||t}function y(t,n,i,o,s,u,f){var c=h(t),p=a[c]||(a[c]=[]);n.split(/\s/).forEach(function(n){if("ready"==n)return e(document).ready(i);var a=d(n);a.fn=i,a.sel=s,a.e in l&&(i=function(t){var n=t.relatedTarget;return!n||n!==this&&!e.contains(this,n)?a.fn.apply(this,arguments):void 0}),a.del=u;var c=u||i;a.proxy=function(e){if(e=T(e),!e.isImmediatePropagationStopped()){e.data=o;var n=c.apply(t,e._args==r?[e]:[e].concat(e._args));return n===!1&&(e.preventDefault(),e.stopPropagation()),n}},a.i=p.length,p.push(a),"addEventListener"in t&&t.addEventListener(v(a.e),a.proxy,g(a,f))})}function x(t,e,n,r,i){var o=h(t);(e||"").split(/\s/).forEach(function(e){p(t,e,n,r).forEach(function(e){delete a[o][e.i],"removeEventListener"in t&&t.removeEventListener(v(e.e),e.proxy,g(e,i))})})}function T(t,n){return(n||!t.isDefaultPrevented)&&(n||(n=t),e.each(w,function(e,r){var i=n[e];t[e]=function(){return this[r]=b,i&&i.apply(n,arguments)},t[r]=E}),t.timeStamp||(t.timeStamp=Date.now()),(n.defaultPrevented!==r?n.defaultPrevented:"returnValue"in n?n.returnValue===!1:n.getPreventDefault&&n.getPreventDefault())&&(t.isDefaultPrevented=b)),t}function S(t){var e,n={originalEvent:t};for(e in t)j.test(e)||t[e]===r||(n[e]=t[e]);return T(n,t)}var r,n=1,i=Array.prototype.slice,o=e.isFunction,s=function(t){return"string"==typeof t},a={},u={},f="onfocusin"in t,c={focus:"focusin",blur:"focusout"},l={mouseenter:"mouseover",mouseleave:"mouseout"};u.click=u.mousedown=u.mouseup=u.mousemove="MouseEvents",e.event={add:y,remove:x},e.proxy=function(t,n){var r=2 in arguments&&i.call(arguments,2);if(o(t)){var a=function(){return t.apply(n,r?r.concat(i.call(arguments)):arguments)};return a._zid=h(t),a}if(s(n))return r?(r.unshift(t[n],t),e.proxy.apply(null,r)):e.proxy(t[n],t);throw new TypeError("expected function")},e.fn.bind=function(t,e,n){return this.on(t,e,n)},e.fn.unbind=function(t,e){return this.off(t,e)},e.fn.one=function(t,e,n,r){return this.on(t,e,n,r,1)};var b=function(){return!0},E=function(){return!1},j=/^([A-Z]|returnValue$|layer[XY]$|webkitMovement[XY]$)/,w={preventDefault:"isDefaultPrevented",stopImmediatePropagation:"isImmediatePropagationStopped",stopPropagation:"isPropagationStopped"};e.fn.delegate=function(t,e,n){return this.on(e,t,n)},e.fn.undelegate=function(t,e,n){return this.off(e,t,n)},e.fn.live=function(t,n){return e(document.body).delegate(this.selector,t,n),this},e.fn.die=function(t,n){return e(document.body).undelegate(this.selector,t,n),this},e.fn.on=function(t,n,a,u,f){var c,l,h=this;return t&&!s(t)?(e.each(t,function(t,e){h.on(t,n,a,e,f)}),h):(s(n)||o(u)||u===!1||(u=a,a=n,n=r),(u===r||a===!1)&&(u=a,a=r),u===!1&&(u=E),h.each(function(r,o){f&&(c=function(t){return x(o,t.type,u),u.apply(this,arguments)}),n&&(l=function(t){var r,s=e(t.target).closest(n,o).get(0);return s&&s!==o?(r=e.extend(S(t),{currentTarget:s,liveFired:o}),(c||u).apply(s,[r].concat(i.call(arguments,1)))):void 0}),y(o,t,u,a,n,l||c)}))},e.fn.off=function(t,n,i){var a=this;return t&&!s(t)?(e.each(t,function(t,e){a.off(t,n,e)}),a):(s(n)||o(i)||i===!1||(i=n,n=r),i===!1&&(i=E),a.each(function(){x(this,t,i,n)}))},e.fn.trigger=function(t,n){return t=s(t)||e.isPlainObject(t)?e.Event(t):T(t),t._args=n,this.each(function(){t.type in c&&"function"==typeof this[t.type]?this[t.type]():"dispatchEvent"in this?this.dispatchEvent(t):e(this).triggerHandler(t,n)})},e.fn.triggerHandler=function(t,n){var r,i;return this.each(function(o,a){r=S(s(t)?e.Event(t):t),r._args=n,r.target=a,e.each(p(a,t.type||t),function(t,e){return i=e.proxy(r),r.isImmediatePropagationStopped()?!1:void 0})}),i},"focusin focusout focus blur load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select keydown keypress keyup error".split(" ").forEach(function(t){e.fn[t]=function(e){return 0 in arguments?this.bind(t,e):this.trigger(t)}}),e.Event=function(t,e){s(t)||(e=t,t=e.type);var n=document.createEvent(u[t]||"Events"),r=!0;if(e)for(var i in e)"bubbles"==i?r=!!e[i]:n[i]=e[i];return n.initEvent(t,r,!0),T(n)}}(e),function(e){function p(t,n,r){var i=e.Event(n);return e(t).trigger(i,r),!i.isDefaultPrevented()}function d(t,e,n,i){return t.global?p(e||r,n,i):void 0}function m(t){t.global&&0===e.active++&&d(t,null,"ajaxStart")}function g(t){t.global&&!--e.active&&d(t,null,"ajaxStop")}function v(t,e){var n=e.context;return e.beforeSend.call(n,t,e)===!1||d(e,n,"ajaxBeforeSend",[t,e])===!1?!1:void d(e,n,"ajaxSend",[t,e])}function y(t,e,n,r){var i=n.context,o="success";n.success.call(i,t,o,e),r&&r.resolveWith(i,[t,o,e]),d(n,i,"ajaxSuccess",[e,n,t]),b(o,e,n)}function x(t,e,n,r,i){var o=r.context;r.error.call(o,n,e,t),i&&i.rejectWith(o,[n,e,t]),d(r,o,"ajaxError",[n,r,t||e]),b(e,n,r)}function b(t,e,n){var r=n.context;n.complete.call(r,e,t),d(n,r,"ajaxComplete",[e,n]),g(n)}function E(t,e,n){if(n.dataFilter==j)return t;var r=n.context;return n.dataFilter.call(r,t,e)}function j(){}function w(t){return t&&(t=t.split(";",2)[0]),t&&(t==c?"html":t==f?"json":a.test(t)?"script":u.test(t)&&"xml")||"text"}function T(t,e){return""==e?t:(t+"&"+e).replace(/[&?]{1,2}/,"?")}function S(t){t.processData&&t.data&&"string"!=e.type(t.data)&&(t.data=e.param(t.data,t.traditional)),!t.data||t.type&&"GET"!=t.type.toUpperCase()&&"jsonp"!=t.dataType||(t.url=T(t.url,t.data),t.data=void 0)}function C(t,n,r,i){return e.isFunction(n)&&(i=r,r=n,n=void 0),e.isFunction(r)||(i=r,r=void 0),{url:t,data:n,success:r,dataType:i}}function O(t,n,r,i){var o,s=e.isArray(n),a=e.isPlainObject(n);e.each(n,function(n,u){o=e.type(u),i&&(n=r?i:i+"["+(a||"object"==o||"array"==o?n:"")+"]"),!i&&s?t.add(u.name,u.value):"array"==o||!r&&"object"==o?O(t,u,r,n):t.add(n,u)})}var i,o,n=+new Date,r=t.document,s=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,a=/^(?:text|application)\/javascript/i,u=/^(?:text|application)\/xml/i,f="application/json",c="text/html",l=/^\s*$/,h=r.createElement("a");h.href=t.location.href,e.active=0,e.ajaxJSONP=function(i,o){if(!("type"in i))return e.ajax(i);var c,p,s=i.jsonpCallback,a=(e.isFunction(s)?s():s)||"Zepto"+n++,u=r.createElement("script"),f=t[a],l=function(t){e(u).triggerHandler("error",t||"abort")},h={abort:l};return o&&o.promise(h),e(u).on("load error",function(n,r){clearTimeout(p),e(u).off().remove(),"error"!=n.type&&c?y(c[0],h,i,o):x(null,r||"error",h,i,o),t[a]=f,c&&e.isFunction(f)&&f(c[0]),f=c=void 0}),v(h,i)===!1?(l("abort"),h):(t[a]=function(){c=arguments},u.src=i.url.replace(/\?(.+)=\?/,"?$1="+a),r.head.appendChild(u),i.timeout>0&&(p=setTimeout(function(){l("timeout")},i.timeout)),h)},e.ajaxSettings={type:"GET",beforeSend:j,success:j,error:j,complete:j,context:null,global:!0,xhr:function(){return new t.XMLHttpRequest},accepts:{script:"text/javascript, application/javascript, application/x-javascript",json:f,xml:"application/xml, text/xml",html:c,text:"text/plain"},crossDomain:!1,timeout:0,processData:!0,cache:!0,dataFilter:j},e.ajax=function(n){var u,f,s=e.extend({},n||{}),a=e.Deferred&&e.Deferred();for(i in e.ajaxSettings)void 0===s[i]&&(s[i]=e.ajaxSettings[i]);m(s),s.crossDomain||(u=r.createElement("a"),u.href=s.url,u.href=u.href,s.crossDomain=h.protocol+"//"+h.host!=u.protocol+"//"+u.host),s.url||(s.url=t.location.toString()),(f=s.url.indexOf("#"))>-1&&(s.url=s.url.slice(0,f)),S(s);var c=s.dataType,p=/\?.+=\?/.test(s.url);if(p&&(c="jsonp"),s.cache!==!1&&(n&&n.cache===!0||"script"!=c&&"jsonp"!=c)||(s.url=T(s.url,"_="+Date.now())),"jsonp"==c)return p||(s.url=T(s.url,s.jsonp?s.jsonp+"=?":s.jsonp===!1?"":"callback=?")),e.ajaxJSONP(s,a);var P,d=s.accepts[c],g={},b=function(t,e){g[t.toLowerCase()]=[t,e]},C=/^([\w-]+:)\/\//.test(s.url)?RegExp.$1:t.location.protocol,N=s.xhr(),O=N.setRequestHeader;if(a&&a.promise(N),s.crossDomain||b("X-Requested-With","XMLHttpRequest"),b("Accept",d||"*/*"),(d=s.mimeType||d)&&(d.indexOf(",")>-1&&(d=d.split(",",2)[0]),N.overrideMimeType&&N.overrideMimeType(d)),(s.contentType||s.contentType!==!1&&s.data&&"GET"!=s.type.toUpperCase())&&b("Content-Type",s.contentType||"application/x-www-form-urlencoded"),s.headers)for(o in s.headers)b(o,s.headers[o]);if(N.setRequestHeader=b,N.onreadystatechange=function(){if(4==N.readyState){N.onreadystatechange=j,clearTimeout(P);var t,n=!1;if(N.status>=200&&N.status<300||304==N.status||0==N.status&&"file:"==C){if(c=c||w(s.mimeType||N.getResponseHeader("content-type")),"arraybuffer"==N.responseType||"blob"==N.responseType)t=N.response;else{t=N.responseText;try{t=E(t,c,s),"script"==c?(1,eval)(t):"xml"==c?t=N.responseXML:"json"==c&&(t=l.test(t)?null:e.parseJSON(t))}catch(r){n=r}if(n)return x(n,"parsererror",N,s,a)}y(t,N,s,a)}else x(N.statusText||null,N.status?"error":"abort",N,s,a)}},v(N,s)===!1)return N.abort(),x(null,"abort",N,s,a),N;var A="async"in s?s.async:!0;if(N.open(s.type,s.url,A,s.username,s.password),s.xhrFields)for(o in s.xhrFields)N[o]=s.xhrFields[o];for(o in g)O.apply(N,g[o]);return s.timeout>0&&(P=setTimeout(function(){N.onreadystatechange=j,N.abort(),x(null,"timeout",N,s,a)},s.timeout)),N.send(s.data?s.data:null),N},e.get=function(){return e.ajax(C.apply(null,arguments))},e.post=function(){var t=C.apply(null,arguments);return t.type="POST",e.ajax(t)},e.getJSON=function(){var t=C.apply(null,arguments);return t.dataType="json",e.ajax(t)},e.fn.load=function(t,n,r){if(!this.length)return this;var a,i=this,o=t.split(/\s/),u=C(t,n,r),f=u.success;return o.length>1&&(u.url=o[0],a=o[1]),u.success=function(t){i.html(a?e("<div>").html(t.replace(s,"")).find(a):t),f&&f.apply(i,arguments)},e.ajax(u),this};var N=encodeURIComponent;e.param=function(t,n){var r=[];return r.add=function(t,n){e.isFunction(n)&&(n=n()),null==n&&(n=""),this.push(N(t)+"="+N(n))},O(r,t,n),r.join("&").replace(/%20/g,"+")}}(e),function(t){t.fn.serializeArray=function(){var e,n,r=[],i=function(t){return t.forEach?t.forEach(i):void r.push({name:e,value:t})};return this[0]&&t.each(this[0].elements,function(r,o){n=o.type,e=o.name,e&&"fieldset"!=o.nodeName.toLowerCase()&&!o.disabled&&"submit"!=n&&"reset"!=n&&"button"!=n&&"file"!=n&&("radio"!=n&&"checkbox"!=n||o.checked)&&i(t(o).val())}),r},t.fn.serialize=function(){var t=[];return this.serializeArray().forEach(function(e){t.push(encodeURIComponent(e.name)+"="+encodeURIComponent(e.value))}),t.join("&")},t.fn.submit=function(e){if(0 in arguments)this.bind("submit",e);else if(this.length){var n=t.Event("submit");this.eq(0).trigger(n),n.isDefaultPrevented()||this.get(0).submit()}return this}}(e),function(){try{getComputedStyle(void 0)}catch(e){var n=getComputedStyle;t.getComputedStyle=function(t,e){try{return n(t,e)}catch(r){return null}}}}(),e});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { initSentry } from '@akinon/next/sentry';
|
|
2
|
+
|
|
3
|
+
async function initializeSentry() {
|
|
4
|
+
const response = await fetch('/api/sentry', { next: { revalidate: 0 } });
|
|
5
|
+
const data = await response.json();
|
|
6
|
+
|
|
7
|
+
const options = {
|
|
8
|
+
dsn: data.dsn,
|
|
9
|
+
integrations: [],
|
|
10
|
+
tracesSampleRate: 1.0
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
initSentry('Client', options);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
initializeSentry();
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useState } from 'react';
|
|
4
|
+
import { Button, LoaderSpinner, Modal } from '@theme/components';
|
|
5
|
+
import { AddressCard, AddressForm } from '@theme/views/account';
|
|
6
|
+
import {
|
|
7
|
+
useAddAddressMutation,
|
|
8
|
+
useGetAddressesQuery
|
|
9
|
+
} from '@akinon/next/data/client/address';
|
|
10
|
+
import { useLocalization } from '@akinon/next/hooks';
|
|
11
|
+
|
|
12
|
+
export default function Page() {
|
|
13
|
+
const { t } = useLocalization();
|
|
14
|
+
const [isNewAddressModalOpen, setIsNewAddressModalOpen] = useState(false);
|
|
15
|
+
|
|
16
|
+
const { data, isLoading, isSuccess } = useGetAddressesQuery();
|
|
17
|
+
const [addAddress] = useAddAddressMutation();
|
|
18
|
+
|
|
19
|
+
const onSubmit = async (data) => {
|
|
20
|
+
await addAddress(data);
|
|
21
|
+
setIsNewAddressModalOpen(false);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<div>
|
|
26
|
+
<div className="bg-gray-150 p-6 w-full mb-12">
|
|
27
|
+
<div className="mb-4 lg:flex lg:gap-16 lg:justify-center">
|
|
28
|
+
<h3 className="text-3xl text-center mb-4">
|
|
29
|
+
{t('account.address_book.header.title')}
|
|
30
|
+
</h3>
|
|
31
|
+
<Button
|
|
32
|
+
className="w-56 mx-auto block lg:mx-0"
|
|
33
|
+
onClick={() => setIsNewAddressModalOpen(true)}
|
|
34
|
+
data-testid="account-address-add"
|
|
35
|
+
>
|
|
36
|
+
{t('account.address_book.add_button')}
|
|
37
|
+
</Button>
|
|
38
|
+
<Modal
|
|
39
|
+
portalId="account-address-new-address-modal"
|
|
40
|
+
title={t('account.address_book.modal.add_new_address')}
|
|
41
|
+
open={isNewAddressModalOpen}
|
|
42
|
+
setOpen={setIsNewAddressModalOpen}
|
|
43
|
+
className="w-full sm:w-[28rem] max-h-[90vh] overflow-y-auto"
|
|
44
|
+
>
|
|
45
|
+
<AddressForm onSubmit={onSubmit} />
|
|
46
|
+
</Modal>
|
|
47
|
+
</div>
|
|
48
|
+
<p className="text-center max-w-xs mx-auto lg:max-w-none">
|
|
49
|
+
{t('account.address_book.header.description')}
|
|
50
|
+
</p>
|
|
51
|
+
</div>
|
|
52
|
+
{isLoading && (
|
|
53
|
+
<div className="flex justify-center mb-4">
|
|
54
|
+
<LoaderSpinner />
|
|
55
|
+
</div>
|
|
56
|
+
)}
|
|
57
|
+
{isSuccess && (
|
|
58
|
+
<div className="grid gap-10 grid-cols-1 lg:grid-cols-3">
|
|
59
|
+
{data.results.map((address, index) => (
|
|
60
|
+
<AddressCard address={address} key={address.pk} index={index} />
|
|
61
|
+
))}
|
|
62
|
+
</div>
|
|
63
|
+
)}
|
|
64
|
+
<Button
|
|
65
|
+
appearance="outlined"
|
|
66
|
+
className="w-full my-5 lg:hidden"
|
|
67
|
+
onClick={() => setIsNewAddressModalOpen(true)}
|
|
68
|
+
data-testid="account-address-add-2"
|
|
69
|
+
>
|
|
70
|
+
{t('account.address_book.add_button')}
|
|
71
|
+
</Button>
|
|
72
|
+
</div>
|
|
73
|
+
);
|
|
74
|
+
}
|