@salesforce/retail-react-app 1.0.0-preview.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/.eslintignore +7 -0
- package/.eslintrc.js +25 -0
- package/.prettierignore +4 -0
- package/.prettierrc.yaml +7 -0
- package/CHANGELOG.md +173 -0
- package/LICENSE +14 -0
- package/README.md +48 -0
- package/app/assets/svg/account.svg +3 -0
- package/app/assets/svg/alert.svg +3 -0
- package/app/assets/svg/basket.svg +3 -0
- package/app/assets/svg/brand-logo.svg +10 -0
- package/app/assets/svg/cc-amex.svg +7 -0
- package/app/assets/svg/cc-cvv.svg +8 -0
- package/app/assets/svg/cc-discover.svg +14 -0
- package/app/assets/svg/cc-mastercard.svg +8 -0
- package/app/assets/svg/cc-visa.svg +11 -0
- package/app/assets/svg/check-circle.svg +3 -0
- package/app/assets/svg/check.svg +3 -0
- package/app/assets/svg/chevron-down.svg +3 -0
- package/app/assets/svg/chevron-left.svg +3 -0
- package/app/assets/svg/chevron-right.svg +3 -0
- package/app/assets/svg/chevron-up.svg +3 -0
- package/app/assets/svg/close.svg +3 -0
- package/app/assets/svg/dashboard.svg +4 -0
- package/app/assets/svg/figma-logo.svg +14 -0
- package/app/assets/svg/file.svg +3 -0
- package/app/assets/svg/filter.svg +3 -0
- package/app/assets/svg/flag-ca.svg +5 -0
- package/app/assets/svg/flag-cn.svg +19 -0
- package/app/assets/svg/flag-fr.svg +19 -0
- package/app/assets/svg/flag-gb.svg +16 -0
- package/app/assets/svg/flag-it.svg +29 -0
- package/app/assets/svg/flag-jp.svg +10 -0
- package/app/assets/svg/flag-us.svg +7 -0
- package/app/assets/svg/github-logo.svg +40 -0
- package/app/assets/svg/hamburger.svg +8 -0
- package/app/assets/svg/heart-solid.svg +7 -0
- package/app/assets/svg/heart.svg +3 -0
- package/app/assets/svg/info.svg +3 -0
- package/app/assets/svg/like.svg +4 -0
- package/app/assets/svg/location.svg +3 -0
- package/app/assets/svg/lock.svg +3 -0
- package/app/assets/svg/paypal.svg +19 -0
- package/app/assets/svg/plug.svg +3 -0
- package/app/assets/svg/plus.svg +3 -0
- package/app/assets/svg/receipt.svg +3 -0
- package/app/assets/svg/search.svg +8 -0
- package/app/assets/svg/signout.svg +3 -0
- package/app/assets/svg/social-facebook.svg +3 -0
- package/app/assets/svg/social-instagram.svg +3 -0
- package/app/assets/svg/social-pinterest.svg +4 -0
- package/app/assets/svg/social-twitter.svg +3 -0
- package/app/assets/svg/social-youtube.svg +3 -0
- package/app/assets/svg/user.svg +3 -0
- package/app/assets/svg/visibility-off.svg +5 -0
- package/app/assets/svg/visibility.svg +3 -0
- package/app/components/_app/index.jsx +401 -0
- package/app/components/_app/index.test.js +85 -0
- package/app/components/_app/partials/above-header.jsx +10 -0
- package/app/components/_app-config/index.jsx +125 -0
- package/app/components/_app-config/index.test.js +77 -0
- package/app/components/_error/index.jsx +142 -0
- package/app/components/_error/index.test.js +25 -0
- package/app/components/action-card/index.jsx +75 -0
- package/app/components/address-display/index.jsx +30 -0
- package/app/components/basic-tile/index.jsx +65 -0
- package/app/components/basic-tile/index.test.js +23 -0
- package/app/components/breadcrumb/index.jsx +67 -0
- package/app/components/breadcrumb/index.test.js +30 -0
- package/app/components/confirmation-modal/index.jsx +111 -0
- package/app/components/confirmation-modal/index.test.js +98 -0
- package/app/components/drawer-menu/index.jsx +405 -0
- package/app/components/drawer-menu/index.test.js +33 -0
- package/app/components/dynamic-image/index.jsx +56 -0
- package/app/components/field/index.jsx +161 -0
- package/app/components/footer/index.jsx +269 -0
- package/app/components/footer/index.test.js +22 -0
- package/app/components/forms/address-fields.jsx +49 -0
- package/app/components/forms/credit-card-fields.jsx +149 -0
- package/app/components/forms/form-action-buttons.jsx +55 -0
- package/app/components/forms/login-fields.jsx +31 -0
- package/app/components/forms/password-requirements.jsx +99 -0
- package/app/components/forms/post-checkout-registration-fields.jsx +43 -0
- package/app/components/forms/profile-fields.jsx +36 -0
- package/app/components/forms/promo-code-fields.jsx +43 -0
- package/app/components/forms/registration-fields.jsx +42 -0
- package/app/components/forms/reset-password-fields.jsx +31 -0
- package/app/components/forms/state-province-options.jsx +75 -0
- package/app/components/forms/update-password-fields.jsx +49 -0
- package/app/components/forms/useAddressFields.jsx +196 -0
- package/app/components/forms/useCreditCardFields.jsx +146 -0
- package/app/components/forms/useLoginFields.jsx +52 -0
- package/app/components/forms/useProfileFields.jsx +95 -0
- package/app/components/forms/usePromoCodeFields.jsx +39 -0
- package/app/components/forms/useRegistrationFields.jsx +136 -0
- package/app/components/forms/useResetPasswordFields.jsx +40 -0
- package/app/components/forms/useUpdatePasswordFields.jsx +89 -0
- package/app/components/header/index.jsx +290 -0
- package/app/components/header/index.test.js +217 -0
- package/app/components/hero/index.jsx +84 -0
- package/app/components/hero/index.test.js +40 -0
- package/app/components/icons/index.jsx +158 -0
- package/app/components/icons/index.test.js +20 -0
- package/app/components/image-gallery/index.jsx +176 -0
- package/app/components/image-gallery/index.test.js +485 -0
- package/app/components/item-variant/index.jsx +33 -0
- package/app/components/item-variant/item-attributes.jsx +107 -0
- package/app/components/item-variant/item-image.jsx +73 -0
- package/app/components/item-variant/item-name.jsx +28 -0
- package/app/components/item-variant/item-price.jsx +117 -0
- package/app/components/link/index.jsx +32 -0
- package/app/components/link/index.test.js +72 -0
- package/app/components/links-list/index.jsx +89 -0
- package/app/components/links-list/index.test.js +62 -0
- package/app/components/list-menu/index.jsx +280 -0
- package/app/components/list-menu/index.test.js +44 -0
- package/app/components/loading-spinner/index.jsx +46 -0
- package/app/components/locale-selector/index.jsx +124 -0
- package/app/components/locale-selector/index.test.js +37 -0
- package/app/components/locale-text/index.jsx +97 -0
- package/app/components/locale-text/index.test.js +36 -0
- package/app/components/login/index.jsx +96 -0
- package/app/components/nested-accordion/index.jsx +185 -0
- package/app/components/nested-accordion/index.test.js +98 -0
- package/app/components/offline-banner/index.jsx +40 -0
- package/app/components/offline-banner/index.test.js +15 -0
- package/app/components/offline-boundary/index.jsx +104 -0
- package/app/components/offline-boundary/index.test.js +123 -0
- package/app/components/order-summary/index.jsx +331 -0
- package/app/components/page-action-placeholder/index.jsx +50 -0
- package/app/components/pagination/index.jsx +134 -0
- package/app/components/pagination/index.test.js +25 -0
- package/app/components/product-item/index.jsx +146 -0
- package/app/components/product-item/index.test.js +38 -0
- package/app/components/product-scroller/index.jsx +172 -0
- package/app/components/product-scroller/index.test.js +98 -0
- package/app/components/product-tile/index.jsx +195 -0
- package/app/components/product-tile/index.test.js +96 -0
- package/app/components/product-view/index.jsx +538 -0
- package/app/components/product-view/index.test.js +224 -0
- package/app/components/product-view-modal/index.jsx +48 -0
- package/app/components/product-view-modal/index.test.js +72 -0
- package/app/components/promo-code/index.jsx +162 -0
- package/app/components/promo-popover/index.jsx +83 -0
- package/app/components/quantity-picker/index.jsx +58 -0
- package/app/components/radio-card/index.jsx +75 -0
- package/app/components/recommended-products/index.jsx +227 -0
- package/app/components/register/index.jsx +114 -0
- package/app/components/reset-password/index.jsx +87 -0
- package/app/components/responsive/index.jsx +29 -0
- package/app/components/scroll-to-top/index.jsx +24 -0
- package/app/components/scroll-to-top/index.test.js +46 -0
- package/app/components/search/index.jsx +279 -0
- package/app/components/search/index.test.js +127 -0
- package/app/components/search/partials/recent-searches.jsx +76 -0
- package/app/components/search/partials/search-suggestions.jsx +45 -0
- package/app/components/search/partials/suggestions.jsx +43 -0
- package/app/components/section/index.jsx +68 -0
- package/app/components/seo/index.jsx +33 -0
- package/app/components/social-icons/index.jsx +101 -0
- package/app/components/social-icons/index.test.js +30 -0
- package/app/components/swatch-group/index.jsx +77 -0
- package/app/components/swatch-group/index.test.js +136 -0
- package/app/components/swatch-group/swatch.jsx +94 -0
- package/app/components/toggle-card/index.jsx +97 -0
- package/app/components/with-registration/index.jsx +58 -0
- package/app/components/with-registration/index.test.js +85 -0
- package/app/constants.js +109 -0
- package/app/contexts/index.js +92 -0
- package/app/hooks/einstein-mock-data.js +916 -0
- package/app/hooks/index.js +17 -0
- package/app/hooks/use-add-to-cart-modal.js +344 -0
- package/app/hooks/use-add-to-cart-modal.test.js +625 -0
- package/app/hooks/use-auth-modal.js +337 -0
- package/app/hooks/use-auth-modal.test.js +365 -0
- package/app/hooks/use-currency.js +20 -0
- package/app/hooks/use-currency.test.js +41 -0
- package/app/hooks/use-current-basket.js +39 -0
- package/app/hooks/use-current-customer.js +29 -0
- package/app/hooks/use-derived-product.js +77 -0
- package/app/hooks/use-derived-product.test.js +69 -0
- package/app/hooks/use-einstein.js +512 -0
- package/app/hooks/use-einstein.test.js +224 -0
- package/app/hooks/use-intersection-observer.js +64 -0
- package/app/hooks/use-limit-urls.js +31 -0
- package/app/hooks/use-limit-urls.test.js +40 -0
- package/app/hooks/use-multi-site.js +36 -0
- package/app/hooks/use-multi-site.test.js +53 -0
- package/app/hooks/use-navigation.js +37 -0
- package/app/hooks/use-navigation.test.js +109 -0
- package/app/hooks/use-page-urls.js +35 -0
- package/app/hooks/use-page-urls.test.js +39 -0
- package/app/hooks/use-pdp-search-params.js +16 -0
- package/app/hooks/use-pdp-search-params.test.js +52 -0
- package/app/hooks/use-previous.js +17 -0
- package/app/hooks/use-product-view-modal.js +93 -0
- package/app/hooks/use-product-view-modal.test.js +172 -0
- package/app/hooks/use-search-params.js +96 -0
- package/app/hooks/use-search-params.test.js +91 -0
- package/app/hooks/use-sort-urls.js +33 -0
- package/app/hooks/use-sort-urls.test.js +42 -0
- package/app/hooks/use-toast.js +68 -0
- package/app/hooks/use-toast.test.js +58 -0
- package/app/hooks/use-variant.js +32 -0
- package/app/hooks/use-variant.test.js +81 -0
- package/app/hooks/use-variation-attributes.js +138 -0
- package/app/hooks/use-variation-attributes.test.js +119 -0
- package/app/hooks/use-variation-params.js +31 -0
- package/app/hooks/use-variation-params.test.js +73 -0
- package/app/hooks/use-wish-list.js +42 -0
- package/app/main.jsx +14 -0
- package/app/mocks/basket-with-suit.js +146 -0
- package/app/mocks/empty-basket.js +39 -0
- package/app/mocks/mock-data.js +5632 -0
- package/app/mocks/product-set-winter-lookM.js +1224 -0
- package/app/mocks/searchResults.js +144 -0
- package/app/mocks/variant-750518699578M.js +434 -0
- package/app/page-designer/README.md +102 -0
- package/app/page-designer/assets/image-tile/index.jsx +51 -0
- package/app/page-designer/assets/image-tile/index.test.js +30 -0
- package/app/page-designer/assets/image-with-text/index.jsx +140 -0
- package/app/page-designer/assets/image-with-text/index.test.js +38 -0
- package/app/page-designer/assets/index.js +9 -0
- package/app/page-designer/index.js +10 -0
- package/app/page-designer/layouts/carousel/index.jsx +222 -0
- package/app/page-designer/layouts/carousel/index.test.js +43 -0
- package/app/page-designer/layouts/index.js +14 -0
- package/app/page-designer/layouts/mobileGrid1r1c/index.jsx +36 -0
- package/app/page-designer/layouts/mobileGrid1r1c/index.test.js +35 -0
- package/app/page-designer/layouts/mobileGrid2r1c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r1c/index.test.js +47 -0
- package/app/page-designer/layouts/mobileGrid2r2c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r2c/index.test.js +71 -0
- package/app/page-designer/layouts/mobileGrid2r3c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r3c/index.test.js +95 -0
- package/app/page-designer/layouts/mobileGrid3r1c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid3r1c/index.test.js +59 -0
- package/app/page-designer/layouts/mobileGrid3r2c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid3r2c/index.test.js +95 -0
- package/app/page-designer/utils.js +14 -0
- package/app/pages/account/addresses.jsx +382 -0
- package/app/pages/account/addresses.test.js +120 -0
- package/app/pages/account/constant.js +57 -0
- package/app/pages/account/index.jsx +237 -0
- package/app/pages/account/index.test.js +188 -0
- package/app/pages/account/order-detail.jsx +397 -0
- package/app/pages/account/order-history.jsx +264 -0
- package/app/pages/account/orders.jsx +30 -0
- package/app/pages/account/orders.test.js +95 -0
- package/app/pages/account/profile.jsx +357 -0
- package/app/pages/account/wishlist/index.jsx +195 -0
- package/app/pages/account/wishlist/index.mock.js +1481 -0
- package/app/pages/account/wishlist/index.test.js +56 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.jsx +170 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.mock.js +1623 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.test.js +99 -0
- package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.jsx +120 -0
- package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.test.js +391 -0
- package/app/pages/cart/index.jsx +476 -0
- package/app/pages/cart/index.test.js +481 -0
- package/app/pages/cart/partials/cart-cta.jsx +46 -0
- package/app/pages/cart/partials/cart-secondary-button-group.jsx +135 -0
- package/app/pages/cart/partials/cart-secondary-button-group.test.js +103 -0
- package/app/pages/cart/partials/cart-skeleton.jsx +93 -0
- package/app/pages/cart/partials/cart-title.jsx +27 -0
- package/app/pages/cart/partials/empty-cart.jsx +86 -0
- package/app/pages/checkout/confirmation.jsx +541 -0
- package/app/pages/checkout/confirmation.mock.js +450 -0
- package/app/pages/checkout/confirmation.test.js +114 -0
- package/app/pages/checkout/index.jsx +169 -0
- package/app/pages/checkout/index.test.js +582 -0
- package/app/pages/checkout/partials/cc-radio-group.jsx +122 -0
- package/app/pages/checkout/partials/checkout-footer.jsx +140 -0
- package/app/pages/checkout/partials/checkout-footer.test.js +16 -0
- package/app/pages/checkout/partials/checkout-header.jsx +54 -0
- package/app/pages/checkout/partials/checkout-header.test.js +16 -0
- package/app/pages/checkout/partials/checkout-skeleton.jsx +52 -0
- package/app/pages/checkout/partials/contact-info.jsx +251 -0
- package/app/pages/checkout/partials/contact-info.test.js +43 -0
- package/app/pages/checkout/partials/payment-form.jsx +97 -0
- package/app/pages/checkout/partials/payment.jsx +276 -0
- package/app/pages/checkout/partials/shipping-address-selection.jsx +377 -0
- package/app/pages/checkout/partials/shipping-address.jsx +132 -0
- package/app/pages/checkout/partials/shipping-options.jsx +232 -0
- package/app/pages/checkout/util/checkout-context.js +94 -0
- package/app/pages/home/data.js +134 -0
- package/app/pages/home/index.jsx +301 -0
- package/app/pages/home/index.test.js +23 -0
- package/app/pages/login/index.jsx +123 -0
- package/app/pages/login/index.test.js +229 -0
- package/app/pages/login-redirect/index.jsx +23 -0
- package/app/pages/login-redirect/index.test.js +16 -0
- package/app/pages/page-not-found/index.jsx +90 -0
- package/app/pages/page-not-found/index.test.js +31 -0
- package/app/pages/product-detail/index.jsx +394 -0
- package/app/pages/product-detail/index.mock.js +197 -0
- package/app/pages/product-detail/index.test.js +162 -0
- package/app/pages/product-detail/partials/information-accordion.jsx +121 -0
- package/app/pages/product-list/index.jsx +735 -0
- package/app/pages/product-list/index.test.js +180 -0
- package/app/pages/product-list/partials/above-page-header.jsx +10 -0
- package/app/pages/product-list/partials/checkbox-refinements.jsx +41 -0
- package/app/pages/product-list/partials/checkbox-refinements.test.js +53 -0
- package/app/pages/product-list/partials/color-refinements.jsx +88 -0
- package/app/pages/product-list/partials/empty-results.jsx +118 -0
- package/app/pages/product-list/partials/link-refinements.jsx +38 -0
- package/app/pages/product-list/partials/page-header.jsx +42 -0
- package/app/pages/product-list/partials/radio-refinements.jsx +60 -0
- package/app/pages/product-list/partials/refinements.jsx +144 -0
- package/app/pages/product-list/partials/selected-refinements.jsx +100 -0
- package/app/pages/product-list/partials/size-refinements.jsx +55 -0
- package/app/pages/registration/index.jsx +87 -0
- package/app/pages/registration/index.test.jsx +132 -0
- package/app/pages/reset-password/index.jsx +112 -0
- package/app/pages/reset-password/index.test.jsx +141 -0
- package/app/request-processor.js +118 -0
- package/app/request-processor.test.js +23 -0
- package/app/routes.jsx +111 -0
- package/app/routes.test.js +13 -0
- package/app/ssr.js +70 -0
- package/app/static/ico/favicon.ico +0 -0
- package/app/static/img/global/app-icon-192.png +0 -0
- package/app/static/img/global/app-icon-512.png +0 -0
- package/app/static/img/global/apple-touch-icon.png +0 -0
- package/app/static/img/hero.png +0 -0
- package/app/static/manifest.json +19 -0
- package/app/static/robots.txt +2 -0
- package/app/theme/components/base/accordion.js +21 -0
- package/app/theme/components/base/alert.js +17 -0
- package/app/theme/components/base/badge.js +25 -0
- package/app/theme/components/base/button.js +77 -0
- package/app/theme/components/base/checkbox.js +30 -0
- package/app/theme/components/base/container.js +17 -0
- package/app/theme/components/base/drawer.js +26 -0
- package/app/theme/components/base/formLabel.js +13 -0
- package/app/theme/components/base/icon.js +13 -0
- package/app/theme/components/base/input.js +44 -0
- package/app/theme/components/base/modal.js +11 -0
- package/app/theme/components/base/popover.js +61 -0
- package/app/theme/components/base/radio.js +33 -0
- package/app/theme/components/base/select.js +15 -0
- package/app/theme/components/base/skeleton.js +12 -0
- package/app/theme/components/base/tooltip.js +19 -0
- package/app/theme/components/project/_app.js +25 -0
- package/app/theme/components/project/breadcrumb.js +25 -0
- package/app/theme/components/project/checkout-footer.js +35 -0
- package/app/theme/components/project/drawer-menu.js +66 -0
- package/app/theme/components/project/footer.js +84 -0
- package/app/theme/components/project/header.js +84 -0
- package/app/theme/components/project/image-gallery.js +59 -0
- package/app/theme/components/project/links-list.js +43 -0
- package/app/theme/components/project/list-menu.js +91 -0
- package/app/theme/components/project/locale-selector.js +42 -0
- package/app/theme/components/project/nested-accordion.js +26 -0
- package/app/theme/components/project/offline-banner.js +25 -0
- package/app/theme/components/project/pagination.js +22 -0
- package/app/theme/components/project/product-tile.js +32 -0
- package/app/theme/components/project/social-icons.js +52 -0
- package/app/theme/components/project/swatch-group.js +115 -0
- package/app/theme/foundations/colors.js +170 -0
- package/app/theme/foundations/gradients.js +9 -0
- package/app/theme/foundations/layerStyles.js +41 -0
- package/app/theme/foundations/shadows.js +9 -0
- package/app/theme/foundations/sizes.js +18 -0
- package/app/theme/foundations/space.js +9 -0
- package/app/theme/foundations/styles.js +21 -0
- package/app/theme/index.js +104 -0
- package/app/utils/cc-utils.js +112 -0
- package/app/utils/cc-utils.test.js +41 -0
- package/app/utils/image-groups-utils.js +62 -0
- package/app/utils/image-groups-utils.test.js +65 -0
- package/app/utils/locale.js +78 -0
- package/app/utils/locale.test.js +112 -0
- package/app/utils/password-utils.js +21 -0
- package/app/utils/phone-utils.js +22 -0
- package/app/utils/phone-utils.test.js +15 -0
- package/app/utils/product-utils.js +35 -0
- package/app/utils/product-utils.test.js +51 -0
- package/app/utils/responsive-image.js +198 -0
- package/app/utils/responsive-image.test.js +170 -0
- package/app/utils/routes-utils.js +111 -0
- package/app/utils/routes-utils.test.js +291 -0
- package/app/utils/site-utils.js +222 -0
- package/app/utils/site-utils.test.js +376 -0
- package/app/utils/test-utils.js +257 -0
- package/app/utils/url.js +291 -0
- package/app/utils/url.test.js +421 -0
- package/app/utils/utils.js +201 -0
- package/app/utils/utils.test.js +182 -0
- package/babel.config.js +7 -0
- package/cache-hash-config.json +8 -0
- package/config/default.js +64 -0
- package/config/mocks/default.js +131 -0
- package/config/sites.js +78 -0
- package/jest-setup.js +191 -0
- package/jest.config.js +50 -0
- package/jsconfig.json +13 -0
- package/package.json +105 -0
- package/scripts/extract-default-messages.js +92 -0
- package/tests/lighthouserc.js +37 -0
- package/translations/README.md +127 -0
- package/translations/compiled/de-DE.json +3212 -0
- package/translations/compiled/en-GB.json +3212 -0
- package/translations/compiled/en-US.json +3212 -0
- package/translations/compiled/en-XA.json +6948 -0
- package/translations/compiled/es-MX.json +3216 -0
- package/translations/compiled/fr-FR.json +3216 -0
- package/translations/compiled/it-IT.json +3188 -0
- package/translations/compiled/ja-JP.json +3200 -0
- package/translations/compiled/ko-KR.json +3180 -0
- package/translations/compiled/pt-BR.json +3220 -0
- package/translations/compiled/zh-CN.json +3212 -0
- package/translations/compiled/zh-TW.json +3208 -0
- package/translations/de-DE.json +1417 -0
- package/translations/en-GB.json +1417 -0
- package/translations/en-US.json +1417 -0
- package/translations/es-MX.json +1417 -0
- package/translations/fr-FR.json +1417 -0
- package/translations/it-IT.json +1417 -0
- package/translations/ja-JP.json +1417 -0
- package/translations/ko-KR.json +1417 -0
- package/translations/pt-BR.json +1417 -0
- package/translations/zh-CN.json +1417 -0
- package/translations/zh-TW.json +1417 -0
- package/worker/main.js +36 -0
package/.eslintignore
ADDED
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2021, salesforce.com, inc.
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
5
|
+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
module.exports = {
|
|
9
|
+
extends: [require.resolve('@salesforce/pwa-kit-dev/configs/eslint')],
|
|
10
|
+
plugins: ['no-relative-import-paths'],
|
|
11
|
+
rules: {
|
|
12
|
+
// https://github.com/MelvinVermeer/eslint-plugin-no-relative-import-paths
|
|
13
|
+
'no-relative-import-paths/no-relative-import-paths': [
|
|
14
|
+
'error',
|
|
15
|
+
{
|
|
16
|
+
allowSameFolder: false,
|
|
17
|
+
...(process.cwd().endsWith('template-retail-react-app')
|
|
18
|
+
? {}
|
|
19
|
+
: // Otherwise, assumes that the current working directory is the monorepo
|
|
20
|
+
{rootDir: 'packages/template-retail-react-app/'}),
|
|
21
|
+
prefix: '@salesforce/retail-react-app'
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
}
|
package/.prettierignore
ADDED
package/.prettierrc.yaml
ADDED
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
## v3.0.0-dev
|
|
2
|
+
|
|
3
|
+
- Upgrade React v18, React DOM v18, React-hook-form v7, and Chakra 2 libraries [#1166](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1166)
|
|
4
|
+
- Add app `above-header` and product-list `above-page-header` convenience components [#1183](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1183)
|
|
5
|
+
- Remove `cross-fetch` dependency [#1160](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1160)
|
|
6
|
+
|
|
7
|
+
## v2.7.1 (May 11, 2023)
|
|
8
|
+
|
|
9
|
+
- Replace invalid row value with nowrap [#1179](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1179)
|
|
10
|
+
- Add a redirect to login page after user signs out from checkout page [#1172](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1172)
|
|
11
|
+
- PWA Kit should have a mechanism for replacing the access token when a SFRA login state is changed [#1171](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1171)
|
|
12
|
+
- Added session bridge call to login for phased launch [#1159](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1159)
|
|
13
|
+
- Fix Page Designer ImageWithText Link component [#1092](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1092)
|
|
14
|
+
- Remove site alias and locale from location.state.directedFrom path [#1065)](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1065)
|
|
15
|
+
- Product list refinements [#957](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/957)
|
|
16
|
+
- Prevent modal to open when it fails to add an item to cart [#1053](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1053)
|
|
17
|
+
- Make `mergeBasket` conditional more robust [#1048](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1048)
|
|
18
|
+
- Fix addresses not having preferred address first. [#1051](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1051)
|
|
19
|
+
- Changed type of the phone number field to bring up numberic keyboard on mobile devices - W-9871940 [#1016)](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1016)
|
|
20
|
+
|
|
21
|
+
## v2.7.0 (Mar 03, 2023)
|
|
22
|
+
|
|
23
|
+
- Add Page Designer ImageTile component [#967](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/967)
|
|
24
|
+
- Add Page Designer ImageWithText component [#991](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/991)
|
|
25
|
+
- Add Page Designer carousel component [#977](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/977)
|
|
26
|
+
- Add Page Designer layout components [#993](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/993)
|
|
27
|
+
- Support the product-set type [#1019](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1019)
|
|
28
|
+
|
|
29
|
+
## v2.6.0 (Jan 25, 2023)
|
|
30
|
+
|
|
31
|
+
- Mega menu fixes [#875](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/875) and [#910](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/910)
|
|
32
|
+
- Cache SLAS callback using request processor [#884](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/884)
|
|
33
|
+
- Fix padding of footer drawer component [#899](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/899)
|
|
34
|
+
- Update createOrder to send SLAS USID [#920](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/920)
|
|
35
|
+
- Fix PropTypes [#924](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/924)
|
|
36
|
+
- Remove unnecessary map statement [#929](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/929)
|
|
37
|
+
|
|
38
|
+
## v2.5.0 (Jan 5, 2023)
|
|
39
|
+
|
|
40
|
+
- Add instanceType to Einstein activity body [#858](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/858)
|
|
41
|
+
- Do not use a proxy to call Einstein [#857](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/857)
|
|
42
|
+
- Einstein handle variants [#867](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/867)
|
|
43
|
+
- Fix cc exp year [#874](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/874)
|
|
44
|
+
|
|
45
|
+
## v2.4.0 (Dec 1, 2022)
|
|
46
|
+
|
|
47
|
+
- Dynamic footer Copyright date [#741](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/741)
|
|
48
|
+
- Footer copyright: remove the remaining hardcoded year [#760](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/760)
|
|
49
|
+
- ImageGallery uses image.link when DIS is not set [#786](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/786)
|
|
50
|
+
- Use default locale as target if none is specified [#788](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/788)
|
|
51
|
+
- Password change bug fix [#803](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/803)
|
|
52
|
+
- pwa-kit-dev command for tailing logs [#789](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/789)
|
|
53
|
+
- Update usages of zzrf-001 ODS instance to the new short URL format [#816](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/816)
|
|
54
|
+
|
|
55
|
+
## v2.3.0 (Oct 27, 2022)
|
|
56
|
+
|
|
57
|
+
- Fix locale `alias` by including `locale` object inside the MultiSite Context. [#716](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/716)
|
|
58
|
+
- Updated translations. [#725](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/725)
|
|
59
|
+
- Add new Einstein API activities. [#714](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/714)
|
|
60
|
+
- Fix search field to recognize `“&”` character. [#736](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/736)
|
|
61
|
+
- Fix filters on search results page. [#742](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/742)
|
|
62
|
+
- Dynamic footer copyright date. [#741](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/741)
|
|
63
|
+
- Bugfix: image gallery thumbnails not working without DIS [#786](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/786)
|
|
64
|
+
- Ensure that a valid target locale is use if none is provided [#788](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/788)
|
|
65
|
+
|
|
66
|
+
## v2.2.0 (Aug 25, 2022)
|
|
67
|
+
|
|
68
|
+
- Update zzrf-001 url [#694](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/694)
|
|
69
|
+
- Optimize Server-side performance [#667](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/667)
|
|
70
|
+
- Remove references to session bridging [#684](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/684)
|
|
71
|
+
|
|
72
|
+
## v2.1.0 (Jul 05, 2022)
|
|
73
|
+
|
|
74
|
+
- Update translations [#643](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/643)
|
|
75
|
+
- Update translations [#653](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/653)
|
|
76
|
+
- Add bundlesize test back into CI [#652](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/652)
|
|
77
|
+
- Fix UI bug on notifications badge [#620](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/620)
|
|
78
|
+
|
|
79
|
+
## v2.0.0 (May 16, 2022)
|
|
80
|
+
|
|
81
|
+
- Update translation docs [#570](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/570)
|
|
82
|
+
- Fixed loading correct amount of skeletons [#576] (https://github.com/SalesforceCommerceCloud/pwa-kit/pull/576)
|
|
83
|
+
- Remove manifest path [#582](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/582)
|
|
84
|
+
- Fix Verbose ShellJS Command [#588](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/588)
|
|
85
|
+
- Drop node 12 support for [#589](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/589)
|
|
86
|
+
- Multi-site, Fix the case when no site aliases is set [#551](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/551)
|
|
87
|
+
- Fix invalid refresh token [#528](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/528)
|
|
88
|
+
- Add valid token check before using refresh token on login [#533](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/533)
|
|
89
|
+
- Fix localization scripts to output to the correct default locale [#539](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/539)
|
|
90
|
+
- Merge guest cart and registered cart [#540](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/540)
|
|
91
|
+
- Move retail react app jest setup out from pwa-kit-dev [#545](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/545)
|
|
92
|
+
- Remove legacy remote proxy, which allowed remote environments to use proxy configs in package.json [#425](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/425)
|
|
93
|
+
- Rename 'pwa' directory into 'template-retail-react-app' [#485](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/485)
|
|
94
|
+
- Optimize visibility-off.svg [#512](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/512)
|
|
95
|
+
- Support Multi-site implementation using dynamic config [#469](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/469)
|
|
96
|
+
- Service worker loading for dev server [#464](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/464)
|
|
97
|
+
- Environment Specific Configuration Support [#477](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/447)
|
|
98
|
+
|
|
99
|
+
## v1.5.0 (Mar 17, 2022)
|
|
100
|
+
|
|
101
|
+
- Support storing authentication tokens in cookie [#429](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/429)
|
|
102
|
+
- Make sure the forgot-password modal also shows up in the checkout flow [#373](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/373)
|
|
103
|
+
- On Windows, the locale selector dropdown in the footer now showing all of the options properly [#381](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/381)
|
|
104
|
+
- Import cross-fetch to make OCAPI client isomorphic [#382](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/382)
|
|
105
|
+
- Multi-site implementation for Retail React App [#391](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/391)
|
|
106
|
+
|
|
107
|
+
## v1.4.0 (Jan 27, 2022)
|
|
108
|
+
|
|
109
|
+
- Do not send HSTS header during local development [#288](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/288)
|
|
110
|
+
- Add constants for `<meta>` tags `theme-color` and `apple-mobile-web-app-title` [#287](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/287)
|
|
111
|
+
- Upgrade to React 17 [#278](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/278)
|
|
112
|
+
- Import preliminary translations [#324](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/324)
|
|
113
|
+
- Remove old dependencies that are no longer used [#317](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/317)
|
|
114
|
+
|
|
115
|
+
## v1.3.0 (Jan 06, 2022)
|
|
116
|
+
|
|
117
|
+
- Remove Einstein from home page [#208](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/208)
|
|
118
|
+
- Add git2gus config to allow git2gus integration [210](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/210)
|
|
119
|
+
- Set common HTTP security headers [#263](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/263)
|
|
120
|
+
- Add message ids to all the translated text, so they provide context for the translators [#239](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/239) [#207](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/207) [#195](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/195)
|
|
121
|
+
- Minor translation fixes [260](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/260) [#252](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/252)
|
|
122
|
+
- Provide Url Customization for the Retail React App [#228](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/228/files)
|
|
123
|
+
- Add an image component to allow for easier-implementation of responsive images [#186](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/186)
|
|
124
|
+
- Add shop Products section with products from the Catalog [#216](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/216)
|
|
125
|
+
- Remove `upgrade-insecure-requests` for local development [#270](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/270)
|
|
126
|
+
- Fix the missing out-of-stock message on mobile screens [#231](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/231)
|
|
127
|
+
- Fix order summary prices on the check out page misaligned on mobile [#233](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/233)
|
|
128
|
+
- Skip irrelevant jobs on CI on forked PR [#237](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/237) [#240](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/240)
|
|
129
|
+
- Add webpack plugin [#255](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/255)
|
|
130
|
+
- Combine config files [#256](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/256)
|
|
131
|
+
- Improve unsupported locale error message [#225](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/225)
|
|
132
|
+
- Add github template [#226](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/226)
|
|
133
|
+
- Fix shipping method description overflows the price section [#232](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/232)
|
|
134
|
+
- Fix show applied promotion codes case sensitive issue [#224](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/224)
|
|
135
|
+
- Fix section subtitle incorrect prop warning [#282](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/282)
|
|
136
|
+
|
|
137
|
+
## v1.2.0 (Nov 18, 2021)
|
|
138
|
+
|
|
139
|
+
- Simplify homepage for Retail React App [#201](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/201)
|
|
140
|
+
- Ensure `cookieId` value is sent always for Einstein recommendations [#179](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/179)
|
|
141
|
+
- Remove `x-powered-by` HTTP response header [#165](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/165)
|
|
142
|
+
- For search engine crawlers, add `hreflang` links to the current page's html [#137](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/137)
|
|
143
|
+
- Use the preferred currency when switching locales. [#105](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/105)
|
|
144
|
+
- Integrate wishlist with einstein recommended products. [#131](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/131)
|
|
145
|
+
- When adding a new locale, minimize configuring the locale selector UI by having a list of commonly-used locales [#175](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/175)
|
|
146
|
+
- Enable adding wishlist item to the cart. [#158](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/158)
|
|
147
|
+
- Rename CartItemVariant to ItemVariantProvider [#155](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/155)
|
|
148
|
+
- Enabling pseudo locale now affects only the loading of the translation messages. The rest of the app still knows about English and the other locales. [#177](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/177)
|
|
149
|
+
- Allow individual Commerce API calls to pass in a different locale/currency and override the global value. [#177](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/177)
|
|
150
|
+
- Fix regression with loading the correct translation file [#193](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/193)
|
|
151
|
+
- Upgrade `chakra-ui/react` to `^1.7.1` version. [#204](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/204)
|
|
152
|
+
- Rename the `extract-messages` and `compile-messages` commands to `extract-default-translations` and `compile-translations` [#160](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/160)
|
|
153
|
+
- Enable favourite icons on product tiles for guest users [#173](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/173)
|
|
154
|
+
- Fix Missing Locale Param for Commerce API Calls [#174](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/174)
|
|
155
|
+
- Add cache control header to product details page [#172](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/172)
|
|
156
|
+
- Clear SLAS tokens when OID is changed [#178](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/178)
|
|
157
|
+
|
|
158
|
+
## v1.1.0 (Sep 27, 2021)
|
|
159
|
+
|
|
160
|
+
- Fix wishlist bugs and provide better hooks for wishlist features. [#64](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/64)
|
|
161
|
+
- Lazy load Popover component. [#134](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/134)
|
|
162
|
+
- Fix pseudo local command to use `en-XB`. [#101](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/101)
|
|
163
|
+
- Ensure generated projects ship with a working .gitignore file. [#95](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/95)
|
|
164
|
+
- Remove eslint rule which check for Salesforce copyright. [#104](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/104)
|
|
165
|
+
- Improve error page design. [#74](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/74)
|
|
166
|
+
- Localize cart and checkout messages. [#106](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/106)
|
|
167
|
+
- Add default cache control header to home page. [#103](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/103)
|
|
168
|
+
- Security - `inquirer` package upgrade. [#121](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/121)
|
|
169
|
+
- New quantity picker. [#102](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/102)
|
|
170
|
+
|
|
171
|
+
## v1.0.0 (Sep 08, 2021)
|
|
172
|
+
|
|
173
|
+
- PWA Kit General Availability and open source. 🎉
|
package/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021, Salesforce.com, Inc.
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
9
|
+
|
|
10
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
11
|
+
|
|
12
|
+
3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
13
|
+
|
|
14
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# The Retail React App
|
|
2
|
+
|
|
3
|
+
A project template that includes an isomorphic JavaScript storefront and [Progressive Web App](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps) built using [React](https://reactjs.org/) and [Express](https://expressjs.com/). It uses a modern headless architecture that enables developers to decouple front-end code from back-end systems. It leverages popular open-source libraries in the React ecosystem, such as [Chakra UI](https://chakra-ui.com/) components, [Emotion](https://emotion.sh/docs/introduction) (CSS-in-JS), [Webpack](https://webpack.js.org/), and many more.
|
|
4
|
+
|
|
5
|
+
Developers don’t have to worry about the underlying infrastructure, whether they’re developing their app locally, deploying it to a [Managed Runtime](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/mrt-overview.html) environment, or testing the app live.
|
|
6
|
+
|
|
7
|
+
## Requirements
|
|
8
|
+
|
|
9
|
+
- Node 16.11 or later
|
|
10
|
+
- npm 8 or later
|
|
11
|
+
|
|
12
|
+
## Get Started
|
|
13
|
+
|
|
14
|
+
To start your web server for local development, run the following command in your project directory:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm start
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Now that the development server is running, you can open a browser and preview your commerce app:
|
|
21
|
+
|
|
22
|
+
- Go to http://localhost:3000/
|
|
23
|
+
|
|
24
|
+
## Localization
|
|
25
|
+
|
|
26
|
+
See the [Localization README.md](./translations/README.md) for important setup instructions for localization.
|
|
27
|
+
|
|
28
|
+
## Configuration Files
|
|
29
|
+
|
|
30
|
+
The Retail React App's configuration files are located in the `app/config` folder. For more details, see [Configuration Files](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/configuration-options.html) in the documentation.
|
|
31
|
+
|
|
32
|
+
## Documentation
|
|
33
|
+
|
|
34
|
+
The full documentation for PWA Kit and Managed Runtime is hosted on the [Salesforce Developers](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/overview) portal.
|
|
35
|
+
|
|
36
|
+
### Useful Links:
|
|
37
|
+
|
|
38
|
+
- [Get Started](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/getting-started.html)
|
|
39
|
+
- [Skills for Success](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/skills-for-success.html)
|
|
40
|
+
- [Set Up API Access](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/setting-up-api-access.html)
|
|
41
|
+
- [Configuration Options](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/configuration-options.html)
|
|
42
|
+
- [Proxy Requests](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/proxying-requests.html)
|
|
43
|
+
- [Push and Deploy Bundles](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/pushing-and-deploying-bundles.html)
|
|
44
|
+
- [The Retail React App](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/retail-react-app.html)
|
|
45
|
+
- [Rendering](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/rendering.html)
|
|
46
|
+
- [Routing](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/routing.html)
|
|
47
|
+
- [Phased Headless Rollouts](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/phased-headless-rollouts.html)
|
|
48
|
+
- [Launch Your Storefront](https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/launching-your-storefront.html)
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0044 7C17.0044 9.76142 14.7652 12 12.0029 12C9.24067 12 7.00142 9.76142 7.00142 7C7.00142 4.23858 9.24067 2 12.0029 2C14.7652 2 17.0044 4.23858 17.0044 7ZM15.0038 7C15.0038 5.34315 13.6603 4 12.0029 4C10.3456 4 9.00202 5.34315 9.00202 7C9.00202 8.65685 10.3456 10 12.0029 10C13.6603 10 15.0038 8.65685 15.0038 7ZM21.8959 20.55L20.0054 16.76C19.1574 15.0683 17.4268 14.0001 15.534 14H8.47186C6.57907 14.0001 4.84848 15.0683 4.00051 16.76L2.10994 20.55C1.95392 20.8595 1.96935 21.2277 2.15071 21.5231C2.33208 21.8185 2.65351 21.999 3.00021 22H21.0057C21.3524 21.999 21.6738 21.8185 21.8551 21.5231C22.0365 21.2277 22.0519 20.8595 21.8959 20.55ZM5.79105 17.66L4.6207 20H19.3852L18.2148 17.66C17.7075 16.6441 16.6698 16.0016 15.534 16H8.47186C7.33602 16.0016 6.29839 16.6441 5.79105 17.66Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 10C0 4.47715 4.47715 0 10 0C12.6522 0 15.1957 1.05357 17.0711 2.92893C18.9464 4.8043 20 7.34784 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10ZM2 10C2 14.4183 5.58172 18 10 18C12.1217 18 14.1566 17.1571 15.6569 15.6569C17.1571 14.1566 18 12.1217 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10ZM11 10.5C11 10.2239 10.7761 10 10.5 10H9.5C9.22386 10 9 10.2239 9 10.5V13.5C9 13.7761 9.22386 14 9.5 14H10.5C10.7761 14 11 13.7761 11 13.5V10.5ZM10.5 6C10.7761 6 11 6.22386 11 6.5V7.5C11 7.77614 10.7761 8 10.5 8H9.5C9.22386 8 9 7.77614 9 7.5V6.5C9 6.22386 9.22386 6 9.5 6H10.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.72 4.00002H21.5C21.7761 4.00002 22 4.22387 22 4.50002V5.00002C21.9928 5.8299 21.7687 6.64346 21.35 7.36002L19 11.49C18.4915 12.404 17.5357 12.979 16.49 13H10.26C10.0439 12.9954 9.82904 12.9652 9.62 12.91L8.62 15H19.5C19.7761 15 20 15.2239 20 15.5V16.5C20 16.7762 19.7761 17 19.5 17H7C6.72633 17.0063 6.4704 16.865 6.33 16.63L6.11 16.25C5.99438 16.0275 5.99438 15.7626 6.11 15.54L7.97 11.84C7.86843 11.7328 7.77797 11.6155 7.7 11.49L3.42 4.00002H2.5C2.22386 4.00002 2 3.77616 2 3.50002V2.50002C2 2.22387 2.22386 2.00002 2.5 2.00002H3.42C4.13737 1.99717 4.80132 2.37875 5.16 3.00002L5.72 4.00002ZM16.53 11C16.8452 10.9619 17.1236 10.7763 17.28 10.5L19.64 6.37002C19.678 6.29401 19.708 6.214 19.7376 6.13506C19.7547 6.08936 19.7717 6.04401 19.79 6.00002H6.87L9.44 10.5C9.61755 10.8076 9.94489 10.9979 10.3 11H16.53ZM18 18C16.8954 18 16 18.8954 16 20C16 21.1046 16.8954 22 18 22C19.1046 22 20 21.1046 20 20C20 18.8954 19.1046 18 18 18ZM6 20C6 18.8954 6.89543 18 8 18C9.10457 18 10 18.8954 10 20C10 21.1046 9.10457 22 8 22C6.89543 22 6 21.1046 6 20Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
viewBox="0 0 46 32"
|
|
3
|
+
fill="none"
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
>
|
|
6
|
+
<path
|
|
7
|
+
d="M19.0152 3.47716C20.4934 1.94856 22.5428 0.991075 24.8105 0.991075C27.8341 0.991075 30.4546 2.67087 31.8656 5.17375C33.0919 4.63622 34.4357 4.33386 35.8467 4.33386C41.2892 4.33386 45.7071 8.7853 45.7071 14.2782C45.7071 19.7711 41.2892 24.2226 35.8467 24.2226C35.1748 24.2226 34.5365 24.1554 33.8982 24.021C32.6719 26.2215 30.3034 27.7165 27.6157 27.7165C26.4903 27.7165 25.4152 27.4478 24.4577 26.9942C23.1979 29.9339 20.2919 32 16.8987 32C13.3543 32 10.3475 29.7659 9.18845 26.6247C8.68451 26.7255 8.16378 26.7927 7.62625 26.7927C3.40997 26.7927 0 23.3323 0 19.0824C0 16.2268 1.52861 13.7407 3.81312 12.3968C3.34278 11.3218 3.09081 10.1291 3.09081 8.86929C3.09081 3.9643 7.07191 0 11.9769 0C14.8325 0 17.3858 1.36063 19.0152 3.47716Z"
|
|
8
|
+
fill="#0D9DDA"
|
|
9
|
+
/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 38 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" fill="white"/>
|
|
3
|
+
<path d="M10 2H28V11.7169L27.109 13.109L28 14.348V20H10V10.8399L10.5568 10.1995L10 9.58701V2Z" fill="#016FD0"/>
|
|
4
|
+
<path d="M13.4942 14.5427V11.7167H16.4864L16.8074 12.1352L17.1391 11.7167H28V14.3478C28 14.3478 27.716 14.5399 27.3875 14.5427H21.3735L21.0116 14.0972V14.5427H19.8255V13.7823C19.8255 13.7823 19.6635 13.8884 19.3132 13.8884H18.9095V14.5427H17.1137L16.7931 14.1152L16.4676 14.5427L13.4942 14.5427ZM10 9.58676L10.6747 8.01367H11.8417L12.2246 8.89485V8.01367H13.6752L13.9031 8.65056L14.1241 8.01367H20.6357V8.33386C20.6357 8.33386 20.978 8.01367 21.5406 8.01367L23.6534 8.02107L24.0297 8.8907V8.01367H25.2436L25.5777 8.51321V8.01367H26.8028V10.8397H25.5777L25.2575 10.3385V10.8397H23.474L23.2947 10.3942H22.8152L22.6387 10.8397H21.4292C20.9452 10.8397 20.6357 10.526 20.6357 10.526V10.8397H18.8121L18.4501 10.3942V10.8397H11.6688L11.4896 10.3942H11.0116L10.8337 10.8397H10V9.58676Z" fill="white"/>
|
|
5
|
+
<path d="M10.9135 8.36218L10.0034 10.4782H10.5959L10.7639 10.0545H11.7401L11.9071 10.4782H12.5127L11.6035 8.36218H10.9135ZM11.2502 8.85462L11.5478 9.59507H10.9518L11.2502 8.85462ZM12.5753 10.4778V8.36182L13.4173 8.36494L13.9071 9.72922L14.3851 8.36182H15.2204V10.4778H14.6913V8.91866L14.1306 10.4778H13.6667L13.1043 8.91866V10.4778H12.5753ZM15.5823 10.4778V8.36182H17.3085V8.83513H16.1169V9.19707H17.2807V9.64256H16.1169V10.0184H17.3085V10.4778H15.5823ZM17.6148 8.36218V10.4782H18.1438V9.72644H18.3665L19.0008 10.4782H19.6473L18.9512 9.69859C19.2369 9.67449 19.5315 9.42931 19.5315 9.04866C19.5315 8.60338 19.1821 8.36218 18.792 8.36218H17.6148ZM18.1438 8.83549H18.7485C18.8936 8.83549 18.9991 8.94896 18.9991 9.05822C18.9991 9.19879 18.8623 9.28096 18.7563 9.28096H18.1438V8.83549ZM20.2876 10.4778H19.7475V8.36182H20.2876V10.4778ZM21.5684 10.4778H21.4518C20.8877 10.4778 20.5452 10.0334 20.5452 9.42852C20.5452 8.8087 20.8838 8.36182 21.5962 8.36182H22.1809V8.86298H21.5748C21.2857 8.86298 21.0811 9.08866 21.0811 9.43373C21.0811 9.84353 21.315 10.0156 21.6519 10.0156H21.7911L21.5684 10.4778ZM22.7195 8.36218L21.8094 10.4782H22.4019L22.5698 10.0545H23.546L23.7131 10.4782H24.3187L23.4094 8.36218H22.7195ZM23.0562 8.85462L23.3538 9.59507H22.7578L23.0562 8.85462ZM24.3804 10.4778V8.36182H25.053L25.9118 9.69129V8.36182H26.4408V10.4778H25.79L24.9094 9.11356V10.4778H24.3804ZM13.8561 14.1808V12.0648H15.5823V12.5381H14.3907V12.9001H15.5545V13.3456H14.3907V13.7214H15.5823V14.1808H13.8561ZM22.3146 14.1808V12.0648H24.0408V12.5381H22.8491V12.9001H24.0074V13.3456H22.8491V13.7214H24.0407V14.1808H22.3146ZM15.6493 14.1808L16.4898 13.1359L15.6293 12.0648H16.2958L16.8082 12.7269L17.3225 12.0648H17.9628L17.1136 13.1228L17.9557 14.1808H17.2893L16.7917 13.5292L16.3062 14.1808H15.6493ZM18.0185 12.0652V14.1812H18.5614V13.513H19.1183C19.5894 13.513 19.9466 13.263 19.9466 12.7769C19.9466 12.3742 19.6665 12.0652 19.187 12.0652H18.0185ZM18.5614 12.5437H19.1478C19.3001 12.5437 19.4089 12.637 19.4089 12.7873C19.4089 12.9286 19.3006 13.031 19.1461 13.031H18.5614V12.5437ZM20.1763 12.0648V14.1808H20.7053V13.4291H20.928L21.5623 14.1808H22.2087L21.5127 13.4013C21.7983 13.3772 22.093 13.132 22.093 12.7513C22.093 12.306 21.7435 12.0648 21.3535 12.0648H20.1763ZM20.7053 12.5381H21.31C21.455 12.5381 21.5606 12.6516 21.5606 12.7609C21.5606 12.9015 21.4238 12.9836 21.3178 12.9836H20.7053V12.5381ZM24.2858 14.1808V13.7214H25.3445C25.5011 13.7214 25.569 13.6368 25.569 13.5439C25.569 13.455 25.5013 13.3651 25.3445 13.3651H24.8661C24.4502 13.3651 24.2186 13.1117 24.2186 12.7313C24.2186 12.392 24.4307 12.0648 25.0487 12.0648H26.0788L25.8561 12.5409H24.9651C24.7948 12.5409 24.7424 12.6303 24.7424 12.7156C24.7424 12.8033 24.8072 12.9001 24.9373 12.9001H25.4384C25.902 12.9001 26.1032 13.1631 26.1032 13.5074C26.1032 13.8776 25.879 14.1808 25.4132 14.1808H24.2858ZM26.2273 14.1808V13.7214H27.286C27.4427 13.7214 27.5105 13.6368 27.5105 13.5439C27.5105 13.455 27.4429 13.3651 27.286 13.3651H26.8076C26.3918 13.3651 26.1602 13.1117 26.1602 12.7313C26.1602 12.392 26.3723 12.0648 26.9902 12.0648H28.0204L27.7976 12.5409H26.9067C26.7364 12.5409 26.6839 12.6303 26.6839 12.7156C26.6839 12.8033 26.7487 12.9001 26.8788 12.9001H27.38C27.8436 12.9001 28.0447 13.1631 28.0447 13.5074C28.0447 13.8776 27.8206 14.1808 27.3548 14.1808H26.2273Z" fill="#016FD0"/>
|
|
6
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" stroke="#DDDDDD"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 41 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.0449219" width="40" height="24" rx="2" fill="#EEEEEE"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.0449219 7.60005H40.0449V2.80005H0.0449219V7.60005Z" fill="#747474"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.9248 16.3999H23.7648V12.3999H2.9248V16.3999Z" fill="#78909C"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.7646 13.0401L27.5246 12.8401H27.8846V15.3201H27.3246V13.4001L26.8446 13.5201L26.7646 13.0401Z" fill="#181818"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0045 13.3199H31.0445V12.8399H32.7645V13.2399L32.1245 13.8399C32.5777 13.9199 32.8045 14.1467 32.8045 14.5199C32.8177 14.7455 32.7297 14.9655 32.5645 15.1199C32.3877 15.2759 32.1601 15.3611 31.9245 15.3599C31.5409 15.3759 31.1717 15.2135 30.9245 14.9199L31.2845 14.5599C31.4377 14.7315 31.6545 14.8327 31.8845 14.8399L32.1245 14.7599C32.2473 14.6327 32.2441 14.4303 32.1169 14.3075C32.1069 14.2975 32.0961 14.2883 32.0845 14.2799L31.7245 14.1999H31.5245L31.4445 13.8399L32.0045 13.3199ZM29.5245 13.3199L29.2845 13.3999L29.0445 13.6399L28.6445 13.3199C28.7493 13.1607 28.8853 13.0247 29.0445 12.9199C29.2045 12.8355 29.3837 12.7939 29.5645 12.7999C29.7953 12.7835 30.0241 12.8551 30.2045 12.9999C30.3633 13.1419 30.4513 13.3471 30.4445 13.5599C30.4445 13.7331 30.3885 13.9015 30.2845 14.0399C30.1333 14.2227 29.9585 14.3839 29.7645 14.5199L29.3645 14.8399H30.4445V15.3199H28.6045V14.8799L29.4445 14.1999L29.7645 13.8799C29.8221 13.7983 29.8505 13.6995 29.8445 13.5999C29.8521 13.5123 29.8229 13.4255 29.7645 13.3599L29.5245 13.3199Z" fill="#181818"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.4045 16.4H34.3645V12H25.4045V16.4ZM24.5645 17.2H35.2045V11.2H24.5645V17.2Z" fill="#FF5252"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 38 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" fill="white"/>
|
|
3
|
+
<rect x="4" y="2" width="30" height="18" rx="4" fill="white"/>
|
|
4
|
+
<path d="M11.2346 20H32.8001C33.4628 20 34 19.4638 34 18.8015V12.1094C34 12.1094 25.9599 17.5604 11.2346 20Z" fill="#E7772F"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.61743 8.33691H8.65832C9.80653 8.33691 10.6075 9.04957 10.6075 10.0756C10.6075 10.5881 10.362 11.0828 9.94826 11.4105C9.59994 11.6871 9.20253 11.8125 8.65198 11.8125H7.61743V8.33691ZM8.51632 11.2235C8.97479 11.2235 9.26149 11.1393 9.4867 10.9468C9.73053 10.7394 9.87705 10.4056 9.87705 10.0707C9.87705 9.73739 9.73053 9.41513 9.4867 9.20624C9.25049 9.00409 8.97479 8.92555 8.51632 8.92555H8.32608V11.2235H8.51632Z" fill="#1A1918"/>
|
|
6
|
+
<path d="M10.9341 8.33691H11.6399V11.8125H10.9341V8.33691Z" fill="#1A1918"/>
|
|
7
|
+
<path d="M13.3734 9.66876C12.9474 9.51924 12.8229 9.41964 12.8229 9.2318C12.8229 9.01346 13.0454 8.84788 13.3514 8.84788C13.5635 8.84788 13.7383 8.92911 13.9244 9.12762L14.2929 8.66502C13.9884 8.40863 13.624 8.27881 13.2268 8.27881C12.584 8.27881 12.0941 8.70672 12.0941 9.27255C12.0941 9.75296 12.3218 9.99668 12.9865 10.2281C13.2643 10.3205 13.4054 10.3837 13.4769 10.4265C13.6185 10.5141 13.689 10.6396 13.689 10.7846C13.689 11.0673 13.4549 11.2752 13.1385 11.2752C12.8016 11.2752 12.529 11.1138 12.3658 10.8107L11.9092 11.2339C12.2356 11.6916 12.627 11.8962 13.1661 11.8962C13.9014 11.8962 14.4195 11.4251 14.4195 10.7541C14.4195 10.2013 14.1792 9.95066 13.3734 9.66876Z" fill="#1A1918"/>
|
|
8
|
+
<path d="M14.6421 10.0755C14.6421 11.0976 15.4805 11.8896 16.5597 11.8896C16.8641 11.8896 17.1249 11.8321 17.4462 11.687V10.8883C17.1623 11.1613 16.9131 11.269 16.5907 11.269C15.8776 11.269 15.3724 10.7752 15.3724 10.0706C15.3724 9.40494 15.894 8.87757 16.5597 8.87757C16.8956 8.87757 17.1523 8.99146 17.4462 9.26851V8.47071C17.1358 8.32051 16.8811 8.2583 16.5742 8.2583C15.5012 8.2583 14.6421 9.06582 14.6421 10.0755Z" fill="#1A1918"/>
|
|
9
|
+
<path d="M23.1846 10.6703L22.2161 8.33691H21.4438L22.9835 11.9002H23.3633L24.9329 8.33691H24.1667L23.1846 10.6703Z" fill="#1A1918"/>
|
|
10
|
+
<path d="M25.2542 11.8125H27.2627V11.2235H25.9628V10.2854H27.2134V9.69663H25.9628V8.92555H27.2627V8.33691H25.2542V11.8125Z" fill="#1A1918"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.7825 8.33691C29.6003 8.33691 30.0668 8.71152 30.0668 9.36237C30.0668 9.89419 29.774 10.2432 29.24 10.3476L30.3827 11.8125H29.5113L28.5328 10.4151H28.4407V11.8125H27.7305V8.33691H28.7825ZM28.4406 9.93508H28.6463C29.1003 9.93508 29.3374 9.74805 29.3374 9.40016C29.3374 9.06158 29.1003 8.88385 28.6578 8.88385H28.4406V9.93508Z" fill="#1A1918"/>
|
|
12
|
+
<path d="M21.5437 10.0834C21.5437 11.084 20.6964 11.8951 19.6503 11.8951C18.6045 11.8951 17.7571 11.084 17.7571 10.0834C17.7571 9.08265 18.6045 8.27148 19.6503 8.27148C20.6964 8.27148 21.5437 9.08265 21.5437 10.0834Z" fill="#E7772F"/>
|
|
13
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" stroke="#DDDDDD"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 38 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" fill="white"/>
|
|
3
|
+
<path d="M15.5242 5.10352H22.7436V16.895H15.5242V5.10352Z" fill="#FF5F00"/>
|
|
4
|
+
<path d="M16.2679 11.0009C16.267 9.8655 16.5244 8.74476 17.0206 7.72351C17.5168 6.70226 18.2388 5.80726 19.1319 5.10624C18.0257 4.23687 16.6972 3.69626 15.2983 3.5462C13.8994 3.39613 12.4864 3.64267 11.221 4.25763C9.95557 4.87259 8.88867 5.83116 8.14225 7.02379C7.39583 8.21642 7 9.59499 7 11.0019C7 12.4089 7.39583 13.7875 8.14225 14.9801C8.88867 16.1727 9.95557 17.1313 11.221 17.7462C12.4864 18.3612 13.8994 18.6077 15.2983 18.4577C16.6972 18.3076 18.0257 17.767 19.1319 16.8976C18.2385 16.1964 17.5163 15.3011 17.0201 14.2794C16.5239 13.2578 16.2667 12.1366 16.2679 11.0009V11.0009Z" fill="#EB001B"/>
|
|
5
|
+
<path d="M30.5485 15.6476V15.406H30.6526V15.356H30.4048V15.406H30.5027V15.6476L30.5485 15.6476ZM31.0296 15.6476V15.356H30.9547L30.8672 15.5643L30.7797 15.356H30.7047V15.6476H30.7589V15.4268L30.8401 15.6164H30.8963L30.9776 15.4268V15.6476H31.0296Z" fill="#F79E1B"/>
|
|
6
|
+
<path d="M31.2649 11.0005C31.2648 12.4075 30.8689 13.7862 30.1224 14.9789C29.3758 16.1715 28.3087 17.1301 27.0431 17.7449C25.7775 18.3598 24.3645 18.6062 22.9655 18.4559C21.5665 18.3056 20.238 17.7647 19.1318 16.8951C20.0246 16.1935 20.7464 15.2982 21.2427 14.2769C21.7391 13.2556 21.9969 12.1349 21.9969 10.9994C21.9969 9.86389 21.7391 8.7432 21.2427 7.7219C20.7464 6.70059 20.0246 5.80535 19.1318 5.1037C20.238 4.23406 21.5665 3.69318 22.9655 3.5429C24.3645 3.39261 25.7776 3.63899 27.0432 4.25387C28.3088 4.86874 29.3758 5.8273 30.1224 7.01998C30.8689 8.21266 31.2648 9.59132 31.2649 10.9984V11.0005Z" fill="#F79E1B"/>
|
|
7
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" stroke="#DDDDDD"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 38 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" fill="white"/>
|
|
3
|
+
<path d="M19.4788 9.37725C19.4629 10.6309 20.5961 11.3306 21.4497 11.7465C22.3268 12.1733 22.6214 12.447 22.618 12.8286C22.6113 13.4128 21.9184 13.6705 21.2698 13.6806C20.1383 13.6982 19.4805 13.3751 18.9574 13.1307L18.5499 15.038C19.0746 15.2799 20.0463 15.4908 21.0539 15.5C23.4189 15.5 24.9664 14.3325 24.9747 12.5223C24.9839 10.225 21.797 10.0978 21.8188 9.07095C21.8263 8.75962 22.1234 8.42738 22.7745 8.34285C23.0967 8.30017 23.9864 8.26753 24.9948 8.73201L25.3907 6.88665C24.8484 6.68914 24.1512 6.5 23.2834 6.5C21.0572 6.5 19.4914 7.68337 19.4788 9.37725ZM29.1944 6.65901C28.7625 6.65901 28.3985 6.91092 28.2361 7.29756L24.8576 15.3644H27.221L27.6913 14.0647H30.5794L30.8523 15.3644H32.9353L31.1176 6.65901H29.1944ZM29.525 9.01069L30.207 12.2796H28.3391L29.525 9.01069ZM16.6133 6.65901L14.7504 15.3644H17.0025L18.8646 6.65901H16.6133ZM13.2816 6.65901L10.9375 12.5842L9.98925 7.54612C9.87794 6.98373 9.43857 6.65901 8.95066 6.65901H5.1185L5.06494 6.91175C5.85163 7.08248 6.74543 7.35782 7.28691 7.65241C7.61832 7.83234 7.71289 7.98968 7.82168 8.41733L9.61767 15.3644H11.9978L15.6467 6.65901H13.2816Z" fill="url(#paint0_linear)"/>
|
|
4
|
+
<rect x="0.5" y="0.5" width="37" height="21" rx="3.5" stroke="#DDDDDD"/>
|
|
5
|
+
<defs>
|
|
6
|
+
<linearGradient id="paint0_linear" x1="17.8781" y1="15.6806" x2="18.1386" y2="6.43741" gradientUnits="userSpaceOnUse">
|
|
7
|
+
<stop stop-color="#222357"/>
|
|
8
|
+
<stop offset="1" stop-color="#254AA5"/>
|
|
9
|
+
</linearGradient>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C14.6522 2 17.1957 3.05357 19.0711 4.92893C20.9464 6.8043 22 9.34784 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM10.7296 15.35L16.3496 9.72998C16.5338 9.53683 16.5338 9.23313 16.3496 9.03998L15.8196 8.50998C15.6252 8.31941 15.314 8.31941 15.1196 8.50998L10.3796 13.25L8.87963 11.76C8.78889 11.6633 8.66221 11.6085 8.52962 11.6085C8.39704 11.6085 8.27036 11.6633 8.17963 11.76L7.64963 12.29C7.55497 12.3839 7.50173 12.5117 7.50173 12.645C7.50173 12.7783 7.55497 12.9061 7.64963 13L10.0296 15.35C10.1204 15.4467 10.247 15.5015 10.3796 15.5015C10.5122 15.5015 10.6389 15.4467 10.7296 15.35Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.5417 6.01214L7.70841 14.8022C7.63018 14.8807 7.52368 14.9248 7.41258 14.9248C7.30148 14.9248 7.19498 14.8807 7.11675 14.8022L2.62508 10.3325C2.5462 10.2547 2.50183 10.1487 2.50183 10.0381C2.50183 9.92758 2.5462 9.82161 2.62508 9.74376L3.20841 9.16328C3.28665 9.08479 3.39315 9.04064 3.50425 9.04064C3.61535 9.04064 3.72184 9.08479 3.80008 9.16328L7.40841 12.7539L15.3667 4.83461C15.5316 4.67557 15.7936 4.67557 15.9584 4.83461L16.5417 5.42337C16.6206 5.50123 16.665 5.6072 16.665 5.71776C16.665 5.82831 16.6206 5.93429 16.5417 6.01214Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.7201 15.7802C12.5796 15.9209 12.3889 16 12.1901 16.0002H11.8101C11.6117 15.9979 11.4218 15.919 11.2801 15.7802L6.1501 10.6402C6.05544 10.5463 6.0022 10.4185 6.0022 10.2852C6.0022 10.1518 6.05544 10.024 6.1501 9.93016L6.8601 9.22016C6.95226 9.1261 7.07841 9.07309 7.2101 9.07309C7.34179 9.07309 7.46793 9.1261 7.5601 9.22016L12.0001 13.6702L16.4401 9.22016C16.534 9.12551 16.6618 9.07227 16.7951 9.07227C16.9284 9.07227 17.0562 9.12551 17.1501 9.22016L17.8501 9.93016C17.9448 10.024 17.998 10.1518 17.998 10.2852C17.998 10.4185 17.9448 10.5463 17.8501 10.6402L12.7201 15.7802Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.22 12.7199C8.07931 12.5793 8.00018 12.3887 8 12.1899V11.8099C8.0023 11.6114 8.08112 11.4216 8.22 11.2799L13.36 6.14985C13.4539 6.0552 13.5817 6.00195 13.715 6.00195C13.8483 6.00195 13.9761 6.0552 14.07 6.14985L14.78 6.85985C14.8741 6.95202 14.9271 7.07816 14.9271 7.20985C14.9271 7.34154 14.8741 7.46769 14.78 7.55985L10.33 11.9999L14.78 16.4399C14.8747 16.5337 14.9279 16.6615 14.9279 16.7949C14.9279 16.9282 14.8747 17.056 14.78 17.1499L14.07 17.8499C13.9761 17.9445 13.8483 17.9978 13.715 17.9978C13.5817 17.9978 13.4539 17.9445 13.36 17.8499L8.22 12.7199Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.7799 11.2799C15.9206 11.4204 15.9997 11.611 15.9999 11.8099V12.1899C15.9976 12.3883 15.9188 12.5781 15.7799 12.7199L10.6399 17.8499C10.546 17.9445 10.4182 17.9978 10.2849 17.9978C10.1516 17.9978 10.0238 17.9445 9.92992 17.8499L9.21992 17.1399C9.12586 17.0477 9.07285 16.9215 9.07285 16.7899C9.07285 16.6582 9.12586 16.532 9.21992 16.4399L13.6699 11.9999L9.21992 7.55985C9.12526 7.46597 9.07202 7.33817 9.07202 7.20485C9.07202 7.07153 9.12526 6.94374 9.21992 6.84985L9.92992 6.14985C10.0238 6.0552 10.1516 6.00195 10.2849 6.00195C10.4182 6.00195 10.546 6.0552 10.6399 6.14985L15.7799 11.2799Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.2801 8.22C11.4206 8.07931 11.6113 8.00018 11.8101 8H12.1901C12.3885 8.0023 12.5784 8.08112 12.7201 8.22L17.8501 13.36C17.9448 13.4539 17.998 13.5817 17.998 13.715C17.998 13.8483 17.9448 13.9761 17.8501 14.07L17.1401 14.78C17.0479 14.8741 16.9218 14.9271 16.7901 14.9271C16.6584 14.9271 16.5323 14.8741 16.4401 14.78L12.0001 10.33L7.5601 14.78C7.46621 14.8747 7.33842 14.9279 7.2051 14.9279C7.07178 14.9279 6.94398 14.8747 6.8501 14.78L6.1501 14.07C6.05544 13.9761 6.0022 13.8483 6.0022 13.715C6.0022 13.5817 6.05544 13.4539 6.1501 13.36L11.2801 8.22Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="m1.3333 0h8c0.73637 0 1.3334 0.59695 1.3334 1.3333v21.333c0 0.7363-0.597 1.3333-1.3334 1.3333h-8c-0.73638 0-1.3333-0.597-1.3333-1.3333v-21.333c0-0.73638 0.59695-1.3333 1.3333-1.3333zm6.6667 21.333v-18.667h-5.3333v18.667h5.3333zm13.333-18.667v2.6667h-5.3333v-2.6667h5.3333zm-6.6666-2.6667h8c0.7363 0 1.3333 0.59695 1.3333 1.3333v5.3333c0 0.73638-0.597 1.3333-1.3333 1.3333h-8c-0.7364 0-1.3334-0.59695-1.3334-1.3333v-5.3333c0-0.73638 0.597-1.3333 1.3334-1.3333zm6.6666 13.333v8h-5.3333v-8h5.3333zm-6.6666-2.6666h8c0.7363 0 1.3333 0.5969 1.3333 1.3333v10.667c0 0.7363-0.597 1.3333-1.3333 1.3333h-8c-0.7364 0-1.3334-0.597-1.3334-1.3333v-10.667c0-0.7364 0.597-1.3333 1.3334-1.3333z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
4
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg fill="none" viewBox="0 0 28 40" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#a)">
|
|
3
|
+
<path d="m7.34 39.999c3.68 0 6.6667-2.9867 6.6667-6.6667v-6.6667h-6.6667c-3.68 0-6.6667 2.9867-6.6667 6.6667s2.9867 6.6667 6.6667 6.6667z" fill="#0ACF83"/>
|
|
4
|
+
<path d="m0.67334 20.001c0-3.68 2.9867-6.6666 6.6667-6.6666h6.6667v13.333h-6.6667c-3.68 0-6.6667-2.9867-6.6667-6.6667z" fill="#A259FF"/>
|
|
5
|
+
<path d="m0.67383 6.6667c0-3.68 2.9867-6.6667 6.6667-6.6667h6.6667v13.333h-6.6667c-3.68 0-6.6667-2.9866-6.6667-6.6666z" fill="#F24E1E"/>
|
|
6
|
+
<path d="m14.006 0h6.6667c3.68 0 6.6666 2.9867 6.6666 6.6667 0 3.68-2.9866 6.6666-6.6666 6.6666h-6.6667v-13.333z" fill="#FF7262"/>
|
|
7
|
+
<path d="m27.339 20.001c0 3.68-2.9866 6.6667-6.6666 6.6667-3.6801 0-6.6667-2.9867-6.6667-6.6667s2.9866-6.6666 6.6667-6.6666c3.68 0 6.6666 2.9866 6.6666 6.6666z" fill="#1ABCFE"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id="a">
|
|
11
|
+
<rect transform="translate(.66992)" width="26.672" height="40" fill="#fff"/>
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 25 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 0L21.5 0C23.1569 0 24.5 1.34315 24.5 3L24.5 19.14C24.4989 20.3331 24.0242 21.4769 23.18 22.32L16.82 28.68C15.9769 29.5242 14.8331 29.9989 13.64 30H3.5C1.84315 30 0.5 28.6569 0.5 27L0.5 3C0.5 1.34315 1.84315 0 3.5 0ZM21.5 3L3.5 3L3.5 27H12.5L12.5 19.5C12.5 18.6716 13.1716 18 14 18L21.5 18L21.5 3Z" fill="#5C5C5C"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 18 18" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.82291 1.99998H17.4919C17.7677 1.99998 17.9914 2.22383 17.9914 2.49998V3.49998C17.9914 3.77612 17.7677 3.99998 17.4919 3.99998H5.82291C5.33634 5.37752 3.92904 6.20385 2.49033 5.95677C1.05163 5.7097 0 4.46109 0 2.99998C0 1.53887 1.05163 0.290257 2.49033 0.0431805C3.92904 -0.203896 5.33634 0.622429 5.82291 1.99998ZM2.00653 2.99998C2.00653 3.55226 2.45382 3.99998 3.00558 3.99998C3.55734 3.99998 4.00463 3.55226 4.00463 2.99998C4.00463 2.44769 3.55734 1.99998 3.00558 1.99998C2.45382 1.99998 2.00653 2.44769 2.00653 2.99998ZM17.4919 7.99998H11.8172C11.387 6.81352 10.2609 6.0235 8.9999 6.0235C7.73891 6.0235 6.61279 6.81352 6.18257 7.99998H0.507946C0.232065 7.99998 0.00841915 8.22383 0.00841915 8.49998V9.49998C0.00841915 9.77612 0.232065 9.99998 0.507946 9.99998H6.18257C6.61279 11.1864 7.73891 11.9765 8.9999 11.9765C10.2609 11.9765 11.387 11.1864 11.8172 9.99998H17.4919C17.7677 9.99998 17.9914 9.77612 17.9914 9.49998V8.49998C17.9914 8.22383 17.7677 7.99998 17.4919 7.99998ZM8.00085 8.99998C8.00085 9.55226 8.44814 9.99998 8.9999 9.99998C9.55166 9.99998 9.99895 9.55226 9.99895 8.99998C9.99895 8.44769 9.55166 7.99998 8.9999 7.99998C8.44814 7.99998 8.00085 8.44769 8.00085 8.99998ZM14.9942 12C13.7272 12.0035 12.5992 12.8042 12.1769 14H0.507946C0.232065 14 0.00841915 14.2238 0.00841915 14.5V15.5C0.00841915 15.7761 0.232065 16 0.507946 16H12.1769C12.6853 17.4394 14.1926 18.267 15.6786 17.9227C17.1646 17.5783 18.1552 16.1719 17.9799 14.6553C17.8047 13.1387 16.5195 11.9957 14.9942 12ZM13.9952 15C13.9952 15.5523 14.4425 16 14.9942 16C15.546 16 15.9933 15.5523 15.9933 15C15.9933 14.4477 15.546 14 14.9942 14C14.4425 14 13.9952 14.4477 13.9952 15Z" fill="#181818"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.43372 4.1665H15.5542V18.3332H5.43372V4.1665Z" fill="white"/>
|
|
3
|
+
<path d="M0.375 4.1665H5.43383V18.3332H0.375V4.1665ZM15.5543 4.1665H20.6131V18.3332H15.5571L15.5543 4.1665ZM6.95064 11.0119L6.55397 11.1447L8.38364 12.7357C8.52331 13.1424 8.33616 13.2614 8.21604 13.4772L10.1993 13.2282L10.1519 15.2065L10.5653 15.1955L10.4731 13.231L12.462 13.4661C12.3391 13.2088 12.2301 13.0732 12.3419 12.6637L14.1688 11.1558L13.8503 11.0396C13.5877 10.8403 13.962 10.0794 14.0179 9.59798C14.0179 9.59798 12.9536 9.96045 12.8838 9.76953L12.61 9.25212L11.6407 10.3091C11.5346 10.334 11.4899 10.2925 11.4648 10.2039L11.9117 7.99593L11.2022 8.3916C11.1435 8.41927 11.0849 8.39714 11.0457 8.32796L10.3614 6.97217L9.65743 8.38053C9.60435 8.43034 9.55128 8.43587 9.50659 8.40267L8.83059 8.02637L9.23842 10.215C9.2049 10.3035 9.12669 10.3257 9.0373 10.2786L8.1071 9.23551C7.98698 9.4292 7.90597 9.74186 7.74396 9.8138C7.58473 9.88021 7.04561 9.68099 6.68526 9.60352C6.80817 10.0435 7.19366 10.7739 6.95064 11.0146V11.0119Z" fill="#FF0000"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.8333 0H0V20H20.8333V0ZM10.4167 17.9167C14.3287 17.9167 17.5 14.7453 17.5 10.8333C17.5 6.92132 14.3287 3.75 10.4167 3.75C6.50465 3.75 3.33333 6.92132 3.33333 10.8333C3.33333 14.7453 6.50465 17.9167 10.4167 17.9167Z" fill="white"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0)">
|
|
3
|
+
<g clip-path="url(#clip1)">
|
|
4
|
+
<path d="M32 4H4v18.667h28V4z" fill="#EE1C25"/>
|
|
5
|
+
<path d="M8.666 5.867l1.646 5.065-4.309-3.13h5.326l-4.308 3.13 1.645-5.065zM13.698 5.008l-.155 1.768-.914-1.522 1.634.695-1.73.398 1.165-1.34zM15.87 7.083l-.83 1.57-.25-1.758 1.235 1.275-1.749-.305 1.594-.782zM16.076 10.213l-1.398 1.095.488-1.707.609 1.667-1.473-.991 1.774-.064zM13.663 11.527L13.58 13.3l-.975-1.483 1.66.626-1.711.47 1.109-1.386z"
|
|
6
|
+
fill="#FF0"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 0H0v24h24V0zM12.5 21a8.5 8.5 0 100-17 8.5 8.5 0 000 17z"
|
|
9
|
+
fill="#fff"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0">
|
|
13
|
+
<path fill="#fff" d="M0 0h24v24H0z"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
<clipPath id="clip1">
|
|
16
|
+
<path fill="#fff" transform="translate(4 4)" d="M0 0h28v18.667H0z"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0)">
|
|
3
|
+
<g clip-path="url(#clip1)">
|
|
4
|
+
<path d="M25.25 4H-.25v17h25.5V4z" fill="#ED2939"/>
|
|
5
|
+
<path d="M16.75 4h-17v17h17V4z" fill="#fff"/>
|
|
6
|
+
<path d="M8.25 4h-8.5v17h8.5V4z" fill="#002395"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 0H0v24h24V0zM12.5 21a8.5 8.5 0 100-17 8.5 8.5 0 000 17z"
|
|
9
|
+
fill="#fff"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0">
|
|
13
|
+
<path fill="#fff" d="M0 0h24v24H0z"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
<clipPath id="clip1">
|
|
16
|
+
<path fill="#fff" transform="translate(-.25 4)" d="M0 0h25.5v17H0z"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0)">
|
|
3
|
+
<path d="M29.5 4h-34v17h34V4z" fill="#006"/>
|
|
4
|
+
<path d="M-4.5 4v1.9L25.699 21h3.8v-1.9L-.698 4H-4.5zm34 0v1.9L-.7 21H-4.5v-1.9L25.699 4h3.8z" fill="#fff"/>
|
|
5
|
+
<path d="M9.667 4v17h5.666V4H9.667zM-4.5 9.667v5.666h34V9.667h-34z" fill="#fff"/>
|
|
6
|
+
<path d="M-4.5 10.8v3.4h34v-3.4h-34zM10.8 4v17h3.4V4h-3.4zM-4.5 21l11.333-5.667h2.534L-1.966 21H-4.5zm0-17L6.833 9.667H4.3l-8.799-4.4V4zm20.133 5.667L26.965 4H29.5L18.167 9.667h-2.535zM29.5 21l-11.333-5.667H20.7l8.799 4.4V21z"
|
|
7
|
+
fill="#C00"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 0H0v24h24V0zM12.5 21a8.5 8.5 0 100-17 8.5 8.5 0 000 17z"
|
|
9
|
+
fill="#fff"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<clipPath id="clip0">
|
|
13
|
+
<path fill="#fff" d="M0 0h24v24H0z"/>
|
|
14
|
+
</clipPath>
|
|
15
|
+
</defs>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M0 3h22.667v1.308H0V3zm0 2.616h22.667v1.309H0V5.616zM0 8.23h22.667v1.312H0V8.229zm0 2.617h22.667v1.308H0v-1.308zm0 2.616h22.667v1.309H0v-1.309zm0 2.613h22.667v1.309H0v-1.309zm0 2.617h22.667V20H0v-1.308z"
|
|
5
|
+
fill="#BD3D44"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
7
|
+
d="M0 4.308h22.667v1.308H0V4.308zm0 2.617h22.667V8.23H0V6.925zm0 2.613h22.667v1.308H0V9.538zm0 2.616h22.667v1.308H0v-1.308zm0 2.617h22.667v1.308H0V14.77zm0 2.613h22.667v1.308H0v-1.308z"
|
|
8
|
+
fill="#fff"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 3h12.92v9.154H0V3z" fill="#192F5D"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
11
|
+
d="M1.076 3.392l.12.362h.378l-.306.222.116.365-.308-.225-.306.222.116-.362-.308-.222h.385l.113-.362zm2.155 0l.116.362h.382l-.31.222.117.365-.305-.225-.31.222.117-.362-.305-.222h.378l.12-.362zm2.151 0l.12.362h.375l-.306.222.117.365-.31-.225-.305.222.117-.362-.31-.222h.383l.12-.362zm2.155 0l.116.362h.382l-.309.222.12.365-.309-.225-.309.222.12-.362-.309-.222h.378l.12-.362zm2.152 0l.12.362h.378l-.306.222.116.365-.308-.225-.306.222.116-.362-.305-.222h.378l.117-.362zm2.155 0l.116.362h.381l-.308.222.12.365-.31-.225-.308.222.12-.362-.31-.222h.382l.117-.362zm-9.69.916l.117.362h.382l-.309.223.113.362-.299-.223-.309.223.11-.362-.299-.223h.379l.116-.362zm2.152 0l.12.362h.378l-.308.223.12.362-.31-.223-.308.223.12-.362-.31-.223h.382l.116-.362zm2.155 0l.116.362h.382l-.309.223.117.362-.306-.223-.309.223.117-.362-.306-.223h.379l.12-.362zm2.152 0l.12.362h.378l-.309.223.12.362-.31-.223-.305.223.117-.362-.31-.223H8.5l.113-.362zm2.155 0l.116.362h.382l-.31.223.117.362-.305-.223-.31.223.117-.362-.305-.223h.378l.12-.362zm-9.692.913l.12.369h.378l-.306.222.116.362-.308-.226-.306.226.116-.365-.308-.222h.385l.113-.366zm2.155 0l.116.366h.382l-.31.222.117.362-.305-.226-.31.226.117-.365-.305-.223h.378l.12-.362zm2.151 0l.12.366h.375l-.306.222.117.362-.31-.226-.305.226.117-.365-.31-.223h.383l.12-.362zm2.155 0l.116.366h.382l-.309.222.12.362-.309-.226-.309.226.12-.365-.309-.223h.378l.12-.362zm2.152 0l.12.366h.378l-.306.222.116.362-.308-.226-.306.226.116-.365-.305-.223h.378l.117-.362zm2.155 0l.116.366h.381l-.308.222.12.362-.31-.226-.308.226.12-.365-.31-.223h.382l.117-.362zm-9.69.917l.117.362h.382l-.309.222.116.365-.305-.225-.309.222.116-.362-.305-.222h.378l.12-.362zm2.152 0l.12.362h.378l-.308.222.12.365-.31-.225-.308.222.12-.362-.31-.222h.382l.116-.362zm2.155 0l.116.362h.382l-.309.222.117.365-.306-.225-.309.222.117-.362-.306-.222h.379l.12-.362zm2.152 0l.12.362h.378l-.306.222.117.365-.31-.225-.305.222.117-.362-.31-.222H8.5l.113-.362zm2.155 0l.116.362h.382l-.31.222.117.365-.305-.225-.31.222.117-.362-.305-.222h.378l.12-.362zm-9.692.916l.12.362h.378l-.306.223.116.365-.308-.226L.77 8l.116-.361-.308-.223h.385l.113-.362zm2.155 0l.116.362h.382l-.31.223.117.361-.305-.222L2.92 8l.117-.361-.305-.223h.378l.12-.362zm2.151 0l.12.362h.375l-.306.223.117.365-.31-.226L5.074 8l.117-.361-.31-.223h.383l.12-.362zm2.155 0l.116.362h.382l-.309.223.12.365-.309-.226L7.228 8l.12-.361-.309-.223h.378l.12-.362zm2.152 0l.12.362h.378l-.306.223.116.365-.308-.226L9.383 8 9.5 7.64l-.305-.223h.378l.117-.362zm2.155 0l.116.362h.381l-.308.223.12.365-.31-.226-.308.222.12-.361-.31-.223h.382l.117-.362zm-9.69.917l.117.361h.382l-.309.223.116.362-.305-.226-.309.226.116-.365-.305-.223h.378l.12-.358zm2.152 0l.12.361h.378l-.308.223.12.362-.31-.226-.308.226.12-.365-.31-.223h.382l.116-.358zm2.155 0l.116.361h.382l-.309.223.117.362-.306-.226-.309.226.117-.365-.306-.223h.379l.12-.358zm2.152 0l.12.361h.378l-.306.223.117.362-.31-.226-.305.226.117-.365-.31-.223H8.5l.113-.358zm2.155 0l.116.361h.382l-.31.223.117.362-.305-.226-.31.226.117-.365-.305-.223h.378l.12-.358zm-9.692.913l.12.365h.378l-.306.222.116.359-.308-.223-.306.223.116-.362-.308-.222h.385l.113-.362zm2.155 0l.116.365h.382l-.31.222.12.359-.308-.223-.31.223.12-.362-.308-.222h.378l.12-.362zm2.151 0l.12.365h.375l-.306.222.117.359-.31-.223-.305.223.117-.362-.31-.222h.383l.12-.362zm2.155 0l.116.365h.382l-.309.222.12.359-.309-.223-.309.223.12-.362-.309-.222h.378l.12-.362zm2.152 0l.12.365h.378l-.306.222.116.359-.308-.223-.306.223.116-.362-.305-.222h.378l.117-.362zm2.155 0l.116.365h.381l-.308.222.12.359-.31-.223-.308.223.12-.362-.31-.222h.382l.117-.362zm-9.69.916l.117.362h.382l-.309.222.116.366-.305-.226-.309.222.116-.362-.305-.222h.378l.12-.362zm2.152 0l.12.362h.378l-.308.222.12.366-.31-.226-.308.222.12-.362-.31-.222h.382l.116-.362zm2.155 0l.116.362h.382l-.309.222.117.366-.306-.226-.309.222.117-.362-.306-.222h.379l.12-.362zm2.152 0l.12.362h.378l-.306.222.117.366-.31-.226-.305.222.117-.362-.31-.222H8.5l.113-.362zm2.155 0l.116.362h.382l-.31.222.117.366-.305-.226-.31.222.117-.362-.305-.222h.378l.12-.362zm-9.692.916l.12.362h.378l-.306.223.116.362-.308-.223-.306.223.116-.366-.308-.222h.385l.113-.358zm2.155 0l.116.362h.382l-.31.223.12.362-.308-.223-.31.223.12-.366-.308-.222h.378l.12-.358zm2.151 0l.12.362h.375l-.299.223.116.362-.309-.223-.305.223.116-.366-.309-.222h.382l.113-.358zm2.155 0l.116.362h.382l-.309.223.12.362-.309-.223-.309.223.12-.366-.309-.222h.378l.12-.358zm2.152 0l.12.362h.378l-.306.223.116.362-.308-.223-.306.223.116-.366-.305-.222h.378l.117-.358zm2.155 0l.116.362h.381l-.308.223.12.362-.31-.223-.308.223.12-.366-.31-.222h.382l.117-.358z"
|
|
12
|
+
fill="#fff"/>
|
|
13
|
+
<g clip-path="url(#clip1)">
|
|
14
|
+
<path d="M25.25 4H-.25v17h25.5V4z" fill="#009246"/>
|
|
15
|
+
<path d="M25.25 4h-17v17h17V4z" fill="#fff"/>
|
|
16
|
+
<path d="M25.25 4h-8.5v17h8.5V4z" fill="#CE2B37"/>
|
|
17
|
+
</g>
|
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 0H0v24h24V0zM12.5 21a8.5 8.5 0 100-17 8.5 8.5 0 000 17z"
|
|
19
|
+
fill="#fff"/>
|
|
20
|
+
</g>
|
|
21
|
+
<defs>
|
|
22
|
+
<clipPath id="clip0">
|
|
23
|
+
<path fill="#fff" d="M0 0h24v24H0z"/>
|
|
24
|
+
</clipPath>
|
|
25
|
+
<clipPath id="clip1">
|
|
26
|
+
<path fill="#fff" transform="translate(-.25 4)" d="M0 0h25.5v17H0z"/>
|
|
27
|
+
</clipPath>
|
|
28
|
+
</defs>
|
|
29
|
+
</svg>
|