@app-brew/brewery 1.0.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/package.json +99 -0
- package/src/analytics/src/analytics-provider-v2.ts +288 -0
- package/src/analytics/src/analytics-provider-v2.web.ts +36 -0
- package/src/analytics/src/analytics-provider.ts +266 -0
- package/src/analytics/src/analytics-provider.web.ts +48 -0
- package/src/analytics/src/analytics-tracker-v2.ts +96 -0
- package/src/analytics/src/anaylytics-tracker.ts +96 -0
- package/src/analytics/src/index.ts +6 -0
- package/src/analytics/src/user-permission.ts +1 -0
- package/src/analytics/src/utils.ts +162 -0
- package/src/app-update/src/index.ts +1 -0
- package/src/app-update/src/lib/app-update.ts +45 -0
- package/src/block-registry/src/common.tsx +439 -0
- package/src/block-registry/src/common.web.tsx +46 -0
- package/src/block-registry/src/index.ts +1 -0
- package/src/block-registry/src/keys.ts +43 -0
- package/src/block-registry/src/register.tsx +66 -0
- package/src/block-registry/src/register.web.tsx +129 -0
- package/src/bottom-sheet/src/block-bottom-sheet.tsx +183 -0
- package/src/bottom-sheet/src/block-bottom-sheet.web.tsx +4 -0
- package/src/bottom-sheet/src/bottom-sheet.tsx +269 -0
- package/src/bottom-sheet/src/bottom-sheet.web.tsx +13 -0
- package/src/bottom-sheet/src/index.ts +3 -0
- package/src/brewery/babel.config.js +3 -0
- package/src/brewery/src/ModalBrewery.tsx +222 -0
- package/src/brewery/src/ScreenBrewery.tsx +415 -0
- package/src/brewery/src/ScreenContainer.tsx +76 -0
- package/src/brewery/src/ScreenContextProvider.tsx +27 -0
- package/src/brewery/src/app-init.tsx +507 -0
- package/src/brewery/src/common.ts +5 -0
- package/src/brewery/src/default-content.tsx +234 -0
- package/src/brewery/src/index.ts +8 -0
- package/src/brewery/src/lazy-screen.tsx +101 -0
- package/src/brewery/src/onboarding-screen.tsx +31 -0
- package/src/brewery/src/plp-content.tsx +19 -0
- package/src/brewery/src/preview-footer.tsx +83 -0
- package/src/brewery/src/profile-screen.tsx +74 -0
- package/src/brewery/src/refreshing-screen.tsx +129 -0
- package/src/brewery/src/safe-area-container.tsx +1 -0
- package/src/brewery/src/screen-content.tsx +89 -0
- package/src/brewery/src/secondary-splash-screen.tsx +190 -0
- package/src/brewery/src/shell.tsx +509 -0
- package/src/brewery/src/tab-bar.tsx +252 -0
- package/src/brewery/src/tabbed-brewery.tsx +175 -0
- package/src/brewery/src/templates.ts +87 -0
- package/src/brewery/src/types.ts +123 -0
- package/src/brewery/src/utils/bottombar.tsx +266 -0
- package/src/brewery/src/utils/colorUtils.ts +71 -0
- package/src/brewery/src/utils/createBottombarVisibility.ts +48 -0
- package/src/brewery/src/utils/index.tsx +3 -0
- package/src/brewery/src/utils/renderItem.tsx +112 -0
- package/src/brewery/src/utils/screens.tsx +270 -0
- package/src/brewery/src/utils/tabReload.ts +57 -0
- package/src/brewery/test-setup.ts +1 -0
- package/src/child-navigator/babel.config.js +3 -0
- package/src/child-navigator/src/index.tsx +52 -0
- package/src/child-navigator/src/view.tsx +197 -0
- package/src/components/babel.config.js +3 -0
- package/src/components/src/atoms/badge/index.tsx +85 -0
- package/src/components/src/atoms/block-section/index.ts +6 -0
- package/src/components/src/atoms/button/index.tsx +112 -0
- package/src/components/src/atoms/check-box/index.tsx +57 -0
- package/src/components/src/atoms/countdown-timer/index.tsx +48 -0
- package/src/components/src/atoms/country-selector/constants.ts +3 -0
- package/src/components/src/atoms/country-selector/index.tsx +146 -0
- package/src/components/src/atoms/date-picker/calendar-date-picker.tsx +509 -0
- package/src/components/src/atoms/date-picker/index.tsx +93 -0
- package/src/components/src/atoms/flex/index.tsx +24 -0
- package/src/components/src/atoms/header/index.ts +2 -0
- package/src/components/src/atoms/header/types.ts +1 -0
- package/src/components/src/atoms/icon/index.tsx +31 -0
- package/src/components/src/atoms/icon-button/index.tsx +29 -0
- package/src/components/src/atoms/image/image1.tsx +8 -0
- package/src/components/src/atoms/image/image1.web.tsx +5 -0
- package/src/components/src/atoms/image/index.ts +1 -0
- package/src/components/src/atoms/image/types.ts +12 -0
- package/src/components/src/atoms/input/index.tsx +34 -0
- package/src/components/src/atoms/link/index.tsx +60 -0
- package/src/components/src/atoms/password-input/index.tsx +89 -0
- package/src/components/src/atoms/product-card-button/index.tsx +203 -0
- package/src/components/src/atoms/radio-group-input/index.tsx +84 -0
- package/src/components/src/atoms/rating-input/index.tsx +47 -0
- package/src/components/src/atoms/safe-area-container.tsx +29 -0
- package/src/components/src/atoms/section/index.ts +1 -0
- package/src/components/src/atoms/section/section.tsx +76 -0
- package/src/components/src/atoms/select/index.tsx +100 -0
- package/src/components/src/atoms/spacer/index.tsx +26 -0
- package/src/components/src/atoms/stars/index.tsx +124 -0
- package/src/components/src/atoms/stars/star-filled.png +0 -0
- package/src/components/src/atoms/stars/star-unfilled.png +0 -0
- package/src/components/src/atoms/text/index.tsx +1 -0
- package/src/components/src/atoms/video/index.tsx +242 -0
- package/src/components/src/atoms/video/index.web.tsx +144 -0
- package/src/components/src/blocks/base-blocks/base-rich-text/index.tsx +49 -0
- package/src/components/src/blocks/bundle-list-block/index.tsx +21 -0
- package/src/components/src/blocks/divider-block/index.tsx +22 -0
- package/src/components/src/blocks/dummy/index.tsx +3 -0
- package/src/components/src/blocks/manage-address-form-block/index.tsx +172 -0
- package/src/components/src/blocks/otp-signin/hooks.tsx +180 -0
- package/src/components/src/blocks/otp-signin/index.tsx +139 -0
- package/src/components/src/blocks/otp-verification/hooks.tsx +304 -0
- package/src/components/src/blocks/otp-verification/index.tsx +212 -0
- package/src/components/src/blocks/prefetch-metafields/index.tsx +16 -0
- package/src/components/src/blocks/product-card-block/index.tsx +53 -0
- package/src/components/src/blocks/product-card-block-v2/index.tsx +71 -0
- package/src/components/src/blocks/product-card-block-v2/index.web.tsx +76 -0
- package/src/components/src/blocks/product-recommendations-block/index.tsx +152 -0
- package/src/components/src/blocks/product-recommendations-block/index.web.tsx +175 -0
- package/src/components/src/blocks/rich-text-block/index.tsx +1 -0
- package/src/components/src/blocks/rich-text-block/rich-text.tsx +117 -0
- package/src/components/src/blocks/rich-text-block/rich-text.web.tsx +91 -0
- package/src/components/src/blocks/social-signin/index.tsx +46 -0
- package/src/components/src/blocks/status-bar-block/index.tsx +28 -0
- package/src/components/src/blocks/variant-selector-2-block/index.tsx +58 -0
- package/src/components/src/blocks/variant-selector-3-block/index.tsx +44 -0
- package/src/components/src/declaration.d.ts +4 -0
- package/src/components/src/hocs/withMetafield.tsx +109 -0
- package/src/components/src/index.ts +13 -0
- package/src/components/src/molecules/accordion/index.tsx +8 -0
- package/src/components/src/molecules/add-to-cart/index.tsx +471 -0
- package/src/components/src/molecules/address/addressCard.tsx +171 -0
- package/src/components/src/molecules/address-form/index.tsx +270 -0
- package/src/components/src/molecules/announcement-strip/icon.tsx +47 -0
- package/src/components/src/molecules/announcement-strip/index.tsx +51 -0
- package/src/components/src/molecules/app-bar/buttons/back.tsx +59 -0
- package/src/components/src/molecules/app-bar/buttons/cart.tsx +63 -0
- package/src/components/src/molecules/app-bar/buttons/index.ts +6 -0
- package/src/components/src/molecules/app-bar/buttons/logo.tsx +46 -0
- package/src/components/src/molecules/app-bar/buttons/logo.web.tsx +42 -0
- package/src/components/src/molecules/app-bar/buttons/profile.tsx +25 -0
- package/src/components/src/molecules/app-bar/buttons/search.tsx +23 -0
- package/src/components/src/molecules/app-bar/buttons/wishlist.tsx +27 -0
- package/src/components/src/molecules/app-bar/expanded-search.tsx +28 -0
- package/src/components/src/molecules/app-bar/index.tsx +308 -0
- package/src/components/src/molecules/app-bar/index.web.tsx +284 -0
- package/src/components/src/molecules/appbar-layout-elements.tsx +71 -0
- package/src/components/src/molecules/appbar-template/back.tsx +20 -0
- package/src/components/src/molecules/appbar-template/cart.tsx +39 -0
- package/src/components/src/molecules/appbar-template/default.tsx +52 -0
- package/src/components/src/molecules/appbar-template/index.tsx +93 -0
- package/src/components/src/molecules/appbar-template/minimal.tsx +27 -0
- package/src/components/src/molecules/appbar-template/tabs.tsx +41 -0
- package/src/components/src/molecules/appbar-template/wishlist.tsx +42 -0
- package/src/components/src/molecules/appbar-v2/appbar-v2.tsx +497 -0
- package/src/components/src/molecules/appbar-v2/appbar-v2.web.tsx +512 -0
- package/src/components/src/molecules/appbar-v2/appbar-variants/back.ts +42 -0
- package/src/components/src/molecules/appbar-v2/appbar-variants/cart.ts +183 -0
- package/src/components/src/molecules/appbar-v2/appbar-variants/default.ts +189 -0
- package/src/components/src/molecules/appbar-v2/appbar-variants/minimal.ts +52 -0
- package/src/components/src/molecules/appbar-v2/appbar-variants/tabs.ts +170 -0
- package/src/components/src/molecules/appbar-v2/appbar-variants/wishlist.ts +180 -0
- package/src/components/src/molecules/appbar-v2/appbar-variants.ts +15 -0
- package/src/components/src/molecules/appbar-v2/index.ts +2 -0
- package/src/components/src/molecules/avatar/index.tsx +43 -0
- package/src/components/src/molecules/base-accordion-list/index.tsx +56 -0
- package/src/components/src/molecules/bottom-bar/bottom-bar.tsx +11 -0
- package/src/components/src/molecules/bottom-bar/bottom-bar.web.tsx +111 -0
- package/src/components/src/molecules/bottom-bar/index.tsx +1 -0
- package/src/components/src/molecules/bundle-list-item/index.tsx +200 -0
- package/src/components/src/molecules/carousel/carousel-item.tsx +206 -0
- package/src/components/src/molecules/carousel/eye-close.tsx +19 -0
- package/src/components/src/molecules/carousel/horizontal-carousel.tsx +418 -0
- package/src/components/src/molecules/carousel/index.tsx +85 -0
- package/src/components/src/molecules/carousel/index.web.tsx +111 -0
- package/src/components/src/molecules/carousel/indicator.tsx +133 -0
- package/src/components/src/molecules/carousel/indicator.web.tsx +77 -0
- package/src/components/src/molecules/carousel/rich-subtitle.tsx +27 -0
- package/src/components/src/molecules/carousel/rich-subtitle.web.tsx +31 -0
- package/src/components/src/molecules/carousel/types.ts +41 -0
- package/src/components/src/molecules/carousel/utils.ts +116 -0
- package/src/components/src/molecules/carousel/v2.tsx +46 -0
- package/src/components/src/molecules/carousel/vertical-carousel.tsx +275 -0
- package/src/components/src/molecules/cart-goals/components/amount-saved.tsx +82 -0
- package/src/components/src/molecules/cart-goals/components/goal-achieved/label.tsx +56 -0
- package/src/components/src/molecules/cart-goals/components/header.tsx +106 -0
- package/src/components/src/molecules/cart-goals/components/ineligible-text.tsx +61 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/index.tsx +27 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-1.tsx +50 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-10.tsx +53 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-2.tsx +43 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-3.tsx +44 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-4.tsx +53 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/style-7.tsx +44 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-layout/types.ts +13 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/CircleWithProgress.tsx +94 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/constants.ts +6 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/index.tsx +28 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-1.tsx +183 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-10.tsx +242 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-2.tsx +160 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-3.tsx +113 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-4-utils.ts +39 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-4.tsx +216 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/style-7.tsx +113 -0
- package/src/components/src/molecules/cart-goals/components/multi-tier-progress/types.ts +18 -0
- package/src/components/src/molecules/cart-goals/components/single-tier-progress.tsx +210 -0
- package/src/components/src/molecules/cart-goals/components/success-modal/index.tsx +117 -0
- package/src/components/src/molecules/cart-goals/haptics.ts +40 -0
- package/src/components/src/molecules/cart-goals/index.tsx +2 -0
- package/src/components/src/molecules/cart-goals/multi-tier-utils.ts +139 -0
- package/src/components/src/molecules/cart-goals/multi-tier.tsx +466 -0
- package/src/components/src/molecules/cart-goals/single-tier-utils.ts +45 -0
- package/src/components/src/molecules/cart-goals/single-tier.tsx +521 -0
- package/src/components/src/molecules/cart-goals/types.ts +105 -0
- package/src/components/src/molecules/cart-goals/use-goal-success-modal.tsx +103 -0
- package/src/components/src/molecules/cart-goals/use-tier-change.ts +42 -0
- package/src/components/src/molecules/cart-goals/utils.ts +153 -0
- package/src/components/src/molecules/checkout-bar/index.tsx +155 -0
- package/src/components/src/molecules/checkout-bar-v2/cart-custom-attributes-interceptor.tsx +130 -0
- package/src/components/src/molecules/checkout-bar-v2/circle.tsx +63 -0
- package/src/components/src/molecules/checkout-bar-v2/goals.tsx +391 -0
- package/src/components/src/molecules/checkout-bar-v2/goals.web.tsx +374 -0
- package/src/components/src/molecules/checkout-bar-v2/index.tsx +267 -0
- package/src/components/src/molecules/checkout-bar-v2/index.web.tsx +115 -0
- package/src/components/src/molecules/checkout-bar-v2/interceptor.tsx +73 -0
- package/src/components/src/molecules/checkout-bar-v2/out-of-stock-modal/index.tsx +216 -0
- package/src/components/src/molecules/checkout-bar-v2/out-of-stock-modal/item.tsx +94 -0
- package/src/components/src/molecules/checkout-bar-v2/out-of-stock-modal/styles.ts +136 -0
- package/src/components/src/molecules/chips-navigation/chip.tsx +83 -0
- package/src/components/src/molecules/chips-navigation/horizontal.tsx +140 -0
- package/src/components/src/molecules/chips-navigation/horizontal.web.tsx +145 -0
- package/src/components/src/molecules/chips-navigation/index.tsx +13 -0
- package/src/components/src/molecules/chips-navigation/index.web.ts +13 -0
- package/src/components/src/molecules/chips-navigation/utils.ts +35 -0
- package/src/components/src/molecules/chips-navigation/vertical.tsx +108 -0
- package/src/components/src/molecules/choice-sheet-content/index.tsx +111 -0
- package/src/components/src/molecules/confirmation-popup/index.tsx +51 -0
- package/src/components/src/molecules/controlled-video/index.tsx +316 -0
- package/src/components/src/molecules/currency-selection-prompt/index.tsx +24 -0
- package/src/components/src/molecules/currency-selector/index.tsx +244 -0
- package/src/components/src/molecules/currency-selector/layout-element.tsx +24 -0
- package/src/components/src/molecules/direct-navigation/index.tsx +48 -0
- package/src/components/src/molecules/discount-label/index.tsx +55 -0
- package/src/components/src/molecules/divider/index.tsx +23 -0
- package/src/components/src/molecules/dropdown-picker/index.tsx +217 -0
- package/src/components/src/molecules/empty-screen-v2/index.tsx +83 -0
- package/src/components/src/molecules/fallback/index.tsx +70 -0
- package/src/components/src/molecules/filter/color-filter.tsx +173 -0
- package/src/components/src/molecules/filter/index.tsx +244 -0
- package/src/components/src/molecules/filter/index.web.tsx +111 -0
- package/src/components/src/molecules/filter/selectors.tsx +623 -0
- package/src/components/src/molecules/form-input/index.tsx +451 -0
- package/src/components/src/molecules/full-screen-loading/index.tsx +20 -0
- package/src/components/src/molecules/generic-form/common.tsx +298 -0
- package/src/components/src/molecules/generic-form/index.tsx +131 -0
- package/src/components/src/molecules/generic-form/types.tsx +30 -0
- package/src/components/src/molecules/generic-product-card/card.tsx +5 -0
- package/src/components/src/molecules/generic-product-card/card.web.tsx +1 -0
- package/src/components/src/molecules/generic-product-card/cardV2.tsx +342 -0
- package/src/components/src/molecules/generic-product-card/common.tsx +590 -0
- package/src/components/src/molecules/generic-product-card/index.tsx +2 -0
- package/src/components/src/molecules/generic-product-card/tags.tsx +178 -0
- package/src/components/src/molecules/generic-product-card/types.tsx +219 -0
- package/src/components/src/molecules/generic-product-card/wrapper.tsx +39 -0
- package/src/components/src/molecules/gift-item-card/index.tsx +44 -0
- package/src/components/src/molecules/gift-item-selected-card/index.tsx +28 -0
- package/src/components/src/molecules/hidden-block/index.tsx +8 -0
- package/src/components/src/molecules/hidden-block/index.web.tsx +81 -0
- package/src/components/src/molecules/image-compare/index.tsx +236 -0
- package/src/components/src/molecules/image-compare/index.web.tsx +213 -0
- package/src/components/src/molecules/image-navigation/index.tsx +32 -0
- package/src/components/src/molecules/image-preview/image-preview.tsx +295 -0
- package/src/components/src/molecules/image-preview/image-preview.web.tsx +157 -0
- package/src/components/src/molecules/image-preview-2/close-icon-button.tsx +11 -0
- package/src/components/src/molecules/image-preview-2/constants.ts +2 -0
- package/src/components/src/molecules/image-preview-2/footer-item.tsx +52 -0
- package/src/components/src/molecules/image-preview-2/footer.tsx +58 -0
- package/src/components/src/molecules/image-preview-2/index.tsx +139 -0
- package/src/components/src/molecules/image-preview-2/types.ts +72 -0
- package/src/components/src/molecules/image-text/index.tsx +139 -0
- package/src/components/src/molecules/line-item/index.tsx +45 -0
- package/src/components/src/molecules/list-item/index.tsx +758 -0
- package/src/components/src/molecules/loader/index.tsx +40 -0
- package/src/components/src/molecules/menu/accordion/image-menu-accordion-list.tsx +114 -0
- package/src/components/src/molecules/menu/accordion/text-menu-accordion-list.tsx +111 -0
- package/src/components/src/molecules/menu/common/horizontal-menu-list.tsx +279 -0
- package/src/components/src/molecules/menu/common/menu-accordion.tsx +69 -0
- package/src/components/src/molecules/menu/common/menu-grid.tsx +179 -0
- package/src/components/src/molecules/menu/common/vertical-menu-list.tsx +197 -0
- package/src/components/src/molecules/menu/common/vertical-menu-list.web.tsx +196 -0
- package/src/components/src/molecules/menu/expandable-grid/image-menu-expandable-grid.tsx +128 -0
- package/src/components/src/molecules/menu/expandable-grid/text-menu-expandable-grid.tsx +107 -0
- package/src/components/src/molecules/menu/grid/image-menu-grid.tsx +58 -0
- package/src/components/src/molecules/menu/grid/text-menu-grid.tsx +55 -0
- package/src/components/src/molecules/menu/index.tsx +38 -0
- package/src/components/src/molecules/menu/item/image-menu-item.tsx +226 -0
- package/src/components/src/molecules/menu/item/text-menu-item.tsx +174 -0
- package/src/components/src/molecules/menu/list/horizontal-image-menu-list.tsx +55 -0
- package/src/components/src/molecules/menu/list/horizontal-text-menu-list.tsx +53 -0
- package/src/components/src/molecules/menu/list/image-menu-list.tsx +38 -0
- package/src/components/src/molecules/menu/list/text-menu-list.tsx +38 -0
- package/src/components/src/molecules/menu/list/vertical-image-menu-list.tsx +58 -0
- package/src/components/src/molecules/menu/list/vertical-text-menu-list.tsx +52 -0
- package/src/components/src/molecules/menu/sub-menu-item.tsx +50 -0
- package/src/components/src/molecules/menu/tabs/horizontal-image-menu-tabs.tsx +211 -0
- package/src/components/src/molecules/menu/tabs/horizontal-text-menu-tabs.tsx +211 -0
- package/src/components/src/molecules/menu/tabs/image-menu-tabs.tsx +52 -0
- package/src/components/src/molecules/menu/tabs/text-menu-tabs.tsx +49 -0
- package/src/components/src/molecules/menu/tabs/vertical-image-menu-tabs.tsx +224 -0
- package/src/components/src/molecules/menu/tabs/vertical-text-menu-tabs.tsx +222 -0
- package/src/components/src/molecules/menu/types.ts +580 -0
- package/src/components/src/molecules/menu/utils.ts +229 -0
- package/src/components/src/molecules/metafield-tag/index.tsx +36 -0
- package/src/components/src/molecules/metafield-tag/index.web.tsx +3 -0
- package/src/components/src/molecules/metafield-text/index.tsx +47 -0
- package/src/components/src/molecules/no-internet-block/index.tsx +43 -0
- package/src/components/src/molecules/only-text-navigation.tsx/index.tsx +79 -0
- package/src/components/src/molecules/order-item/index.tsx +108 -0
- package/src/components/src/molecules/payment-bar/index.tsx +139 -0
- package/src/components/src/molecules/pdp-quantity-selector/index.tsx +44 -0
- package/src/components/src/molecules/phone-country-input/index.tsx +153 -0
- package/src/components/src/molecules/phone-input/index.tsx +287 -0
- package/src/components/src/molecules/phone-input/index.web.tsx +21 -0
- package/src/components/src/molecules/price-box/index.tsx +54 -0
- package/src/components/src/molecules/price-text/index.tsx +40 -0
- package/src/components/src/molecules/product-card/index.tsx +162 -0
- package/src/components/src/molecules/product-card/wishlist/index.tsx +35 -0
- package/src/components/src/molecules/product-card-with-carousel/index.tsx +139 -0
- package/src/components/src/molecules/product-collection/GotoLinkButton.tsx +59 -0
- package/src/components/src/molecules/product-collection/GotoLinkButton.web.tsx +65 -0
- package/src/components/src/molecules/product-collection/index.tsx +458 -0
- package/src/components/src/molecules/product-collection/wrapper.tsx +224 -0
- package/src/components/src/molecules/product-components/add-to-bundle.tsx +19 -0
- package/src/components/src/molecules/product-components/add-to-cart.tsx +708 -0
- package/src/components/src/molecules/product-components/add-to-cart.web.tsx +398 -0
- package/src/components/src/molecules/product-components/add-to-wishlist-v2.tsx +43 -0
- package/src/components/src/molecules/product-components/add-to-wishlist.tsx +42 -0
- package/src/components/src/molecules/product-components/avg-ratings.tsx +56 -0
- package/src/components/src/molecules/product-components/carousel.tsx +85 -0
- package/src/components/src/molecules/product-components/color-swatch.tsx +81 -0
- package/src/components/src/molecules/product-components/compare-at-price.tsx +52 -0
- package/src/components/src/molecules/product-components/delete-from-wishlist.tsx +39 -0
- package/src/components/src/molecules/product-components/discount-label.tsx +109 -0
- package/src/components/src/molecules/product-components/goto-button-v2.tsx +42 -0
- package/src/components/src/molecules/product-components/hooks/carousel.ts +160 -0
- package/src/components/src/molecules/product-components/image.tsx +132 -0
- package/src/components/src/molecules/product-components/in-stock.tsx +86 -0
- package/src/components/src/molecules/product-components/index.tsx +25 -0
- package/src/components/src/molecules/product-components/metafield-rich-text.tsx +61 -0
- package/src/components/src/molecules/product-components/metafield-shopify-richtext.tsx +54 -0
- package/src/components/src/molecules/product-components/metafield-text.tsx +48 -0
- package/src/components/src/molecules/product-components/min-variant-price.tsx +48 -0
- package/src/components/src/molecules/product-components/move-to-cart.tsx +35 -0
- package/src/components/src/molecules/product-components/notify-me.tsx +93 -0
- package/src/components/src/molecules/product-components/open-modal.tsx +35 -0
- package/src/components/src/molecules/product-components/overlay.tsx +25 -0
- package/src/components/src/molecules/product-components/price.tsx +64 -0
- package/src/components/src/molecules/product-components/product-tag-v2.tsx +108 -0
- package/src/components/src/molecules/product-components/product-tag.tsx +56 -0
- package/src/components/src/molecules/product-components/product-type.tsx +32 -0
- package/src/components/src/molecules/product-components/product-variant-options.tsx +69 -0
- package/src/components/src/molecules/product-components/product-variant-selector-3.tsx +67 -0
- package/src/components/src/molecules/product-components/product-vendor.tsx +36 -0
- package/src/components/src/molecules/product-components/quantity-selector.tsx +307 -0
- package/src/components/src/molecules/product-components/quantity-selector.web.tsx +332 -0
- package/src/components/src/molecules/product-components/ratings-count.tsx +57 -0
- package/src/components/src/molecules/product-components/scarcity-counter.tsx +159 -0
- package/src/components/src/molecules/product-components/selling-plan-compare-at-price.tsx +43 -0
- package/src/components/src/molecules/product-components/selling-plan-discount.tsx +42 -0
- package/src/components/src/molecules/product-components/selling-plan-price.tsx +44 -0
- package/src/components/src/molecules/product-components/share-icon.tsx +49 -0
- package/src/components/src/molecules/product-components/spacer.tsx +18 -0
- package/src/components/src/molecules/product-components/star-ratings.tsx +48 -0
- package/src/components/src/molecules/product-components/text-tag.tsx +36 -0
- package/src/components/src/molecules/product-components/title.tsx +34 -0
- package/src/components/src/molecules/product-components/title.web.tsx +34 -0
- package/src/components/src/molecules/product-components/types.tsx +7 -0
- package/src/components/src/molecules/product-components/upsell-product-price.tsx +82 -0
- package/src/components/src/molecules/product-components/utils/add-to-cart.ts +108 -0
- package/src/components/src/molecules/product-components/utils/selected-selling-plan.ts +32 -0
- package/src/components/src/molecules/product-components/utils/selling-plan-compare-at-price.ts +36 -0
- package/src/components/src/molecules/product-components/utils/selling-plan-discount.ts +64 -0
- package/src/components/src/molecules/product-components/utils/selling-plan-price.ts +36 -0
- package/src/components/src/molecules/product-components/variant-selector.tsx +88 -0
- package/src/components/src/molecules/product-components/variant-sku.tsx +35 -0
- package/src/components/src/molecules/product-description-with-tags/index.tsx +56 -0
- package/src/components/src/molecules/product-group/index.tsx +64 -0
- package/src/components/src/molecules/product-group/product-group-list.tsx +64 -0
- package/src/components/src/molecules/product-image/index.tsx +143 -0
- package/src/components/src/molecules/product-tag/index.tsx +33 -0
- package/src/components/src/molecules/product-title/index.tsx +28 -0
- package/src/components/src/molecules/product-vendor/index.tsx +18 -0
- package/src/components/src/molecules/product-video/index.tsx +80 -0
- package/src/components/src/molecules/profile/index.tsx +0 -0
- package/src/components/src/molecules/quantity-selector/index.tsx +596 -0
- package/src/components/src/molecules/review-label/index.tsx +33 -0
- package/src/components/src/molecules/rich-text/index.tsx +1 -0
- package/src/components/src/molecules/rich-text/rich-text.tsx +1 -0
- package/src/components/src/molecules/rich-text/rich-text.web.tsx +1 -0
- package/src/components/src/molecules/search-input/index.tsx +248 -0
- package/src/components/src/molecules/sheet-header/index.tsx +55 -0
- package/src/components/src/molecules/shipping-address-label/index.tsx +67 -0
- package/src/components/src/molecules/simple-image-text/index.tsx +85 -0
- package/src/components/src/molecules/single-product-card/index.tsx +27 -0
- package/src/components/src/molecules/size-guide/index.tsx +187 -0
- package/src/components/src/molecules/skeleton/index.tsx +47 -0
- package/src/components/src/molecules/skeleton/index.web.tsx +18 -0
- package/src/components/src/molecules/skeleton/product-card.tsx +52 -0
- package/src/components/src/molecules/social-sign-in/apple-signin.tsx +88 -0
- package/src/components/src/molecules/social-sign-in/apple-signin.web.ts +4 -0
- package/src/components/src/molecules/social-sign-in/google-signin.tsx +105 -0
- package/src/components/src/molecules/social-sign-in/google-signin.web.ts +3 -0
- package/src/components/src/molecules/social-sign-in/social-auth.tsx +83 -0
- package/src/components/src/molecules/social-sign-in/social-signin-layout-item.tsx +54 -0
- package/src/components/src/molecules/social-sign-in/truecaller-signin.tsx +103 -0
- package/src/components/src/molecules/sub-navigations/index.tsx +169 -0
- package/src/components/src/molecules/subscription-v2/index.tsx +47 -0
- package/src/components/src/molecules/subscription-v2/subscription.tsx +356 -0
- package/src/components/src/molecules/subscription-v2/subscriptions-option-modal.tsx +78 -0
- package/src/components/src/molecules/switch/index.tsx +72 -0
- package/src/components/src/molecules/tab-selector/index.tsx +160 -0
- package/src/components/src/molecules/tab-view/index.tsx +2 -0
- package/src/components/src/molecules/tab-view/tab-item.tsx +67 -0
- package/src/components/src/molecules/tab-view/tab-pane.tsx +13 -0
- package/src/components/src/molecules/tab-view/tabs.tsx +64 -0
- package/src/components/src/molecules/text-carousel/index.tsx +111 -0
- package/src/components/src/molecules/text-label/index.tsx +36 -0
- package/src/components/src/molecules/toasts/add-to-cart-toast.tsx +48 -0
- package/src/components/src/molecules/toasts/brew-error-toast.tsx +49 -0
- package/src/components/src/molecules/toasts/brew-success-toast.tsx +55 -0
- package/src/components/src/molecules/toasts/index.tsx +3 -0
- package/src/components/src/molecules/trending-pillet/index.tsx +48 -0
- package/src/components/src/molecules/variant-item-selector/index.tsx +171 -0
- package/src/components/src/molecules/variant-selector-2/index.tsx +669 -0
- package/src/components/src/molecules/variant-selector-3/default-color-item.tsx +120 -0
- package/src/components/src/molecules/variant-selector-3/default-shopify-color.tsx +167 -0
- package/src/components/src/molecules/variant-selector-3/default-variant-image.tsx +82 -0
- package/src/components/src/molecules/variant-selector-3/index.tsx +114 -0
- package/src/components/src/molecules/variant-selector-3/option-items.tsx +171 -0
- package/src/components/src/molecules/variant-selector-3/option-list.tsx +86 -0
- package/src/components/src/molecules/variant-selector-3/option.tsx +42 -0
- package/src/components/src/molecules/variant-selector-3/utils.ts +131 -0
- package/src/components/src/molecules/variant-selector-3/variant-heading.tsx +162 -0
- package/src/components/src/molecules/variant-selector-3/variant-options.tsx +201 -0
- package/src/components/src/molecules/variant-selector-modal/index.tsx +127 -0
- package/src/components/src/molecules/variant-selector-type/index.tsx +235 -0
- package/src/components/src/molecules/video-carousel-item/index.tsx +183 -0
- package/src/components/src/molecules/video-carousel-item/product-list.tsx +258 -0
- package/src/components/src/molecules/video-carousel-item/product-list.web.tsx +197 -0
- package/src/components/src/molecules/way-to-reward-card/index.tsx +236 -0
- package/src/components/src/molecules/way-to-reward-card/index.web.tsx +188 -0
- package/src/components/src/molecules/web-view-auto-height/index.tsx +28 -0
- package/src/components/src/molecules/wishlist/add-to-wishlist-v2.tsx +144 -0
- package/src/components/src/molecules/wishlist/add-to-wishlist.tsx +136 -0
- package/src/components/src/molecules/wishlist/index.ts +1 -0
- package/src/components/src/molecules/wishlist/move-to-cart.tsx +57 -0
- package/src/components/src/molecules/wishlist/remove-from-wishlist.tsx +40 -0
- package/src/components/src/molecules/youtube-video/index.tsx +54 -0
- package/src/components/src/molecules/youtube-video/index.web.tsx +44 -0
- package/src/components/src/organisms/a1-accordion/index.tsx +93 -0
- package/src/components/src/organisms/a1-accordion/index.web.tsx +82 -0
- package/src/components/src/organisms/a1-accordion-image/index.tsx +97 -0
- package/src/components/src/organisms/a1-collection-image-banner/index.tsx +84 -0
- package/src/components/src/organisms/a1-collection-image-banner/index.web.tsx +23 -0
- package/src/components/src/organisms/a1-generic-metafield-accordion/index.tsx +90 -0
- package/src/components/src/organisms/a1-generic-metafield-accordion/index.web.tsx +10 -0
- package/src/components/src/organisms/a1-image-banner/index.tsx +86 -0
- package/src/components/src/organisms/a1-image-list/index.tsx +99 -0
- package/src/components/src/organisms/a1-product-description-html/index.tsx +137 -0
- package/src/components/src/organisms/a1-product-description-html/index.web.tsx +90 -0
- package/src/components/src/organisms/a1-product-grid/index.tsx +60 -0
- package/src/components/src/organisms/a1-product-list/index.tsx +92 -0
- package/src/components/src/organisms/accordion-image/index.tsx +68 -0
- package/src/components/src/organisms/add-address/index.tsx +62 -0
- package/src/components/src/organisms/add-review/index.tsx +190 -0
- package/src/components/src/organisms/add-to-bundle/index.tsx +44 -0
- package/src/components/src/organisms/add-to-cart-bar/add-to-card-bar.tsx +115 -0
- package/src/components/src/organisms/add-to-cart-bar/index.tsx +1 -0
- package/src/components/src/organisms/add-to-cart-bar/v2.tsx +205 -0
- package/src/components/src/organisms/add-to-cart-bar/wrapper.tsx +44 -0
- package/src/components/src/organisms/add-to-wishlist-bar/index.tsx +96 -0
- package/src/components/src/organisms/address-form/index.tsx +511 -0
- package/src/components/src/organisms/address-form-input-field/index.tsx +375 -0
- package/src/components/src/organisms/address-list/index.tsx +154 -0
- package/src/components/src/organisms/announcement-carousel/index.tsx +207 -0
- package/src/components/src/organisms/announcement-carousel/index.web.tsx +73 -0
- package/src/components/src/organisms/announcement-ticker/index.tsx +247 -0
- package/src/components/src/organisms/announcement-ticker/index.web.tsx +169 -0
- package/src/components/src/organisms/apply-coupon/index.tsx +395 -0
- package/src/components/src/organisms/apply-coupon-v2/applied-coupon-card.tsx +84 -0
- package/src/components/src/organisms/apply-coupon-v2/available-coupons.tsx +123 -0
- package/src/components/src/organisms/apply-coupon-v2/coupon-svg-bg.tsx +25 -0
- package/src/components/src/organisms/apply-coupon-v2/index.tsx +367 -0
- package/src/components/src/organisms/blog-list/blog-data.tsx +268 -0
- package/src/components/src/organisms/blog-list/blog-item.tsx +70 -0
- package/src/components/src/organisms/blog-list/empty-blog-list.tsx +42 -0
- package/src/components/src/organisms/blog-list/index.tsx +102 -0
- package/src/components/src/organisms/blog-list/index.web.tsx +92 -0
- package/src/components/src/organisms/brew-collection-image-banner/index.tsx +96 -0
- package/src/components/src/organisms/bundle-bar/index.tsx +128 -0
- package/src/components/src/organisms/bundle-filter-bar/index.tsx +114 -0
- package/src/components/src/organisms/bundle-items-modal/index.tsx +140 -0
- package/src/components/src/organisms/bundle-list/index.tsx +65 -0
- package/src/components/src/organisms/buy-now-bar/index.tsx +79 -0
- package/src/components/src/organisms/carousel-with-background-blur/carousel.tsx +393 -0
- package/src/components/src/organisms/carousel-with-background-blur/carousel.web.tsx +179 -0
- package/src/components/src/organisms/carousel-with-background-blur/index.tsx +90 -0
- package/src/components/src/organisms/carousel-with-background-blur/index.web.tsx +73 -0
- package/src/components/src/organisms/carousel-with-background-blur/indicator.tsx +144 -0
- package/src/components/src/organisms/cart-custom-attributes/index.tsx +103 -0
- package/src/components/src/organisms/cart-goal/index.tsx +116 -0
- package/src/components/src/organisms/cart-goals/index.tsx +2 -0
- package/src/components/src/organisms/cart-goals/milestones.tsx +233 -0
- package/src/components/src/organisms/cart-goals/progress-bar.tsx +214 -0
- package/src/components/src/organisms/cart-list/cart-item.tsx +0 -0
- package/src/components/src/organisms/cart-list/empty-cart.tsx +113 -0
- package/src/components/src/organisms/cart-list/index.tsx +271 -0
- package/src/components/src/organisms/cart-payment-web-view/index.tsx +213 -0
- package/src/components/src/organisms/categories-navigation/index.tsx +168 -0
- package/src/components/src/organisms/change-address/index.tsx +512 -0
- package/src/components/src/organisms/change-address-v2/index.tsx +223 -0
- package/src/components/src/organisms/change-password/index.tsx +231 -0
- package/src/components/src/organisms/chips-navigation/index.tsx +41 -0
- package/src/components/src/organisms/chips-navigation/index.web.tsx +69 -0
- package/src/components/src/organisms/chips-navigation-accordion/index.tsx +47 -0
- package/src/components/src/organisms/collection-list/index.tsx +74 -0
- package/src/components/src/organisms/collection-list-background/index.tsx +99 -0
- package/src/components/src/organisms/color-image/index.tsx +79 -0
- package/src/components/src/organisms/color-swatch-group/index.tsx +141 -0
- package/src/components/src/organisms/confirm-dialog/index.tsx +34 -0
- package/src/components/src/organisms/countdown-banner/common.tsx +263 -0
- package/src/components/src/organisms/countdown-banner/index.tsx +143 -0
- package/src/components/src/organisms/countdown-banner/index.web.tsx +176 -0
- package/src/components/src/organisms/countdown-banner/types.tsx +29 -0
- package/src/components/src/organisms/currency-selector/index.tsx +39 -0
- package/src/components/src/organisms/delete-account/index.tsx +93 -0
- package/src/components/src/organisms/delete-account-privacy/index.tsx +39 -0
- package/src/components/src/organisms/delivery-details/index.tsx +157 -0
- package/src/components/src/organisms/discount-code-input/index.tsx +152 -0
- package/src/components/src/organisms/divider-heading/index.tsx +51 -0
- package/src/components/src/organisms/edit-address/index.tsx +53 -0
- package/src/components/src/organisms/empty-screen/index.tsx +74 -0
- package/src/components/src/organisms/empty-screen-v2/index.tsx +26 -0
- package/src/components/src/organisms/empty-searches/index.tsx +96 -0
- package/src/components/src/organisms/estimated-delivery-date/dates-mapping.ts +23 -0
- package/src/components/src/organisms/estimated-delivery-date/index.tsx +141 -0
- package/src/components/src/organisms/faqs/defaults.ts +65 -0
- package/src/components/src/organisms/faqs/index.tsx +51 -0
- package/src/components/src/organisms/faqs/index.web.tsx +64 -0
- package/src/components/src/organisms/follow-us/index.tsx +58 -0
- package/src/components/src/organisms/forgot-password/index.tsx +228 -0
- package/src/components/src/organisms/free-engraving/index.tsx +180 -0
- package/src/components/src/organisms/gift-items-list/index.tsx +98 -0
- package/src/components/src/organisms/gift-wrap-list/custom-attributes-form.tsx +77 -0
- package/src/components/src/organisms/gift-wrap-list/gift-wrap-item.tsx +133 -0
- package/src/components/src/organisms/gift-wrap-list/index.tsx +72 -0
- package/src/components/src/organisms/goto-button/index.tsx +53 -0
- package/src/components/src/organisms/goto-button/index.web.tsx +46 -0
- package/src/components/src/organisms/goto-button-v2/index.tsx +58 -0
- package/src/components/src/organisms/horizontal-tabs-menu/defaults.ts +797 -0
- package/src/components/src/organisms/horizontal-tabs-menu/index.tsx +79 -0
- package/src/components/src/organisms/icon-list/index.tsx +150 -0
- package/src/components/src/organisms/image-banner/index.tsx +158 -0
- package/src/components/src/organisms/image-collage/constants.ts +8 -0
- package/src/components/src/organisms/image-collage/index.tsx +147 -0
- package/src/components/src/organisms/image-collage/variants.common.ts +415 -0
- package/src/components/src/organisms/image-collage/variants.ts +129 -0
- package/src/components/src/organisms/image-collage/variants.web.ts +119 -0
- package/src/components/src/organisms/image-compare-block/index.tsx +48 -0
- package/src/components/src/organisms/image-list/index.tsx +427 -0
- package/src/components/src/organisms/image-list/utils.tsx +8 -0
- package/src/components/src/organisms/image-list/utils.web.tsx +6 -0
- package/src/components/src/organisms/image-list-accordion/index.tsx +47 -0
- package/src/components/src/organisms/image-marquee/index.tsx +178 -0
- package/src/components/src/organisms/image-marquee/index.web.tsx +190 -0
- package/src/components/src/organisms/image-marquee/types.ts +14 -0
- package/src/components/src/organisms/image-preview/index.tsx +51 -0
- package/src/components/src/organisms/image-video-reel/carouse-item.tsx +348 -0
- package/src/components/src/organisms/image-video-reel/carouse-item.web.tsx +318 -0
- package/src/components/src/organisms/image-video-reel/index.tsx +359 -0
- package/src/components/src/organisms/image-video-reel/indicator.tsx +116 -0
- package/src/components/src/organisms/image-video-reel/indicator.web.tsx +80 -0
- package/src/components/src/organisms/image-video-reel/types.ts +103 -0
- package/src/components/src/organisms/infinite-product-grid/index.tsx +218 -0
- package/src/components/src/organisms/infinite-product-grid/index.web.tsx +105 -0
- package/src/components/src/organisms/infinite-product-grid-v2/index.tsx +163 -0
- package/src/components/src/organisms/judgeme-reviews/index.tsx +129 -0
- package/src/components/src/organisms/judgeme-reviews/utils.ts +77 -0
- package/src/components/src/organisms/last-order/index.tsx +40 -0
- package/src/components/src/organisms/metafield-image-compare-block/hook.tsx +119 -0
- package/src/components/src/organisms/metafield-image-compare-block/index.tsx +59 -0
- package/src/components/src/organisms/metafield-product-list/index.tsx +114 -0
- package/src/components/src/organisms/metafield-rich-text/index.tsx +101 -0
- package/src/components/src/organisms/metafield-rich-text/metafield-accordian.tsx +51 -0
- package/src/components/src/organisms/metafield-rich-text/metafield-accordian.web.tsx +55 -0
- package/src/components/src/organisms/metafield-size-chart-page/index.tsx +86 -0
- package/src/components/src/organisms/metafield-tag-block/index.tsx +28 -0
- package/src/components/src/organisms/metafield-text/index.tsx +87 -0
- package/src/components/src/organisms/metafields-product-group/index.tsx +89 -0
- package/src/components/src/organisms/more-menu/index.tsx +64 -0
- package/src/components/src/organisms/move-to-wishlist/index.tsx +79 -0
- package/src/components/src/organisms/multi-level-menu/index.tsx +54 -0
- package/src/components/src/organisms/opinew-reviews/index.tsx +102 -0
- package/src/components/src/organisms/opinew-reviews/utils.tsx +55 -0
- package/src/components/src/organisms/order-cancel/index.tsx +63 -0
- package/src/components/src/organisms/order-details-header/index.tsx +78 -0
- package/src/components/src/organisms/order-details-webview/index.tsx +47 -0
- package/src/components/src/organisms/order-list/index.tsx +458 -0
- package/src/components/src/organisms/order-payment-details/index.tsx +90 -0
- package/src/components/src/organisms/order-product-list/index.tsx +79 -0
- package/src/components/src/organisms/order-product-list-v2/index.tsx +158 -0
- package/src/components/src/organisms/otp-signup/index.tsx +186 -0
- package/src/components/src/organisms/past-searches/index.tsx +202 -0
- package/src/components/src/organisms/payment-confirmation/index.tsx +177 -0
- package/src/components/src/organisms/payment-details/index.tsx +264 -0
- package/src/components/src/organisms/payment-success/index.tsx +49 -0
- package/src/components/src/organisms/payment-web-view/index.tsx +285 -0
- package/src/components/src/organisms/payment-web-view-v4/index.tsx +600 -0
- package/src/components/src/organisms/pdp/index.tsx +168 -0
- package/src/components/src/organisms/pdp/index.web.tsx +60 -0
- package/src/components/src/organisms/pdp-description/index.tsx +104 -0
- package/src/components/src/organisms/pdp-description-native/index.tsx +63 -0
- package/src/components/src/organisms/pdp-description-native/index.web.tsx +11 -0
- package/src/components/src/organisms/pdp-metafield-video/index.tsx +153 -0
- package/src/components/src/organisms/popup-modal/index.tsx +129 -0
- package/src/components/src/organisms/previously-ordered-products/index.tsx +105 -0
- package/src/components/src/organisms/product-discount/common.tsx +123 -0
- package/src/components/src/organisms/product-discount/coupon-card.tsx +125 -0
- package/src/components/src/organisms/product-discount/defaults.ts +136 -0
- package/src/components/src/organisms/product-discount/empty-coupons.tsx +4 -0
- package/src/components/src/organisms/product-discount/empty-coupons.web.tsx +11 -0
- package/src/components/src/organisms/product-discount/index.tsx +228 -0
- package/src/components/src/organisms/product-discount/types.tsx +28 -0
- package/src/components/src/organisms/product-grid/index.tsx +86 -0
- package/src/components/src/organisms/product-hotspot/animated-circle.tsx +88 -0
- package/src/components/src/organisms/product-hotspot/animated-circle.web.tsx +55 -0
- package/src/components/src/organisms/product-hotspot/index.tsx +255 -0
- package/src/components/src/organisms/product-hotspot/item.tsx +124 -0
- package/src/components/src/organisms/product-hotspot/modal-body.tsx +50 -0
- package/src/components/src/organisms/product-hotspot/product-card.tsx +111 -0
- package/src/components/src/organisms/product-info/index.tsx +421 -0
- package/src/components/src/organisms/product-info/wrapper.tsx +15 -0
- package/src/components/src/organisms/product-info/wrapper.web.tsx +15 -0
- package/src/components/src/organisms/product-list/index.tsx +104 -0
- package/src/components/src/organisms/product-list/index.web.tsx +110 -0
- package/src/components/src/organisms/product-list/product-list.schema.ts +816 -0
- package/src/components/src/organisms/product-refresh/index.tsx +19 -0
- package/src/components/src/organisms/product-size-chart-v2/index.tsx +49 -0
- package/src/components/src/organisms/product-summary/index.tsx +1 -0
- package/src/components/src/organisms/product-summary/product-summary.tsx +253 -0
- package/src/components/src/organisms/product-summary/wrapper.tsx +36 -0
- package/src/components/src/organisms/profile/index.tsx +238 -0
- package/src/components/src/organisms/profile-2/index.tsx +254 -0
- package/src/components/src/organisms/profile-edit/constants.ts +74 -0
- package/src/components/src/organisms/profile-edit/index.tsx +802 -0
- package/src/components/src/organisms/profile-edit/styles.ts +371 -0
- package/src/components/src/organisms/profile-edit/types.ts +120 -0
- package/src/components/src/organisms/profile-edit/utils.ts +362 -0
- package/src/components/src/organisms/profile-menu/index.tsx +65 -0
- package/src/components/src/organisms/profile-signed-out/index.tsx +72 -0
- package/src/components/src/organisms/profile-signedout-v2/index.tsx +36 -0
- package/src/components/src/organisms/profile-signout/index.tsx +65 -0
- package/src/components/src/organisms/profile-user-greeting/index.tsx +113 -0
- package/src/components/src/organisms/promo-banner/PromoBanner.tsx +0 -0
- package/src/components/src/organisms/promo-banner/index.ts +0 -0
- package/src/components/src/organisms/promo-block/index.tsx +69 -0
- package/src/components/src/organisms/promo-carousel/index.tsx +101 -0
- package/src/components/src/organisms/promo-carousel/index.web.tsx +85 -0
- package/src/components/src/organisms/push-inbox/index.tsx +392 -0
- package/src/components/src/organisms/push-inbox/utils.ts +94 -0
- package/src/components/src/organisms/push-notification-prompt-button/index.tsx +45 -0
- package/src/components/src/organisms/push-notification-settings-block/index.tsx +119 -0
- package/src/components/src/organisms/quantity-selector-block/index.tsx +54 -0
- package/src/components/src/organisms/recent-order/addressSelector.tsx +88 -0
- package/src/components/src/organisms/recent-order/index.tsx +51 -0
- package/src/components/src/organisms/recent-order/paymentDetails.tsx +68 -0
- package/src/components/src/organisms/recently-viewed-products/index.tsx +92 -0
- package/src/components/src/organisms/recently-viewed-products/index.web.tsx +110 -0
- package/src/components/src/organisms/reels/index.tsx +467 -0
- package/src/components/src/organisms/reels/index.web.tsx +345 -0
- package/src/components/src/organisms/requires-auth/index.tsx +16 -0
- package/src/components/src/organisms/reset-password/index.tsx +140 -0
- package/src/components/src/organisms/review-bar/index.tsx +39 -0
- package/src/components/src/organisms/rewards-history/index.tsx +105 -0
- package/src/components/src/organisms/rewards-summary/index.tsx +146 -0
- package/src/components/src/organisms/rewards-summary-old/index.tsx +130 -0
- package/src/components/src/organisms/search-bar/index.tsx +34 -0
- package/src/components/src/organisms/search-product-list/index.tsx +31 -0
- package/src/components/src/organisms/search-recommendations/index.tsx +66 -0
- package/src/components/src/organisms/search-suggestions/index.tsx +194 -0
- package/src/components/src/organisms/search-suggestions-v2/collection-suggestions.tsx +61 -0
- package/src/components/src/organisms/search-suggestions-v2/index.tsx +91 -0
- package/src/components/src/organisms/search-suggestions-v2/page-suggestions.tsx +85 -0
- package/src/components/src/organisms/search-suggestions-v2/product-suggestions.tsx +174 -0
- package/src/components/src/organisms/search-suggestions-v2/search-term-suggestions.tsx +62 -0
- package/src/components/src/organisms/search-suggestions-v2/suggestion.tsx +100 -0
- package/src/components/src/organisms/shipping-address/index.tsx +59 -0
- package/src/components/src/organisms/shop-policy/index.tsx +93 -0
- package/src/components/src/organisms/shop-policy/index.web.tsx +12 -0
- package/src/components/src/organisms/shopify-customer-auth-webview/index.tsx +207 -0
- package/src/components/src/organisms/shopify-customer-payment-web-view/index.tsx +603 -0
- package/src/components/src/organisms/shopify-reviews/index.tsx +52 -0
- package/src/components/src/organisms/shopify-reviews/utils.ts +27 -0
- package/src/components/src/organisms/shopify-rich-text-block/index.tsx +60 -0
- package/src/components/src/organisms/shopify-store-credits/index.tsx +369 -0
- package/src/components/src/organisms/sign-in/index.tsx +242 -0
- package/src/components/src/organisms/sign-in-v2/index.tsx +282 -0
- package/src/components/src/organisms/sign-in-v3/index.tsx +259 -0
- package/src/components/src/organisms/sign-up/index.tsx +251 -0
- package/src/components/src/organisms/sign-up-v2/index.tsx +267 -0
- package/src/components/src/organisms/signin-modal/continue-as-guest.tsx +46 -0
- package/src/components/src/organisms/signin-modal/index.tsx +113 -0
- package/src/components/src/organisms/signup-modal/index.tsx +61 -0
- package/src/components/src/organisms/simpl-pay-block/index.tsx +84 -0
- package/src/components/src/organisms/single-level-navigation/index.tsx +91 -0
- package/src/components/src/organisms/snapmint-pay-block/index.tsx +173 -0
- package/src/components/src/organisms/spacer/index.tsx +17 -0
- package/src/components/src/organisms/subscription/index.tsx +52 -0
- package/src/components/src/organisms/subscription/subscription.tsx +226 -0
- package/src/components/src/organisms/subscription-selector-dropdown/extra-info.tsx +53 -0
- package/src/components/src/organisms/subscription-selector-dropdown/index.tsx +30 -0
- package/src/components/src/organisms/subscription-selector-dropdown/more-price-info.tsx +38 -0
- package/src/components/src/organisms/subscription-selector-dropdown/one-time-plan.tsx +85 -0
- package/src/components/src/organisms/subscription-selector-dropdown/purchase-plans.tsx +60 -0
- package/src/components/src/organisms/subscription-selector-dropdown/selling-plan-options.tsx +132 -0
- package/src/components/src/organisms/subscription-selector-dropdown/subscription-option-label.tsx +91 -0
- package/src/components/src/organisms/subscription-selector-dropdown/subscription.tsx +27 -0
- package/src/components/src/organisms/subscription-selector-dropdown/susbcription-plan.tsx +126 -0
- package/src/components/src/organisms/tabbed-product-collection/index.tsx +263 -0
- package/src/components/src/organisms/tabbed-product-collection/index.web.tsx +270 -0
- package/src/components/src/organisms/tag-redirect-product-images/index.tsx +203 -0
- package/src/components/src/organisms/tagged-page-size-chart/index.tsx +76 -0
- package/src/components/src/organisms/tagged-pdp-content/index.tsx +72 -0
- package/src/components/src/organisms/tagged-plp-content/index.tsx +67 -0
- package/src/components/src/organisms/tagged-rich-text/index.tsx +58 -0
- package/src/components/src/organisms/tagged-rich-text/index.web.tsx +25 -0
- package/src/components/src/organisms/tailored-variant-form/index.tsx +497 -0
- package/src/components/src/organisms/testimonials/Testimonials.tsx +45 -0
- package/src/components/src/organisms/testimonials/index.tsx +45 -0
- package/src/components/src/organisms/total-savings/index.tsx +50 -0
- package/src/components/src/organisms/trending-products/index.tsx +84 -0
- package/src/components/src/organisms/trending-searches/index.tsx +125 -0
- package/src/components/src/organisms/two-level-navigation/index.tsx +80 -0
- package/src/components/src/organisms/upsell-product-list/index.tsx +247 -0
- package/src/components/src/organisms/variant-carousel/index.tsx +121 -0
- package/src/components/src/organisms/variant-selector-modal-block/index.tsx +126 -0
- package/src/components/src/organisms/variant-selector-subscriptions/index.tsx +106 -0
- package/src/components/src/organisms/variantSelector/index.tsx +69 -0
- package/src/components/src/organisms/vertical-tabs-menu/defaults.ts +526 -0
- package/src/components/src/organisms/vertical-tabs-menu/index.tsx +61 -0
- package/src/components/src/organisms/video-banner/index.tsx +140 -0
- package/src/components/src/organisms/video-banner/index.web.tsx +123 -0
- package/src/components/src/organisms/video-banner-v2/index.tsx +188 -0
- package/src/components/src/organisms/video-carousel/index.tsx +404 -0
- package/src/components/src/organisms/video-carousel/index.web.tsx +357 -0
- package/src/components/src/organisms/video-carousel/video-carousel-item/index.tsx +277 -0
- package/src/components/src/organisms/video-carousel/video-carousel-item/product-list.tsx +257 -0
- package/src/components/src/organisms/video-carousel/video-carousel-item/product-list.web.tsx +197 -0
- package/src/components/src/organisms/video-list/index.tsx +103 -0
- package/src/components/src/organisms/view-coupons/discount-amount.tsx +48 -0
- package/src/components/src/organisms/view-coupons/index.tsx +137 -0
- package/src/components/src/organisms/view-coupons-v2/index.tsx +174 -0
- package/src/components/src/organisms/view-coupons-v2/savings-banner.tsx +100 -0
- package/src/components/src/organisms/web-view/index.tsx +281 -0
- package/src/components/src/organisms/web-view/index.web.tsx +61 -0
- package/src/components/src/organisms/wishlist/index.tsx +224 -0
- package/src/components/src/organisms/wishlist-v2/index.tsx +95 -0
- package/src/components/src/organisms/wishlisted-items/index.tsx +95 -0
- package/src/components/src/organisms/youtube-embed/index.tsx +41 -0
- package/src/components/src/registry.ts +2 -0
- package/src/components/src/style-utils.ts +441 -0
- package/src/components/src/utils.ts +252 -0
- package/src/components/test-setup.ts +1 -0
- package/src/container-registry/babel.config.js +3 -0
- package/src/container-registry/src/common.tsx +16 -0
- package/src/container-registry/src/index.ts +1 -0
- package/src/container-registry/src/register.tsx +27 -0
- package/src/container-registry/src/register.web.tsx +16 -0
- package/src/container-registry/test-setup.ts +1 -0
- package/src/containers/src/a1-tabbed-block-list/index.tsx +115 -0
- package/src/containers/src/accordion-container/index.tsx +72 -0
- package/src/containers/src/index.ts +0 -0
- package/src/containers/src/rules-container/index.tsx +88 -0
- package/src/containers/src/tabbed-block-list/index.tsx +81 -0
- package/src/containers/src/tabbed-screen-container/index.tsx +51 -0
- package/src/containers/test-setup.ts +1 -0
- package/src/cookie-manager/src/cookie.ts +16 -0
- package/src/cookie-manager/src/cookie.web.ts +5 -0
- package/src/cookie-manager/src/index.ts +1 -0
- package/src/cookie-manager/test-setup.ts +1 -0
- package/src/discount/src/gift.ts +182 -0
- package/src/discount/src/index.ts +1 -0
- package/src/discount/src/utils.ts +164 -0
- package/src/discount/test-setup.ts +1 -0
- package/src/enhanced-fetch/src/enhanced-fetch-tests.js +711 -0
- package/src/enhanced-fetch/src/index.ts +245 -0
- package/src/event-emitter/src/index.ts +38 -0
- package/src/firebase/src/index.ts +2 -0
- package/src/firebase/src/lib/analytics.ts +33 -0
- package/src/firebase/src/lib/analyticsV2.ts +61 -0
- package/src/icons/src/declarations.d.ts +6 -0
- package/src/icons/src/icon-registry.tsx +81 -0
- package/src/icons/src/icon-registry.web.tsx +81 -0
- package/src/icons/src/icon-set.tsx +455 -0
- package/src/icons/src/index.ts +4 -0
- package/src/icons/src/remote-icon.tsx +46 -0
- package/src/icons/src/remote-icon.web.tsx +25 -0
- package/src/icons/src/remote-image-icon.tsx +66 -0
- package/src/icons/src/remote-image-icon.web.tsx +31 -0
- package/src/icons/src/svgs/account.tsx +17 -0
- package/src/icons/src/svgs/add-to-cart.tsx +49 -0
- package/src/icons/src/svgs/address.tsx +26 -0
- package/src/icons/src/svgs/afterpay.tsx +110 -0
- package/src/icons/src/svgs/apple.tsx +19 -0
- package/src/icons/src/svgs/back.tsx +10 -0
- package/src/icons/src/svgs/badge.tsx +19 -0
- package/src/icons/src/svgs/bag.tsx +27 -0
- package/src/icons/src/svgs/cake.tsx +13 -0
- package/src/icons/src/svgs/calendar.tsx +20 -0
- package/src/icons/src/svgs/cancel.tsx +20 -0
- package/src/icons/src/svgs/cart-cancel.tsx +35 -0
- package/src/icons/src/svgs/cart.tsx +14 -0
- package/src/icons/src/svgs/categories.tsx +13 -0
- package/src/icons/src/svgs/checked.tsx +18 -0
- package/src/icons/src/svgs/checkedCircle.tsx +26 -0
- package/src/icons/src/svgs/chevron-down.tsx +26 -0
- package/src/icons/src/svgs/chevron-left.tsx +13 -0
- package/src/icons/src/svgs/chevron-right.tsx +19 -0
- package/src/icons/src/svgs/chevron-up.tsx +27 -0
- package/src/icons/src/svgs/chevron.tsx +35 -0
- package/src/icons/src/svgs/circled-arrow.tsx +29 -0
- package/src/icons/src/svgs/clear.tsx +35 -0
- package/src/icons/src/svgs/clipboard.tsx +23 -0
- package/src/icons/src/svgs/close.tsx +26 -0
- package/src/icons/src/svgs/collection.tsx +32 -0
- package/src/icons/src/svgs/copy.tsx +31 -0
- package/src/icons/src/svgs/coupon-icon.tsx +23 -0
- package/src/icons/src/svgs/coupon.tsx +35 -0
- package/src/icons/src/svgs/crate.tsx +13 -0
- package/src/icons/src/svgs/cross.tsx +21 -0
- package/src/icons/src/svgs/deals.tsx +26 -0
- package/src/icons/src/svgs/discount.tsx +42 -0
- package/src/icons/src/svgs/dollar.tsx +33 -0
- package/src/icons/src/svgs/error.tsx +35 -0
- package/src/icons/src/svgs/eye.tsx +33 -0
- package/src/icons/src/svgs/eyeOff.tsx +35 -0
- package/src/icons/src/svgs/facebook.tsx +31 -0
- package/src/icons/src/svgs/favorite.tsx +79 -0
- package/src/icons/src/svgs/filter.tsx +24 -0
- package/src/icons/src/svgs/fragrances.tsx +55 -0
- package/src/icons/src/svgs/gift.tsx +23 -0
- package/src/icons/src/svgs/gifts.tsx +38 -0
- package/src/icons/src/svgs/goal-discount-filled.tsx +21 -0
- package/src/icons/src/svgs/goal-discount.tsx +24 -0
- package/src/icons/src/svgs/goal-locked.tsx +21 -0
- package/src/icons/src/svgs/goal-unlocked.tsx +34 -0
- package/src/icons/src/svgs/google-colorful.tsx +38 -0
- package/src/icons/src/svgs/google.tsx +28 -0
- package/src/icons/src/svgs/grooming.tsx +22 -0
- package/src/icons/src/svgs/hamburger.tsx +30 -0
- package/src/icons/src/svgs/heart.tsx +30 -0
- package/src/icons/src/svgs/help.tsx +22 -0
- package/src/icons/src/svgs/history.tsx +26 -0
- package/src/icons/src/svgs/home.tsx +21 -0
- package/src/icons/src/svgs/homes.svg +4 -0
- package/src/icons/src/svgs/info.tsx +19 -0
- package/src/icons/src/svgs/inline-error-icon.tsx +13 -0
- package/src/icons/src/svgs/inline-success-icon-double-checkmarks.tsx +15 -0
- package/src/icons/src/svgs/instagram.tsx +17 -0
- package/src/icons/src/svgs/lock.tsx +15 -0
- package/src/icons/src/svgs/mail.tsx +30 -0
- package/src/icons/src/svgs/mins.tsx +21 -0
- package/src/icons/src/svgs/minus.tsx +19 -0
- package/src/icons/src/svgs/more.tsx +13 -0
- package/src/icons/src/svgs/notification-bell.tsx +44 -0
- package/src/icons/src/svgs/notifications.tsx +21 -0
- package/src/icons/src/svgs/offers.tsx +11 -0
- package/src/icons/src/svgs/order-history.tsx +19 -0
- package/src/icons/src/svgs/order.tsx +32 -0
- package/src/icons/src/svgs/package-check.tsx +30 -0
- package/src/icons/src/svgs/pause.tsx +17 -0
- package/src/icons/src/svgs/pencil.tsx +17 -0
- package/src/icons/src/svgs/percent-circle.tsx +30 -0
- package/src/icons/src/svgs/play.tsx +13 -0
- package/src/icons/src/svgs/plus.tsx +12 -0
- package/src/icons/src/svgs/privacy.tsx +15 -0
- package/src/icons/src/svgs/product.tsx +14 -0
- package/src/icons/src/svgs/profile-circle.tsx +16 -0
- package/src/icons/src/svgs/profile-permission.tsx +17 -0
- package/src/icons/src/svgs/profile-tab-icon.tsx +11 -0
- package/src/icons/src/svgs/profile.tsx +16 -0
- package/src/icons/src/svgs/reward.tsx +22 -0
- package/src/icons/src/svgs/rewards.tsx +15 -0
- package/src/icons/src/svgs/sad-emoji.tsx +30 -0
- package/src/icons/src/svgs/search.tsx +31 -0
- package/src/icons/src/svgs/share.tsx +28 -0
- package/src/icons/src/svgs/shipping.tsx +20 -0
- package/src/icons/src/svgs/signout.tsx +15 -0
- package/src/icons/src/svgs/signup.tsx +26 -0
- package/src/icons/src/svgs/snap-mint.tsx +49 -0
- package/src/icons/src/svgs/sort.tsx +12 -0
- package/src/icons/src/svgs/speakerOff.tsx +40 -0
- package/src/icons/src/svgs/speakerOn.tsx +20 -0
- package/src/icons/src/svgs/stars.tsx +36 -0
- package/src/icons/src/svgs/success.tsx +21 -0
- package/src/icons/src/svgs/tag.tsx +25 -0
- package/src/icons/src/svgs/thumbs-up-outlined.tsx +36 -0
- package/src/icons/src/svgs/thumbs-up.tsx +11 -0
- package/src/icons/src/svgs/tick.tsx +23 -0
- package/src/icons/src/svgs/trash.tsx +21 -0
- package/src/icons/src/svgs/trending.tsx +36 -0
- package/src/icons/src/svgs/truck.tsx +30 -0
- package/src/icons/src/svgs/truecaller.tsx +44 -0
- package/src/icons/src/svgs/types.ts +0 -0
- package/src/icons/src/svgs/unchecked.tsx +13 -0
- package/src/icons/src/svgs/verified.tsx +23 -0
- package/src/icons/src/svgs/video-play.tsx +12 -0
- package/src/icons/src/svgs/volume-off.tsx +18 -0
- package/src/icons/src/svgs/volume.tsx +18 -0
- package/src/icons/src/svgs/way.tsx +14 -0
- package/src/icons/src/svgs/youtube.tsx +26 -0
- package/src/icons/src/utils.ts +53 -0
- package/src/icons/test-setup.ts +1 -0
- package/src/integrations/appbrew/analytics/app-users.ts +107 -0
- package/src/integrations/appbrew/analytics/config.dev.ts +10 -0
- package/src/integrations/appbrew/analytics/config.ts +10 -0
- package/src/integrations/appbrew/analytics/tracker.ts +136 -0
- package/src/integrations/appbrew/analytics/trackerV2.ts +154 -0
- package/src/integrations/appbrew/analytics/utils.ts +9 -0
- package/src/integrations/appbrew/analytics/webhook-tracker.ts +203 -0
- package/src/integrations/appbrew/currency/index.ts +1 -0
- package/src/integrations/appbrew/currency/provider.ts +211 -0
- package/src/integrations/appbrew/estimated-delivery-date/blocks/estimated-delivery-date.tsx +229 -0
- package/src/integrations/appbrew/estimated-delivery-date/index.ts +2 -0
- package/src/integrations/appbrew/estimated-delivery-date/provider.ts +45 -0
- package/src/integrations/appbrew/native-wishlist/src/index.ts +1 -0
- package/src/integrations/appbrew/native-wishlist/src/provider.ts +88 -0
- package/src/integrations/appbrew/src/index.ts +7 -0
- package/src/integrations/appbrew/src/lib/integrations-appbrew.spec.ts +7 -0
- package/src/integrations/appbrew/src/lib/integrations-appbrew.ts +3 -0
- package/src/integrations/color-swatch/src/index.ts +7 -0
- package/src/integrations/firebase-push/src/index.ts +1 -0
- package/src/integrations/firebase-push/src/push.ts +279 -0
- package/src/integrations/firebase-push/src/push.web.ts +15 -0
- package/src/integrations/gift/src/gift.ts +137 -0
- package/src/integrations/gift/src/index.ts +1 -0
- package/src/integrations/truefit/src/blocks/index.ts +1 -0
- package/src/integrations/truefit/src/blocks/truefit-widget.tsx +136 -0
- package/src/integrations/truefit/src/components/TfApp.tsx +159 -0
- package/src/integrations/truefit/src/components/TfWidget.tsx +241 -0
- package/src/integrations/truefit/src/constants.ts +5 -0
- package/src/integrations/truefit/src/index.ts +13 -0
- package/src/integrations/truefit/src/managers/authManager.ts +140 -0
- package/src/integrations/truefit/src/managers/messageManager.ts +122 -0
- package/src/integrations/truefit/src/managers/tokenManager.ts +52 -0
- package/src/integrations/truefit/src/orderApi.ts +43 -0
- package/src/integrations/truefit/src/register-blocks.ts +5 -0
- package/src/integrations/truefit/src/util/useWidgetEvent.ts +29 -0
- package/src/integrations/truefit/src/util/widgetEvents.ts +17 -0
- package/src/local-storage/src/icon-storage.ts +26 -0
- package/src/local-storage/src/index.ts +2 -0
- package/src/local-storage/src/storage.ts +56 -0
- package/src/local-storage/src/storage.web.ts +75 -0
- package/src/module-provider/src/index.ts +1 -0
- package/src/module-provider/src/module-provider.tsx +27 -0
- package/src/module-provider/src/provider.ts +0 -0
- package/src/okendo/src/blocks/components-v2.tsx +342 -0
- package/src/okendo/src/blocks/components-v2.types.ts +134 -0
- package/src/okendo/src/blocks/components.tsx +569 -0
- package/src/okendo/src/blocks/index.tsx +13 -0
- package/src/okendo/src/blocks/okendo-star-ratings-v2.tsx +102 -0
- package/src/okendo/src/blocks/okendo-star-ratings.tsx +77 -0
- package/src/okendo/src/blocks/review-aggregate-v2.tsx +493 -0
- package/src/okendo/src/blocks/review-aggregate.tsx +175 -0
- package/src/okendo/src/blocks/reviews-v2.tsx +352 -0
- package/src/okendo/src/blocks/reviews.tsx +144 -0
- package/src/okendo/src/hooks.tsx +489 -0
- package/src/okendo/src/index.ts +35 -0
- package/src/okendo/src/provider.ts +457 -0
- package/src/okendo/src/types.ts +355 -0
- package/src/okendo/src/utils.ts +32 -0
- package/src/orders-v4/src/icons/chevron-right-order-v4.tsx +18 -0
- package/src/orders-v4/src/icons/order-status.tsx +17 -0
- package/src/orders-v4/src/icons/payment-method.tsx +18 -0
- package/src/orders-v4/src/icons/payment-status.tsx +17 -0
- package/src/orders-v4/src/index.ts +7 -0
- package/src/orders-v4/src/layout-elements/order-cancel.tsx +60 -0
- package/src/orders-v4/src/layout-elements/order-date.tsx +39 -0
- package/src/orders-v4/src/layout-elements/order-fulfillment-details.tsx +408 -0
- package/src/orders-v4/src/layout-elements/order-number.tsx +35 -0
- package/src/orders-v4/src/layout-elements/order-payment-details-v4.tsx +190 -0
- package/src/orders-v4/src/layout-elements/order-preorder-date.tsx +16 -0
- package/src/orders-v4/src/layout-elements/order-product-compare-at-price.tsx +32 -0
- package/src/orders-v4/src/layout-elements/order-product-fulfillment-status.tsx +105 -0
- package/src/orders-v4/src/layout-elements/order-product-image-overlay.tsx +55 -0
- package/src/orders-v4/src/layout-elements/order-product-image.tsx +29 -0
- package/src/orders-v4/src/layout-elements/order-product-link.tsx +24 -0
- package/src/orders-v4/src/layout-elements/order-product-price.tsx +37 -0
- package/src/orders-v4/src/layout-elements/order-product-quantity.tsx +27 -0
- package/src/orders-v4/src/layout-elements/order-product-title.tsx +22 -0
- package/src/orders-v4/src/layout-elements/order-product-variant.tsx +24 -0
- package/src/orders-v4/src/layout-elements/order-reorder.tsx +97 -0
- package/src/orders-v4/src/layout-elements/order-return-and-exchange-v2.tsx +90 -0
- package/src/orders-v4/src/layout-elements/order-return-and-exchange.tsx +93 -0
- package/src/orders-v4/src/layout-elements/order-status-icon.tsx +14 -0
- package/src/orders-v4/src/layout-elements/order-status.tsx +33 -0
- package/src/orders-v4/src/layout-elements/order-total.tsx +19 -0
- package/src/orders-v4/src/layout-elements/order-track-delivery.tsx +67 -0
- package/src/orders-v4/src/layout-elements/order-view-details.tsx +23 -0
- package/src/orders-v4/src/order-custom-attributes-v4.tsx +210 -0
- package/src/orders-v4/src/order-details-footer-v4.tsx +51 -0
- package/src/orders-v4/src/order-details-fulfillment-list.tsx +32 -0
- package/src/orders-v4/src/order-details-header-v4.tsx +69 -0
- package/src/orders-v4/src/order-footer.ts +75 -0
- package/src/orders-v4/src/order-header.ts +75 -0
- package/src/orders-v4/src/order-products-list.ts +68 -0
- package/src/orders-v4/src/orders-list-v4.tsx +131 -0
- package/src/orders-v4/src/register-icons.ts +12 -0
- package/src/orders-v4/src/register-orders-v4-blocks.ts +15 -0
- package/src/orders-v4/src/registry.tsx +115 -0
- package/src/orders-v4/src/types.ts +122 -0
- package/src/orders-v4/src/utils.ts +75 -0
- package/src/orders-v4/test-setup.ts +1 -0
- package/src/orders-v5/src/cancel-order-reason.tsx +282 -0
- package/src/orders-v5/src/icons/package-cancel.tsx +18 -0
- package/src/orders-v5/src/icons/package-success.tsx +18 -0
- package/src/orders-v5/src/icons/package.tsx +17 -0
- package/src/orders-v5/src/icons/shipping-cancel.tsx +19 -0
- package/src/orders-v5/src/icons/shipping-pending.tsx +19 -0
- package/src/orders-v5/src/icons/shipping-success.tsx +18 -0
- package/src/orders-v5/src/icons/shipping.tsx +32 -0
- package/src/orders-v5/src/image.tsx +39 -0
- package/src/orders-v5/src/index.ts +2 -0
- package/src/orders-v5/src/order-details/fulfillment-list/fulfillment-item.tsx +222 -0
- package/src/orders-v5/src/order-details/fulfillment-list/fulfillment-list.tsx +123 -0
- package/src/orders-v5/src/order-details/fulfillment-list/index.tsx +1 -0
- package/src/orders-v5/src/order-details/fulfillment-list/line-item.tsx +213 -0
- package/src/orders-v5/src/order-details/fulfillment-list/star-ratings.tsx +79 -0
- package/src/orders-v5/src/order-details/fulfillment-list/status-indicator.tsx +208 -0
- package/src/orders-v5/src/order-details/fulfillment-list/status.tsx +113 -0
- package/src/orders-v5/src/order-details/header.tsx +280 -0
- package/src/orders-v5/src/order-details/index.tsx +9 -0
- package/src/orders-v5/src/order-details/order-cancel.tsx +323 -0
- package/src/orders-v5/src/order-details/order-custom-attributes.tsx +237 -0
- package/src/orders-v5/src/order-details/order-return-and-exchange.tsx +196 -0
- package/src/orders-v5/src/order-details/order-return-info-text.tsx +114 -0
- package/src/orders-v5/src/order-details/payment-summary.tsx +295 -0
- package/src/orders-v5/src/order-details/reorder.tsx +142 -0
- package/src/orders-v5/src/order-details/shipping-address.tsx +93 -0
- package/src/orders-v5/src/orders-list/index.ts +1 -0
- package/src/orders-v5/src/orders-list/order-item/fulfillment-item.tsx +138 -0
- package/src/orders-v5/src/orders-list/order-item/heading.tsx +160 -0
- package/src/orders-v5/src/orders-list/order-item/item.tsx +168 -0
- package/src/orders-v5/src/orders-list/orders-list.tsx +159 -0
- package/src/orders-v5/src/register-orders-v5-blocks.ts +29 -0
- package/src/orders-v5/src/register-orders-v5-icons.ts +17 -0
- package/src/orders-v5/src/utils.ts +539 -0
- package/src/pdp-components/src/blocks/common/empty-metafield.tsx +66 -0
- package/src/pdp-components/src/blocks/common/placeholder-block.tsx +134 -0
- package/src/pdp-components/src/blocks/index.ts +2 -0
- package/src/pdp-components/src/blocks/pdp-metafield-image/index.tsx +138 -0
- package/src/pdp-components/src/blocks/pdp-metafield-rich-text/index.tsx +190 -0
- package/src/pdp-components/src/index.ts +7 -0
- package/src/plp-components/src/blocks/plp-banner/index.tsx +213 -0
- package/src/plp-components/src/blocks/plp-description/index.tsx +86 -0
- package/src/plp-components/src/blocks/plp-html-text.tsx +172 -0
- package/src/plp-components/src/blocks/plp-image-carousel.tsx +203 -0
- package/src/plp-components/src/blocks/plp-shopify-rich-text/index.tsx +169 -0
- package/src/plp-components/src/blocks/plp-sub-category-navigation/index.tsx +336 -0
- package/src/plp-components/src/blocks/plp-text-sub-category/index.tsx +297 -0
- package/src/plp-components/src/blocks/plp-video/index.tsx +140 -0
- package/src/plp-components/src/blocks/plp-youtube-video.tsx +113 -0
- package/src/plp-components/src/common/empty-metafield.tsx +66 -0
- package/src/plp-components/src/common/placeholder-block.tsx +134 -0
- package/src/plp-components/src/index.ts +21 -0
- package/src/plp-components/test-setup.ts +1 -0
- package/src/post-purchase/hooks.ts +24 -0
- package/src/post-purchase/src/basic-order-item.tsx +143 -0
- package/src/post-purchase/src/cancel-order-reason.tsx +160 -0
- package/src/post-purchase/src/cancel-order.tsx +75 -0
- package/src/post-purchase/src/date.tsx +33 -0
- package/src/post-purchase/src/fulfillment-list.tsx +477 -0
- package/src/post-purchase/src/hooks.ts +1 -0
- package/src/post-purchase/src/index.ts +13 -0
- package/src/post-purchase/src/order-details-header.tsx +64 -0
- package/src/post-purchase/src/order-item.tsx +217 -0
- package/src/post-purchase/src/order-list.tsx +62 -0
- package/src/post-purchase/src/payment-details.tsx +116 -0
- package/src/post-purchase/src/register.ts +17 -0
- package/src/post-purchase/src/shipping-address.tsx +68 -0
- package/src/post-purchase/src/style.ts +30 -0
- package/src/post-purchase/src/types.ts +66 -0
- package/src/post-purchase/src/utils.ts +95 -0
- package/src/post-purchase/test-setup.ts +1 -0
- package/src/react-native-element-dropdown/src/assets/close.png +0 -0
- package/src/react-native-element-dropdown/src/assets/down.png +0 -0
- package/src/react-native-element-dropdown/src/components/Dropdown/index.tsx +686 -0
- package/src/react-native-element-dropdown/src/components/Dropdown/model.ts +73 -0
- package/src/react-native-element-dropdown/src/components/Dropdown/styles.ts +67 -0
- package/src/react-native-element-dropdown/src/components/MultiSelect/index.tsx +812 -0
- package/src/react-native-element-dropdown/src/components/MultiSelect/model.ts +76 -0
- package/src/react-native-element-dropdown/src/components/MultiSelect/styles.ts +103 -0
- package/src/react-native-element-dropdown/src/components/SelectCountry/index.tsx +77 -0
- package/src/react-native-element-dropdown/src/components/SelectCountry/model.ts +7 -0
- package/src/react-native-element-dropdown/src/components/SelectCountry/styles.ts +28 -0
- package/src/react-native-element-dropdown/src/components/TextInput/index.tsx +104 -0
- package/src/react-native-element-dropdown/src/components/TextInput/model.ts +20 -0
- package/src/react-native-element-dropdown/src/components/TextInput/styles.ts +31 -0
- package/src/react-native-element-dropdown/src/index.ts +15 -0
- package/src/react-native-element-dropdown/src/toolkits/index.ts +25 -0
- package/src/react-native-element-dropdown/src/toolkits/model.ts +5 -0
- package/src/react-native-element-dropdown/src/useDeviceOrientation.ts +37 -0
- package/src/react-utils/src/hooks.ts +176 -0
- package/src/react-utils/src/index.ts +1 -0
- package/src/rn-rulepilot/src/index.ts +4 -0
- package/src/rn-rulepilot/src/services/builder.ts +92 -0
- package/src/rn-rulepilot/src/services/evaluator.ts +176 -0
- package/src/rn-rulepilot/src/services/logger.ts +6 -0
- package/src/rn-rulepilot/src/services/mutator.ts +203 -0
- package/src/rn-rulepilot/src/services/object-discovery.ts +52 -0
- package/src/rn-rulepilot/src/services/rule-pilot.ts +172 -0
- package/src/rn-rulepilot/src/services/validator.ts +206 -0
- package/src/rn-rulepilot/src/types/error.ts +14 -0
- package/src/rn-rulepilot/src/types/rule.ts +35 -0
- package/src/rn-rulepilot/test-setup.ts +1 -0
- package/src/shopify/src/cache.ts +134 -0
- package/src/shopify/src/cart-utils.ts +295 -0
- package/src/shopify/src/checkout-utils.ts +124 -0
- package/src/shopify/src/discountv2-transformer.ts +322 -0
- package/src/shopify/src/filter.ts +287 -0
- package/src/shopify/src/index.ts +16 -0
- package/src/shopify/src/lineItemsv2-transformer.ts +225 -0
- package/src/shopify/src/orders.ts +521 -0
- package/src/shopify/src/queries/cart.ts +320 -0
- package/src/shopify/src/queries/catlog-fields.ts +187 -0
- package/src/shopify/src/queries/index.ts +1 -0
- package/src/shopify/src/queries/orders.ts +368 -0
- package/src/shopify/src/queries/query-generators.ts +737 -0
- package/src/shopify/src/queries.ts +474 -0
- package/src/shopify/src/shopify-auth.ts +410 -0
- package/src/shopify/src/shopify-cart.ts +1298 -0
- package/src/shopify/src/shopify-catlog-generic.ts +1168 -0
- package/src/shopify/src/shopify-checkout.ts +385 -0
- package/src/shopify/src/shopify-currency.ts +185 -0
- package/src/shopify/src/shopify-customer-cart.ts +1246 -0
- package/src/shopify/src/shopify-search-v2.ts +1234 -0
- package/src/shopify/src/shopify-search.ts +184 -0
- package/src/shopify/src/transformers.ts +715 -0
- package/src/shopify/src/utils.ts +300 -0
- package/src/shopify-types/src/generated-types/checkout/graphql-operations.ts +8767 -0
- package/src/shopify-types/src/generated-types/customer-accounts/operations.ts +5969 -0
- package/src/shopify-types/src/generated-types/graphql-operations.ts +9559 -0
- package/src/shopify-types/src/index.ts +59 -0
- package/src/shopify-types/src/schema/customerAccountsSchema.json +28093 -0
- package/src/shopify-types/src/types.ts +59 -0
- package/src/shopify-types/test-setup.ts +1 -0
- package/src/state/src/index.ts +22 -0
- package/src/state/src/lib/address.ts +248 -0
- package/src/state/src/lib/analytics/actions/app.ts +30 -0
- package/src/state/src/lib/analytics/actions/cart-wishlist.ts +192 -0
- package/src/state/src/lib/analytics/actions/device.ts +28 -0
- package/src/state/src/lib/analytics/actions/geo.ts +58 -0
- package/src/state/src/lib/analytics/actions/index.ts +9 -0
- package/src/state/src/lib/analytics/actions/order.ts +20 -0
- package/src/state/src/lib/analytics/actions/product-collection.ts +119 -0
- package/src/state/src/lib/analytics/actions/session.ts +74 -0
- package/src/state/src/lib/analytics/actions/user.ts +55 -0
- package/src/state/src/lib/analytics/actions/utm-params.ts +68 -0
- package/src/state/src/lib/analytics/index.ts +147 -0
- package/src/state/src/lib/analytics/utils.ts +173 -0
- package/src/state/src/lib/autofill-client.ts +42 -0
- package/src/state/src/lib/bundle.ts +228 -0
- package/src/state/src/lib/bundleV2.ts +110 -0
- package/src/state/src/lib/cart.ts +1779 -0
- package/src/state/src/lib/checkout.ts +26 -0
- package/src/state/src/lib/collection-metafields.ts +118 -0
- package/src/state/src/lib/collections.ts +636 -0
- package/src/state/src/lib/config.ts +437 -0
- package/src/state/src/lib/constants.ts +30 -0
- package/src/state/src/lib/device.ts +90 -0
- package/src/state/src/lib/discounts.ts +435 -0
- package/src/state/src/lib/estimated-delivery-date.ts +73 -0
- package/src/state/src/lib/filter.ts +343 -0
- package/src/state/src/lib/gift-wrap.ts +184 -0
- package/src/state/src/lib/google-signin.ts +3 -0
- package/src/state/src/lib/google-signin.web.ts +1 -0
- package/src/state/src/lib/hooks/block.ts +136 -0
- package/src/state/src/lib/hooks/cart.ts +233 -0
- package/src/state/src/lib/hooks/common.ts +34 -0
- package/src/state/src/lib/hooks/constants.ts +4 -0
- package/src/state/src/lib/hooks/deeplink.ts +190 -0
- package/src/state/src/lib/hooks/deeplink.web.ts +4 -0
- package/src/state/src/lib/hooks/estimated-delivery-date.ts +5 -0
- package/src/state/src/lib/hooks/filter.ts +37 -0
- package/src/state/src/lib/hooks/hooks.ts +843 -0
- package/src/state/src/lib/hooks/index.ts +29 -0
- package/src/state/src/lib/hooks/localization.ts +213 -0
- package/src/state/src/lib/hooks/metafield.ts +301 -0
- package/src/state/src/lib/hooks/modal.ts +68 -0
- package/src/state/src/lib/hooks/module.ts +31 -0
- package/src/state/src/lib/hooks/order.ts +23 -0
- package/src/state/src/lib/hooks/product.ts +202 -0
- package/src/state/src/lib/hooks/quantity-restriction.ts +51 -0
- package/src/state/src/lib/hooks/reviews.ts +27 -0
- package/src/state/src/lib/hooks/rewards.ts +69 -0
- package/src/state/src/lib/hooks/route.ts +90 -0
- package/src/state/src/lib/hooks/screen.ts +83 -0
- package/src/state/src/lib/hooks/search.ts +209 -0
- package/src/state/src/lib/hooks/settings.ts +20 -0
- package/src/state/src/lib/hooks/shipping-address.ts +5 -0
- package/src/state/src/lib/hooks/shop.ts +5 -0
- package/src/state/src/lib/hooks/shopify-query.ts +40 -0
- package/src/state/src/lib/hooks/sizing.ts +13 -0
- package/src/state/src/lib/hooks/title.ts +61 -0
- package/src/state/src/lib/hooks/variant-selector.ts +493 -0
- package/src/state/src/lib/hooks/video.ts +81 -0
- package/src/state/src/lib/http-client/index.ts +132 -0
- package/src/state/src/lib/integrations/analytics.ts +14 -0
- package/src/state/src/lib/integrations/gift.ts +102 -0
- package/src/state/src/lib/integrations/review.ts +212 -0
- package/src/state/src/lib/kiwi-sizing.ts +62 -0
- package/src/state/src/lib/localization.ts +524 -0
- package/src/state/src/lib/localization.web.ts +154 -0
- package/src/state/src/lib/metafield.ts +305 -0
- package/src/state/src/lib/modal.ts +177 -0
- package/src/state/src/lib/modules.ts +149 -0
- package/src/state/src/lib/offers.ts +0 -0
- package/src/state/src/lib/onboarding.ts +67 -0
- package/src/state/src/lib/order.ts +229 -0
- package/src/state/src/lib/orders.ts +199 -0
- package/src/state/src/lib/products.ts +1072 -0
- package/src/state/src/lib/promotions.ts +73 -0
- package/src/state/src/lib/reward-program.ts +86 -0
- package/src/state/src/lib/rewards.ts +106 -0
- package/src/state/src/lib/route.ts +586 -0
- package/src/state/src/lib/route.web.ts +52 -0
- package/src/state/src/lib/screen.ts +106 -0
- package/src/state/src/lib/search.ts +576 -0
- package/src/state/src/lib/shop.ts +74 -0
- package/src/state/src/lib/sizing-chart.ts +88 -0
- package/src/state/src/lib/splash-platform.ts +59 -0
- package/src/state/src/lib/splash-platform.web.ts +62 -0
- package/src/state/src/lib/splash.ts +497 -0
- package/src/state/src/lib/store.ts +138 -0
- package/src/state/src/lib/subscriptions.ts +589 -0
- package/src/state/src/lib/template.ts +42 -0
- package/src/state/src/lib/types.ts +11 -0
- package/src/state/src/lib/user-notifications.ts +153 -0
- package/src/state/src/lib/user.ts +1721 -0
- package/src/state/src/lib/utils.ts +586 -0
- package/src/state/src/lib/wishlist.ts +290 -0
- package/src/types/src/app-discounts.ts +118 -0
- package/src/types/src/app-themes.ts +7 -0
- package/src/types/src/blocks-definition/account.def.ts +535 -0
- package/src/types/src/blocks-definition/announcement-carousel.def.ts +201 -0
- package/src/types/src/blocks-definition/announcement-strip.def.ts +162 -0
- package/src/types/src/blocks-definition/announcement-ticker.def.ts +290 -0
- package/src/types/src/blocks-definition/app-bar.def.ts +323 -0
- package/src/types/src/blocks-definition/apply-coupon.def.ts +363 -0
- package/src/types/src/blocks-definition/cart-list.def.ts +445 -0
- package/src/types/src/blocks-definition/change-password.def.ts +229 -0
- package/src/types/src/blocks-definition/chips-navigation.def.ts +405 -0
- package/src/types/src/blocks-definition/collection-list.def.ts +415 -0
- package/src/types/src/blocks-definition/common.def.ts +793 -0
- package/src/types/src/blocks-definition/content.def.ts +2051 -0
- package/src/types/src/blocks-definition/countdown-banner.def.ts +537 -0
- package/src/types/src/blocks-definition/empty-block.def.ts +212 -0
- package/src/types/src/blocks-definition/firework.def.ts +128 -0
- package/src/types/src/blocks-definition/image-banner.def.ts +634 -0
- package/src/types/src/blocks-definition/image-collage.def.ts +505 -0
- package/src/types/src/blocks-definition/image-compare.def.ts +412 -0
- package/src/types/src/blocks-definition/image-list.def.ts +654 -0
- package/src/types/src/blocks-definition/image-marquee.def.ts +526 -0
- package/src/types/src/blocks-definition/index.ts +50 -0
- package/src/types/src/blocks-definition/metafield-image-compare.def.ts +394 -0
- package/src/types/src/blocks-definition/micro-contexts/product-card-v2.ts +2481 -0
- package/src/types/src/blocks-definition/past-searches.def.ts +352 -0
- package/src/types/src/blocks-definition/payment-details.def.ts +303 -0
- package/src/types/src/blocks-definition/previously-ordered-products.def.ts +421 -0
- package/src/types/src/blocks-definition/product-card.def.ts +416 -0
- package/src/types/src/blocks-definition/product-grid.def.ts +657 -0
- package/src/types/src/blocks-definition/product-hotspot.def.ts +401 -0
- package/src/types/src/blocks-definition/product-list.def.ts +944 -0
- package/src/types/src/blocks-definition/promo-carousel.def.ts +645 -0
- package/src/types/src/blocks-definition/recent-orders.def.ts +596 -0
- package/src/types/src/blocks-definition/recently-viewed-products.def.ts +412 -0
- package/src/types/src/blocks-definition/rewards-summary.def.ts +627 -0
- package/src/types/src/blocks-definition/rich-text-block.def.ts +303 -0
- package/src/types/src/blocks-definition/search-suggestions.def.ts +228 -0
- package/src/types/src/blocks-definition/sign-in.def.ts +555 -0
- package/src/types/src/blocks-definition/single-level-navigation.def.ts +303 -0
- package/src/types/src/blocks-definition/social-sign-in.def.ts +164 -0
- package/src/types/src/blocks-definition/sort-and-filter.def.ts +881 -0
- package/src/types/src/blocks-definition/tabbed-product-collection.def.ts +665 -0
- package/src/types/src/blocks-definition/text-list.def.ts +280 -0
- package/src/types/src/blocks-definition/two-level-navigation.def.ts +527 -0
- package/src/types/src/blocks-definition/types.ts +33 -0
- package/src/types/src/blocks-definition/video-banner.def.ts +483 -0
- package/src/types/src/blocks-definition/video-carousel.def.ts +611 -0
- package/src/types/src/blocks-definition/video-list.def.ts +280 -0
- package/src/types/src/blocks-definition/view-coupons.def.ts +382 -0
- package/src/types/src/blocks-definition/wishlisted-items.def.ts +530 -0
- package/src/types/src/blocks-definition/youtube-embed.def.ts +154 -0
- package/src/types/src/blocks.ts +3981 -0
- package/src/types/src/category-navigation.ts +16 -0
- package/src/types/src/common.ts +187 -0
- package/src/types/src/config.ts +705 -0
- package/src/types/src/countries.ts +2970 -0
- package/src/types/src/currencies.ts +1217 -0
- package/src/types/src/data.ts +257 -0
- package/src/types/src/feature-flags.ts +59 -0
- package/src/types/src/filter.ts +102 -0
- package/src/types/src/index.ts +35 -0
- package/src/types/src/integrations/analytics.ts +252 -0
- package/src/types/src/integrations/attentive.ts +88 -0
- package/src/types/src/integrations/automated-notifications.ts +87 -0
- package/src/types/src/integrations/cart.ts +81 -0
- package/src/types/src/integrations/edd.ts +35 -0
- package/src/types/src/integrations/gift.ts +130 -0
- package/src/types/src/integrations/index.ts +14 -0
- package/src/types/src/integrations/loyalty-lion.ts +8 -0
- package/src/types/src/integrations/otp-signin.ts +112 -0
- package/src/types/src/integrations/review.ts +50 -0
- package/src/types/src/integrations/rewards-v2.ts +5 -0
- package/src/types/src/integrations/social-signin.ts +12 -0
- package/src/types/src/integrations/subscriptions.ts +175 -0
- package/src/types/src/integrations/wishlist.ts +86 -0
- package/src/types/src/integrations/yotpo-rewards.ts +37 -0
- package/src/types/src/internationalization.ts +170 -0
- package/src/types/src/metafield.ts +5 -0
- package/src/types/src/modules.ts +566 -0
- package/src/types/src/navigation.ts +22 -0
- package/src/types/src/one-link.ts +20 -0
- package/src/types/src/order.ts +102 -0
- package/src/types/src/permissions.ts +9 -0
- package/src/types/src/product-update.ts +32 -0
- package/src/types/src/product.ts +268 -0
- package/src/types/src/push-notifications.ts +11 -0
- package/src/types/src/quantity-selector.ts +5 -0
- package/src/types/src/screen.ts +5 -0
- package/src/types/src/search.ts +137 -0
- package/src/types/src/searchtap.ts +97 -0
- package/src/types/src/settings.ts +54 -0
- package/src/types/src/shop.ts +13 -0
- package/src/types/src/storage.ts +31 -0
- package/src/types/src/style.ts +221 -0
- package/src/types/src/theme.ts +54 -0
- package/src/types/src/utils.ts +153 -0
- package/src/types/src/variant-selector.ts +218 -0
- package/src/ui-builder/src/components/atoms/accordian.tsx +110 -0
- package/src/ui-builder/src/components/atoms/block-section/block-section.tsx +128 -0
- package/src/ui-builder/src/components/atoms/block-section/hook.ts +251 -0
- package/src/ui-builder/src/components/atoms/block-section/index.ts +3 -0
- package/src/ui-builder/src/components/atoms/block-section/nav-button.tsx +101 -0
- package/src/ui-builder/src/components/atoms/block-section/section.tsx +76 -0
- package/src/ui-builder/src/components/atoms/block-section/types.ts +22 -0
- package/src/ui-builder/src/components/atoms/box.tsx +77 -0
- package/src/ui-builder/src/components/atoms/box.web.tsx +68 -0
- package/src/ui-builder/src/components/atoms/button.tsx +260 -0
- package/src/ui-builder/src/components/atoms/flex.tsx +44 -0
- package/src/ui-builder/src/components/atoms/header/header-image.tsx +142 -0
- package/src/ui-builder/src/components/atoms/header/header-link-button.tsx +57 -0
- package/src/ui-builder/src/components/atoms/header/header-text.tsx +49 -0
- package/src/ui-builder/src/components/atoms/header/header.tsx +179 -0
- package/src/ui-builder/src/components/atoms/header/index.ts +2 -0
- package/src/ui-builder/src/components/atoms/header/types.ts +63 -0
- package/src/ui-builder/src/components/atoms/header/utils.ts +28 -0
- package/src/ui-builder/src/components/atoms/helper/button-utils.ts +13 -0
- package/src/ui-builder/src/components/atoms/helper/button-utils.web.ts +8 -0
- package/src/ui-builder/src/components/atoms/html-rich-text.tsx +47 -0
- package/src/ui-builder/src/components/atoms/icon.tsx +12 -0
- package/src/ui-builder/src/components/atoms/image/image1.tsx +359 -0
- package/src/ui-builder/src/components/atoms/image/image1.web.tsx +276 -0
- package/src/ui-builder/src/components/atoms/image/types.ts +12 -0
- package/src/ui-builder/src/components/atoms/image.tsx +33 -0
- package/src/ui-builder/src/components/atoms/index.tsx +17 -0
- package/src/ui-builder/src/components/atoms/link.tsx +34 -0
- package/src/ui-builder/src/components/atoms/list.tsx +24 -0
- package/src/ui-builder/src/components/atoms/native-video.tsx +102 -0
- package/src/ui-builder/src/components/atoms/native-video.web.tsx +44 -0
- package/src/ui-builder/src/components/atoms/rich-text.tsx +147 -0
- package/src/ui-builder/src/components/atoms/spacer.tsx +11 -0
- package/src/ui-builder/src/components/atoms/text.tsx +60 -0
- package/src/ui-builder/src/components/atoms/vertical-list.tsx +177 -0
- package/src/ui-builder/src/components/atoms/youtube-video.tsx +99 -0
- package/src/ui-builder/src/components/blocks/content.tsx +32 -0
- package/src/ui-builder/src/components/index.ts +3 -0
- package/src/ui-builder/src/components/layout-elements/accordion.tsx +27 -0
- package/src/ui-builder/src/components/layout-elements/app-logo.tsx +39 -0
- package/src/ui-builder/src/components/layout-elements/html-rich-text.tsx +16 -0
- package/src/ui-builder/src/components/layout-elements/image.tsx +118 -0
- package/src/ui-builder/src/components/layout-elements/image.web.tsx +62 -0
- package/src/ui-builder/src/components/layout-elements/index.ts +12 -0
- package/src/ui-builder/src/components/layout-elements/link-button.tsx +37 -0
- package/src/ui-builder/src/components/layout-elements/link.tsx +35 -0
- package/src/ui-builder/src/components/layout-elements/list.tsx +16 -0
- package/src/ui-builder/src/components/layout-elements/rich-text.tsx +29 -0
- package/src/ui-builder/src/components/layout-elements/spacer.tsx +10 -0
- package/src/ui-builder/src/components/layout-elements/text.tsx +29 -0
- package/src/ui-builder/src/components/layout-elements/video.tsx +59 -0
- package/src/ui-builder/src/components/molecules/accordion.tsx +120 -0
- package/src/ui-builder/src/components/molecules/rich-text.tsx +132 -0
- package/src/ui-builder/src/components/molecules/rich-text.web.tsx +82 -0
- package/src/ui-builder/src/components/registery.tsx +404 -0
- package/src/ui-builder/src/helper-elements/cta.tsx +79 -0
- package/src/ui-builder/src/helper-elements/faq.tsx +143 -0
- package/src/ui-builder/src/helper-elements/html-rich-text.tsx +59 -0
- package/src/ui-builder/src/helper-elements/index.tsx +76 -0
- package/src/ui-builder/src/helper-elements/link-button.tsx +74 -0
- package/src/ui-builder/src/helper-elements/media-list-accordian.tsx +230 -0
- package/src/ui-builder/src/helper-elements/media-list.tsx +154 -0
- package/src/ui-builder/src/helper-elements/media.tsx +78 -0
- package/src/ui-builder/src/helper-elements/rich-text-accordion.tsx +148 -0
- package/src/ui-builder/src/helper-elements/rich-text-list.tsx +134 -0
- package/src/ui-builder/src/helper-elements/rich-text.tsx +61 -0
- package/src/ui-builder/src/helper-elements/testimonials.tsx +149 -0
- package/src/ui-builder/src/helper-elements/text.tsx +52 -0
- package/src/ui-builder/src/helper-elements/video-list.tsx +137 -0
- package/src/ui-builder/src/helper-elements/video.tsx +44 -0
- package/src/ui-builder/src/helper-elements/youtube-video.tsx +69 -0
- package/src/ui-builder/src/index.ts +42 -0
- package/src/ui-builder/src/style-utils.ts +127 -0
- package/src/ui-builder/src/types.ts +67 -0
- package/src/ui-builder/src/utils.ts +89 -0
- package/src/utils/src/cache.utils.ts +64 -0
- package/src/utils/src/common.utils.ts +47 -0
- package/src/utils/src/http-client.ts +258 -0
- package/src/utils/src/index.ts +5 -0
- package/src/utils/src/slack-client.ts +8 -0
- package/src/utils/src/telemetry-client.ts +69 -0
- package/src/utils.ts +30 -0
- package/tsconfig.paths.json +130 -0
|
@@ -0,0 +1,2970 @@
|
|
|
1
|
+
import { CombinedError } from 'urql'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* All supported Country codes in shopify ( isoCode )
|
|
5
|
+
*/
|
|
6
|
+
export enum CountryCode {
|
|
7
|
+
/** Ascension Island. */
|
|
8
|
+
Ac = 'AC',
|
|
9
|
+
/** Andorra. */
|
|
10
|
+
Ad = 'AD',
|
|
11
|
+
/** United Arab Emirates. */
|
|
12
|
+
Ae = 'AE',
|
|
13
|
+
/** Afghanistan. */
|
|
14
|
+
Af = 'AF',
|
|
15
|
+
/** Antigua & Barbuda. */
|
|
16
|
+
Ag = 'AG',
|
|
17
|
+
/** Anguilla. */
|
|
18
|
+
Ai = 'AI',
|
|
19
|
+
/** Albania. */
|
|
20
|
+
Al = 'AL',
|
|
21
|
+
/** Armenia. */
|
|
22
|
+
Am = 'AM',
|
|
23
|
+
/** Netherlands Antilles. */
|
|
24
|
+
An = 'AN',
|
|
25
|
+
/** Angola. */
|
|
26
|
+
Ao = 'AO',
|
|
27
|
+
/** Argentina. */
|
|
28
|
+
Ar = 'AR',
|
|
29
|
+
/** Austria. */
|
|
30
|
+
At = 'AT',
|
|
31
|
+
/** Australia. */
|
|
32
|
+
Au = 'AU',
|
|
33
|
+
/** Aruba. */
|
|
34
|
+
Aw = 'AW',
|
|
35
|
+
/** Åland Islands. */
|
|
36
|
+
Ax = 'AX',
|
|
37
|
+
/** Azerbaijan. */
|
|
38
|
+
Az = 'AZ',
|
|
39
|
+
/** Bosnia & Herzegovina. */
|
|
40
|
+
Ba = 'BA',
|
|
41
|
+
/** Barbados. */
|
|
42
|
+
Bb = 'BB',
|
|
43
|
+
/** Bangladesh. */
|
|
44
|
+
Bd = 'BD',
|
|
45
|
+
/** Belgium. */
|
|
46
|
+
Be = 'BE',
|
|
47
|
+
/** Burkina Faso. */
|
|
48
|
+
Bf = 'BF',
|
|
49
|
+
/** Bulgaria. */
|
|
50
|
+
Bg = 'BG',
|
|
51
|
+
/** Bahrain. */
|
|
52
|
+
Bh = 'BH',
|
|
53
|
+
/** Burundi. */
|
|
54
|
+
Bi = 'BI',
|
|
55
|
+
/** Benin. */
|
|
56
|
+
Bj = 'BJ',
|
|
57
|
+
/** St. Barthélemy. */
|
|
58
|
+
Bl = 'BL',
|
|
59
|
+
/** Bermuda. */
|
|
60
|
+
Bm = 'BM',
|
|
61
|
+
/** Brunei. */
|
|
62
|
+
Bn = 'BN',
|
|
63
|
+
/** Bolivia. */
|
|
64
|
+
Bo = 'BO',
|
|
65
|
+
/** Caribbean Netherlands. */
|
|
66
|
+
Bq = 'BQ',
|
|
67
|
+
/** Brazil. */
|
|
68
|
+
Br = 'BR',
|
|
69
|
+
/** Bahamas. */
|
|
70
|
+
Bs = 'BS',
|
|
71
|
+
/** Bhutan. */
|
|
72
|
+
Bt = 'BT',
|
|
73
|
+
/** Bouvet Island. */
|
|
74
|
+
Bv = 'BV',
|
|
75
|
+
/** Botswana. */
|
|
76
|
+
Bw = 'BW',
|
|
77
|
+
/** Belarus. */
|
|
78
|
+
By = 'BY',
|
|
79
|
+
/** Belize. */
|
|
80
|
+
Bz = 'BZ',
|
|
81
|
+
/** Canada. */
|
|
82
|
+
Ca = 'CA',
|
|
83
|
+
/** Cocos (Keeling) Islands. */
|
|
84
|
+
Cc = 'CC',
|
|
85
|
+
/** Congo - Kinshasa. */
|
|
86
|
+
Cd = 'CD',
|
|
87
|
+
/** Central African Republic. */
|
|
88
|
+
Cf = 'CF',
|
|
89
|
+
/** Congo - Brazzaville. */
|
|
90
|
+
Cg = 'CG',
|
|
91
|
+
/** Switzerland. */
|
|
92
|
+
Ch = 'CH',
|
|
93
|
+
/** Côte d’Ivoire. */
|
|
94
|
+
Ci = 'CI',
|
|
95
|
+
/** Cook Islands. */
|
|
96
|
+
Ck = 'CK',
|
|
97
|
+
/** Chile. */
|
|
98
|
+
Cl = 'CL',
|
|
99
|
+
/** Cameroon. */
|
|
100
|
+
Cm = 'CM',
|
|
101
|
+
/** China. */
|
|
102
|
+
Cn = 'CN',
|
|
103
|
+
/** Colombia. */
|
|
104
|
+
Co = 'CO',
|
|
105
|
+
/** Costa Rica. */
|
|
106
|
+
Cr = 'CR',
|
|
107
|
+
/** Cuba. */
|
|
108
|
+
Cu = 'CU',
|
|
109
|
+
/** Cape Verde. */
|
|
110
|
+
Cv = 'CV',
|
|
111
|
+
/** Curaçao. */
|
|
112
|
+
Cw = 'CW',
|
|
113
|
+
/** Christmas Island. */
|
|
114
|
+
Cx = 'CX',
|
|
115
|
+
/** Cyprus. */
|
|
116
|
+
Cy = 'CY',
|
|
117
|
+
/** Czechia. */
|
|
118
|
+
Cz = 'CZ',
|
|
119
|
+
/** Germany. */
|
|
120
|
+
De = 'DE',
|
|
121
|
+
/** Djibouti. */
|
|
122
|
+
Dj = 'DJ',
|
|
123
|
+
/** Denmark. */
|
|
124
|
+
Dk = 'DK',
|
|
125
|
+
/** Dominica. */
|
|
126
|
+
Dm = 'DM',
|
|
127
|
+
/** Dominican Republic. */
|
|
128
|
+
Do = 'DO',
|
|
129
|
+
/** Algeria. */
|
|
130
|
+
Dz = 'DZ',
|
|
131
|
+
/** Ecuador. */
|
|
132
|
+
Ec = 'EC',
|
|
133
|
+
/** Estonia. */
|
|
134
|
+
Ee = 'EE',
|
|
135
|
+
/** Egypt. */
|
|
136
|
+
Eg = 'EG',
|
|
137
|
+
/** Western Sahara. */
|
|
138
|
+
Eh = 'EH',
|
|
139
|
+
/** Eritrea. */
|
|
140
|
+
Er = 'ER',
|
|
141
|
+
/** Spain. */
|
|
142
|
+
Es = 'ES',
|
|
143
|
+
/** Ethiopia. */
|
|
144
|
+
Et = 'ET',
|
|
145
|
+
/** Finland. */
|
|
146
|
+
Fi = 'FI',
|
|
147
|
+
/** Fiji. */
|
|
148
|
+
Fj = 'FJ',
|
|
149
|
+
/** Falkland Islands. */
|
|
150
|
+
Fk = 'FK',
|
|
151
|
+
/** Faroe Islands. */
|
|
152
|
+
Fo = 'FO',
|
|
153
|
+
/** France. */
|
|
154
|
+
Fr = 'FR',
|
|
155
|
+
/** Gabon. */
|
|
156
|
+
Ga = 'GA',
|
|
157
|
+
/** United Kingdom. */
|
|
158
|
+
Gb = 'GB',
|
|
159
|
+
/** Grenada. */
|
|
160
|
+
Gd = 'GD',
|
|
161
|
+
/** Georgia. */
|
|
162
|
+
Ge = 'GE',
|
|
163
|
+
/** French Guiana. */
|
|
164
|
+
Gf = 'GF',
|
|
165
|
+
/** Guernsey. */
|
|
166
|
+
Gg = 'GG',
|
|
167
|
+
/** Ghana. */
|
|
168
|
+
Gh = 'GH',
|
|
169
|
+
/** Gibraltar. */
|
|
170
|
+
Gi = 'GI',
|
|
171
|
+
/** Greenland. */
|
|
172
|
+
Gl = 'GL',
|
|
173
|
+
/** Gambia. */
|
|
174
|
+
Gm = 'GM',
|
|
175
|
+
/** Guinea. */
|
|
176
|
+
Gn = 'GN',
|
|
177
|
+
/** Guadeloupe. */
|
|
178
|
+
Gp = 'GP',
|
|
179
|
+
/** Equatorial Guinea. */
|
|
180
|
+
Gq = 'GQ',
|
|
181
|
+
/** Greece. */
|
|
182
|
+
Gr = 'GR',
|
|
183
|
+
/** South Georgia & South Sandwich Islands. */
|
|
184
|
+
Gs = 'GS',
|
|
185
|
+
/** Guatemala. */
|
|
186
|
+
Gt = 'GT',
|
|
187
|
+
/** Guinea-Bissau. */
|
|
188
|
+
Gw = 'GW',
|
|
189
|
+
/** Guyana. */
|
|
190
|
+
Gy = 'GY',
|
|
191
|
+
/** Hong Kong SAR. */
|
|
192
|
+
Hk = 'HK',
|
|
193
|
+
/** Heard & McDonald Islands. */
|
|
194
|
+
Hm = 'HM',
|
|
195
|
+
/** Honduras. */
|
|
196
|
+
Hn = 'HN',
|
|
197
|
+
/** Croatia. */
|
|
198
|
+
Hr = 'HR',
|
|
199
|
+
/** Haiti. */
|
|
200
|
+
Ht = 'HT',
|
|
201
|
+
/** Hungary. */
|
|
202
|
+
Hu = 'HU',
|
|
203
|
+
/** Indonesia. */
|
|
204
|
+
Id = 'ID',
|
|
205
|
+
/** Ireland. */
|
|
206
|
+
Ie = 'IE',
|
|
207
|
+
/** Israel. */
|
|
208
|
+
Il = 'IL',
|
|
209
|
+
/** Isle of Man. */
|
|
210
|
+
Im = 'IM',
|
|
211
|
+
/** India. */
|
|
212
|
+
In = 'IN',
|
|
213
|
+
/** British Indian Ocean Territory. */
|
|
214
|
+
Io = 'IO',
|
|
215
|
+
/** Iraq. */
|
|
216
|
+
Iq = 'IQ',
|
|
217
|
+
/** Iran. */
|
|
218
|
+
Ir = 'IR',
|
|
219
|
+
/** Iceland. */
|
|
220
|
+
Is = 'IS',
|
|
221
|
+
/** Italy. */
|
|
222
|
+
It = 'IT',
|
|
223
|
+
/** Jersey. */
|
|
224
|
+
Je = 'JE',
|
|
225
|
+
/** Jamaica. */
|
|
226
|
+
Jm = 'JM',
|
|
227
|
+
/** Jordan. */
|
|
228
|
+
Jo = 'JO',
|
|
229
|
+
/** Japan. */
|
|
230
|
+
Jp = 'JP',
|
|
231
|
+
/** Kenya. */
|
|
232
|
+
Ke = 'KE',
|
|
233
|
+
/** Kyrgyzstan. */
|
|
234
|
+
Kg = 'KG',
|
|
235
|
+
/** Cambodia. */
|
|
236
|
+
Kh = 'KH',
|
|
237
|
+
/** Kiribati. */
|
|
238
|
+
Ki = 'KI',
|
|
239
|
+
/** Comoros. */
|
|
240
|
+
Km = 'KM',
|
|
241
|
+
/** St. Kitts & Nevis. */
|
|
242
|
+
Kn = 'KN',
|
|
243
|
+
/** North Korea. */
|
|
244
|
+
Kp = 'KP',
|
|
245
|
+
/** South Korea. */
|
|
246
|
+
Kr = 'KR',
|
|
247
|
+
/** Kuwait. */
|
|
248
|
+
Kw = 'KW',
|
|
249
|
+
/** Cayman Islands. */
|
|
250
|
+
Ky = 'KY',
|
|
251
|
+
/** Kazakhstan. */
|
|
252
|
+
Kz = 'KZ',
|
|
253
|
+
/** Laos. */
|
|
254
|
+
La = 'LA',
|
|
255
|
+
/** Lebanon. */
|
|
256
|
+
Lb = 'LB',
|
|
257
|
+
/** St. Lucia. */
|
|
258
|
+
Lc = 'LC',
|
|
259
|
+
/** Liechtenstein. */
|
|
260
|
+
Li = 'LI',
|
|
261
|
+
/** Sri Lanka. */
|
|
262
|
+
Lk = 'LK',
|
|
263
|
+
/** Liberia. */
|
|
264
|
+
Lr = 'LR',
|
|
265
|
+
/** Lesotho. */
|
|
266
|
+
Ls = 'LS',
|
|
267
|
+
/** Lithuania. */
|
|
268
|
+
Lt = 'LT',
|
|
269
|
+
/** Luxembourg. */
|
|
270
|
+
Lu = 'LU',
|
|
271
|
+
/** Latvia. */
|
|
272
|
+
Lv = 'LV',
|
|
273
|
+
/** Libya. */
|
|
274
|
+
Ly = 'LY',
|
|
275
|
+
/** Morocco. */
|
|
276
|
+
Ma = 'MA',
|
|
277
|
+
/** Monaco. */
|
|
278
|
+
Mc = 'MC',
|
|
279
|
+
/** Moldova. */
|
|
280
|
+
Md = 'MD',
|
|
281
|
+
/** Montenegro. */
|
|
282
|
+
Me = 'ME',
|
|
283
|
+
/** St. Martin. */
|
|
284
|
+
Mf = 'MF',
|
|
285
|
+
/** Madagascar. */
|
|
286
|
+
Mg = 'MG',
|
|
287
|
+
/** North Macedonia. */
|
|
288
|
+
Mk = 'MK',
|
|
289
|
+
/** Mali. */
|
|
290
|
+
Ml = 'ML',
|
|
291
|
+
/** Myanmar (Burma). */
|
|
292
|
+
Mm = 'MM',
|
|
293
|
+
/** Mongolia. */
|
|
294
|
+
Mn = 'MN',
|
|
295
|
+
/** Macao SAR. */
|
|
296
|
+
Mo = 'MO',
|
|
297
|
+
/** Martinique. */
|
|
298
|
+
Mq = 'MQ',
|
|
299
|
+
/** Mauritania. */
|
|
300
|
+
Mr = 'MR',
|
|
301
|
+
/** Montserrat. */
|
|
302
|
+
Ms = 'MS',
|
|
303
|
+
/** Malta. */
|
|
304
|
+
Mt = 'MT',
|
|
305
|
+
/** Mauritius. */
|
|
306
|
+
Mu = 'MU',
|
|
307
|
+
/** Maldives. */
|
|
308
|
+
Mv = 'MV',
|
|
309
|
+
/** Malawi. */
|
|
310
|
+
Mw = 'MW',
|
|
311
|
+
/** Mexico. */
|
|
312
|
+
Mx = 'MX',
|
|
313
|
+
/** Malaysia. */
|
|
314
|
+
My = 'MY',
|
|
315
|
+
/** Mozambique. */
|
|
316
|
+
Mz = 'MZ',
|
|
317
|
+
/** Namibia. */
|
|
318
|
+
Na = 'NA',
|
|
319
|
+
/** New Caledonia. */
|
|
320
|
+
Nc = 'NC',
|
|
321
|
+
/** Niger. */
|
|
322
|
+
Ne = 'NE',
|
|
323
|
+
/** Norfolk Island. */
|
|
324
|
+
Nf = 'NF',
|
|
325
|
+
/** Nigeria. */
|
|
326
|
+
Ng = 'NG',
|
|
327
|
+
/** Nicaragua. */
|
|
328
|
+
Ni = 'NI',
|
|
329
|
+
/** Netherlands. */
|
|
330
|
+
Nl = 'NL',
|
|
331
|
+
/** Norway. */
|
|
332
|
+
No = 'NO',
|
|
333
|
+
/** Nepal. */
|
|
334
|
+
Np = 'NP',
|
|
335
|
+
/** Nauru. */
|
|
336
|
+
Nr = 'NR',
|
|
337
|
+
/** Niue. */
|
|
338
|
+
Nu = 'NU',
|
|
339
|
+
/** New Zealand. */
|
|
340
|
+
Nz = 'NZ',
|
|
341
|
+
/** Oman. */
|
|
342
|
+
Om = 'OM',
|
|
343
|
+
/** Panama. */
|
|
344
|
+
Pa = 'PA',
|
|
345
|
+
/** Peru. */
|
|
346
|
+
Pe = 'PE',
|
|
347
|
+
/** French Polynesia. */
|
|
348
|
+
Pf = 'PF',
|
|
349
|
+
/** Papua New Guinea. */
|
|
350
|
+
Pg = 'PG',
|
|
351
|
+
/** Philippines. */
|
|
352
|
+
Ph = 'PH',
|
|
353
|
+
/** Pakistan. */
|
|
354
|
+
Pk = 'PK',
|
|
355
|
+
/** Poland. */
|
|
356
|
+
Pl = 'PL',
|
|
357
|
+
/** St. Pierre & Miquelon. */
|
|
358
|
+
Pm = 'PM',
|
|
359
|
+
/** Pitcairn Islands. */
|
|
360
|
+
Pn = 'PN',
|
|
361
|
+
/** Palestinian Territories. */
|
|
362
|
+
Ps = 'PS',
|
|
363
|
+
/** Portugal. */
|
|
364
|
+
Pt = 'PT',
|
|
365
|
+
/** Paraguay. */
|
|
366
|
+
Py = 'PY',
|
|
367
|
+
/** Qatar. */
|
|
368
|
+
Qa = 'QA',
|
|
369
|
+
/** Réunion. */
|
|
370
|
+
Re = 'RE',
|
|
371
|
+
/** Romania. */
|
|
372
|
+
Ro = 'RO',
|
|
373
|
+
/** Serbia. */
|
|
374
|
+
Rs = 'RS',
|
|
375
|
+
/** Russia. */
|
|
376
|
+
Ru = 'RU',
|
|
377
|
+
/** Rwanda. */
|
|
378
|
+
Rw = 'RW',
|
|
379
|
+
/** Saudi Arabia. */
|
|
380
|
+
Sa = 'SA',
|
|
381
|
+
/** Solomon Islands. */
|
|
382
|
+
Sb = 'SB',
|
|
383
|
+
/** Seychelles. */
|
|
384
|
+
Sc = 'SC',
|
|
385
|
+
/** Sudan. */
|
|
386
|
+
Sd = 'SD',
|
|
387
|
+
/** Sweden. */
|
|
388
|
+
Se = 'SE',
|
|
389
|
+
/** Singapore. */
|
|
390
|
+
Sg = 'SG',
|
|
391
|
+
/** St. Helena. */
|
|
392
|
+
Sh = 'SH',
|
|
393
|
+
/** Slovenia. */
|
|
394
|
+
Si = 'SI',
|
|
395
|
+
/** Svalbard & Jan Mayen. */
|
|
396
|
+
Sj = 'SJ',
|
|
397
|
+
/** Slovakia. */
|
|
398
|
+
Sk = 'SK',
|
|
399
|
+
/** Sierra Leone. */
|
|
400
|
+
Sl = 'SL',
|
|
401
|
+
/** San Marino. */
|
|
402
|
+
Sm = 'SM',
|
|
403
|
+
/** Senegal. */
|
|
404
|
+
Sn = 'SN',
|
|
405
|
+
/** Somalia. */
|
|
406
|
+
So = 'SO',
|
|
407
|
+
/** Suriname. */
|
|
408
|
+
Sr = 'SR',
|
|
409
|
+
/** South Sudan. */
|
|
410
|
+
Ss = 'SS',
|
|
411
|
+
/** São Tomé & Príncipe. */
|
|
412
|
+
St = 'ST',
|
|
413
|
+
/** El Salvador. */
|
|
414
|
+
Sv = 'SV',
|
|
415
|
+
/** Sint Maarten. */
|
|
416
|
+
Sx = 'SX',
|
|
417
|
+
/** Syria. */
|
|
418
|
+
Sy = 'SY',
|
|
419
|
+
/** Eswatini. */
|
|
420
|
+
Sz = 'SZ',
|
|
421
|
+
/** Tristan da Cunha. */
|
|
422
|
+
Ta = 'TA',
|
|
423
|
+
/** Turks & Caicos Islands. */
|
|
424
|
+
Tc = 'TC',
|
|
425
|
+
/** Chad. */
|
|
426
|
+
Td = 'TD',
|
|
427
|
+
/** French Southern Territories. */
|
|
428
|
+
Tf = 'TF',
|
|
429
|
+
/** Togo. */
|
|
430
|
+
Tg = 'TG',
|
|
431
|
+
/** Thailand. */
|
|
432
|
+
Th = 'TH',
|
|
433
|
+
/** Tajikistan. */
|
|
434
|
+
Tj = 'TJ',
|
|
435
|
+
/** Tokelau. */
|
|
436
|
+
Tk = 'TK',
|
|
437
|
+
/** Timor-Leste. */
|
|
438
|
+
Tl = 'TL',
|
|
439
|
+
/** Turkmenistan. */
|
|
440
|
+
Tm = 'TM',
|
|
441
|
+
/** Tunisia. */
|
|
442
|
+
Tn = 'TN',
|
|
443
|
+
/** Tonga. */
|
|
444
|
+
To = 'TO',
|
|
445
|
+
/** Turkey. */
|
|
446
|
+
Tr = 'TR',
|
|
447
|
+
/** Trinidad & Tobago. */
|
|
448
|
+
Tt = 'TT',
|
|
449
|
+
/** Tuvalu. */
|
|
450
|
+
Tv = 'TV',
|
|
451
|
+
/** Taiwan. */
|
|
452
|
+
Tw = 'TW',
|
|
453
|
+
/** Tanzania. */
|
|
454
|
+
Tz = 'TZ',
|
|
455
|
+
/** Ukraine. */
|
|
456
|
+
Ua = 'UA',
|
|
457
|
+
/** Uganda. */
|
|
458
|
+
Ug = 'UG',
|
|
459
|
+
/** U.S. Outlying Islands. */
|
|
460
|
+
Um = 'UM',
|
|
461
|
+
/** United States. */
|
|
462
|
+
Us = 'US',
|
|
463
|
+
/** Uruguay. */
|
|
464
|
+
Uy = 'UY',
|
|
465
|
+
/** Uzbekistan. */
|
|
466
|
+
Uz = 'UZ',
|
|
467
|
+
/** Vatican City. */
|
|
468
|
+
Va = 'VA',
|
|
469
|
+
/** St. Vincent & Grenadines. */
|
|
470
|
+
Vc = 'VC',
|
|
471
|
+
/** Venezuela. */
|
|
472
|
+
Ve = 'VE',
|
|
473
|
+
/** British Virgin Islands. */
|
|
474
|
+
Vg = 'VG',
|
|
475
|
+
/** Vietnam. */
|
|
476
|
+
Vn = 'VN',
|
|
477
|
+
/** Vanuatu. */
|
|
478
|
+
Vu = 'VU',
|
|
479
|
+
/** Wallis & Futuna. */
|
|
480
|
+
Wf = 'WF',
|
|
481
|
+
/** Samoa. */
|
|
482
|
+
Ws = 'WS',
|
|
483
|
+
/** Kosovo. */
|
|
484
|
+
Xk = 'XK',
|
|
485
|
+
/** Yemen. */
|
|
486
|
+
Ye = 'YE',
|
|
487
|
+
/** Mayotte. */
|
|
488
|
+
Yt = 'YT',
|
|
489
|
+
/** South Africa. */
|
|
490
|
+
Za = 'ZA',
|
|
491
|
+
/** Zambia. */
|
|
492
|
+
Zm = 'ZM',
|
|
493
|
+
/** Zimbabwe. */
|
|
494
|
+
Zw = 'ZW',
|
|
495
|
+
/** Unknown Region. */
|
|
496
|
+
Zz = 'ZZ',
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* All supported Currency codes in shopify ( isoCode )
|
|
501
|
+
*/
|
|
502
|
+
export enum CurrencyCode {
|
|
503
|
+
/** United Arab Emirates Dirham (AED). */
|
|
504
|
+
Aed = 'AED',
|
|
505
|
+
/** Afghan Afghani (AFN). */
|
|
506
|
+
Afn = 'AFN',
|
|
507
|
+
/** Albanian Lek (ALL). */
|
|
508
|
+
All = 'ALL',
|
|
509
|
+
/** Armenian Dram (AMD). */
|
|
510
|
+
Amd = 'AMD',
|
|
511
|
+
/** Netherlands Antillean Guilder. */
|
|
512
|
+
Ang = 'ANG',
|
|
513
|
+
/** Angolan Kwanza (AOA). */
|
|
514
|
+
Aoa = 'AOA',
|
|
515
|
+
/** Argentine Pesos (ARS). */
|
|
516
|
+
Ars = 'ARS',
|
|
517
|
+
/** Australian Dollars (AUD). */
|
|
518
|
+
Aud = 'AUD',
|
|
519
|
+
/** Aruban Florin (AWG). */
|
|
520
|
+
Awg = 'AWG',
|
|
521
|
+
/** Azerbaijani Manat (AZN). */
|
|
522
|
+
Azn = 'AZN',
|
|
523
|
+
/** Bosnia and Herzegovina Convertible Mark (BAM). */
|
|
524
|
+
Bam = 'BAM',
|
|
525
|
+
/** Barbadian Dollar (BBD). */
|
|
526
|
+
Bbd = 'BBD',
|
|
527
|
+
/** Bangladesh Taka (BDT). */
|
|
528
|
+
Bdt = 'BDT',
|
|
529
|
+
/** Bulgarian Lev (BGN). */
|
|
530
|
+
Bgn = 'BGN',
|
|
531
|
+
/** Bahraini Dinar (BHD). */
|
|
532
|
+
Bhd = 'BHD',
|
|
533
|
+
/** Burundian Franc (BIF). */
|
|
534
|
+
Bif = 'BIF',
|
|
535
|
+
/** Bermudian Dollar (BMD). */
|
|
536
|
+
Bmd = 'BMD',
|
|
537
|
+
/** Brunei Dollar (BND). */
|
|
538
|
+
Bnd = 'BND',
|
|
539
|
+
/** Bolivian Boliviano (BOB). */
|
|
540
|
+
Bob = 'BOB',
|
|
541
|
+
/** Brazilian Real (BRL). */
|
|
542
|
+
Brl = 'BRL',
|
|
543
|
+
/** Bahamian Dollar (BSD). */
|
|
544
|
+
Bsd = 'BSD',
|
|
545
|
+
/** Bhutanese Ngultrum (BTN). */
|
|
546
|
+
Btn = 'BTN',
|
|
547
|
+
/** Botswana Pula (BWP). */
|
|
548
|
+
Bwp = 'BWP',
|
|
549
|
+
/** Belarusian Ruble (BYN). */
|
|
550
|
+
Byn = 'BYN',
|
|
551
|
+
/**
|
|
552
|
+
* Belarusian Ruble (BYR).
|
|
553
|
+
* @deprecated `BYR` is deprecated. Use `BYN` available from version `2021-01` onwards instead.
|
|
554
|
+
*/
|
|
555
|
+
Byr = 'BYR',
|
|
556
|
+
/** Belize Dollar (BZD). */
|
|
557
|
+
Bzd = 'BZD',
|
|
558
|
+
/** Canadian Dollars (CAD). */
|
|
559
|
+
Cad = 'CAD',
|
|
560
|
+
/** Congolese franc (CDF). */
|
|
561
|
+
Cdf = 'CDF',
|
|
562
|
+
/** Swiss Francs (CHF). */
|
|
563
|
+
Chf = 'CHF',
|
|
564
|
+
/** Chilean Peso (CLP). */
|
|
565
|
+
Clp = 'CLP',
|
|
566
|
+
/** Chinese Yuan Renminbi (CNY). */
|
|
567
|
+
Cny = 'CNY',
|
|
568
|
+
/** Colombian Peso (COP). */
|
|
569
|
+
Cop = 'COP',
|
|
570
|
+
/** Costa Rican Colones (CRC). */
|
|
571
|
+
Crc = 'CRC',
|
|
572
|
+
/** Cape Verdean escudo (CVE). */
|
|
573
|
+
Cve = 'CVE',
|
|
574
|
+
/** Czech Koruny (CZK). */
|
|
575
|
+
Czk = 'CZK',
|
|
576
|
+
/** Djiboutian Franc (DJF). */
|
|
577
|
+
Djf = 'DJF',
|
|
578
|
+
/** Danish Kroner (DKK). */
|
|
579
|
+
Dkk = 'DKK',
|
|
580
|
+
/** Dominican Peso (DOP). */
|
|
581
|
+
Dop = 'DOP',
|
|
582
|
+
/** Algerian Dinar (DZD). */
|
|
583
|
+
Dzd = 'DZD',
|
|
584
|
+
/** Egyptian Pound (EGP). */
|
|
585
|
+
Egp = 'EGP',
|
|
586
|
+
/** Eritrean Nakfa (ERN). */
|
|
587
|
+
Ern = 'ERN',
|
|
588
|
+
/** Ethiopian Birr (ETB). */
|
|
589
|
+
Etb = 'ETB',
|
|
590
|
+
/** Euro (EUR). */
|
|
591
|
+
Eur = 'EUR',
|
|
592
|
+
/** Fijian Dollars (FJD). */
|
|
593
|
+
Fjd = 'FJD',
|
|
594
|
+
/** Falkland Islands Pounds (FKP). */
|
|
595
|
+
Fkp = 'FKP',
|
|
596
|
+
/** United Kingdom Pounds (GBP). */
|
|
597
|
+
Gbp = 'GBP',
|
|
598
|
+
/** Georgian Lari (GEL). */
|
|
599
|
+
Gel = 'GEL',
|
|
600
|
+
/** Ghanaian Cedi (GHS). */
|
|
601
|
+
Ghs = 'GHS',
|
|
602
|
+
/** Gibraltar Pounds (GIP). */
|
|
603
|
+
Gip = 'GIP',
|
|
604
|
+
/** Gambian Dalasi (GMD). */
|
|
605
|
+
Gmd = 'GMD',
|
|
606
|
+
/** Guinean Franc (GNF). */
|
|
607
|
+
Gnf = 'GNF',
|
|
608
|
+
/** Guatemalan Quetzal (GTQ). */
|
|
609
|
+
Gtq = 'GTQ',
|
|
610
|
+
/** Guyanese Dollar (GYD). */
|
|
611
|
+
Gyd = 'GYD',
|
|
612
|
+
/** Hong Kong Dollars (HKD). */
|
|
613
|
+
Hkd = 'HKD',
|
|
614
|
+
/** Honduran Lempira (HNL). */
|
|
615
|
+
Hnl = 'HNL',
|
|
616
|
+
/** Croatian Kuna (HRK). */
|
|
617
|
+
Hrk = 'HRK',
|
|
618
|
+
/** Haitian Gourde (HTG). */
|
|
619
|
+
Htg = 'HTG',
|
|
620
|
+
/** Hungarian Forint (HUF). */
|
|
621
|
+
Huf = 'HUF',
|
|
622
|
+
/** Indonesian Rupiah (IDR). */
|
|
623
|
+
Idr = 'IDR',
|
|
624
|
+
/** Israeli New Shekel (NIS). */
|
|
625
|
+
Ils = 'ILS',
|
|
626
|
+
/** Indian Rupees (INR). */
|
|
627
|
+
Inr = 'INR',
|
|
628
|
+
/** Iraqi Dinar (IQD). */
|
|
629
|
+
Iqd = 'IQD',
|
|
630
|
+
/** Iranian Rial (IRR). */
|
|
631
|
+
Irr = 'IRR',
|
|
632
|
+
/** Icelandic Kronur (ISK). */
|
|
633
|
+
Isk = 'ISK',
|
|
634
|
+
/** Jersey Pound. */
|
|
635
|
+
Jep = 'JEP',
|
|
636
|
+
/** Jamaican Dollars (JMD). */
|
|
637
|
+
Jmd = 'JMD',
|
|
638
|
+
/** Jordanian Dinar (JOD). */
|
|
639
|
+
Jod = 'JOD',
|
|
640
|
+
/** Japanese Yen (JPY). */
|
|
641
|
+
Jpy = 'JPY',
|
|
642
|
+
/** Kenyan Shilling (KES). */
|
|
643
|
+
Kes = 'KES',
|
|
644
|
+
/** Kyrgyzstani Som (KGS). */
|
|
645
|
+
Kgs = 'KGS',
|
|
646
|
+
/** Cambodian Riel. */
|
|
647
|
+
Khr = 'KHR',
|
|
648
|
+
/** Kiribati Dollar (KID). */
|
|
649
|
+
Kid = 'KID',
|
|
650
|
+
/** Comorian Franc (KMF). */
|
|
651
|
+
Kmf = 'KMF',
|
|
652
|
+
/** South Korean Won (KRW). */
|
|
653
|
+
Krw = 'KRW',
|
|
654
|
+
/** Kuwaiti Dinar (KWD). */
|
|
655
|
+
Kwd = 'KWD',
|
|
656
|
+
/** Cayman Dollars (KYD). */
|
|
657
|
+
Kyd = 'KYD',
|
|
658
|
+
/** Kazakhstani Tenge (KZT). */
|
|
659
|
+
Kzt = 'KZT',
|
|
660
|
+
/** Laotian Kip (LAK). */
|
|
661
|
+
Lak = 'LAK',
|
|
662
|
+
/** Lebanese Pounds (LBP). */
|
|
663
|
+
Lbp = 'LBP',
|
|
664
|
+
/** Sri Lankan Rupees (LKR). */
|
|
665
|
+
Lkr = 'LKR',
|
|
666
|
+
/** Liberian Dollar (LRD). */
|
|
667
|
+
Lrd = 'LRD',
|
|
668
|
+
/** Lesotho Loti (LSL). */
|
|
669
|
+
Lsl = 'LSL',
|
|
670
|
+
/** Lithuanian Litai (LTL). */
|
|
671
|
+
Ltl = 'LTL',
|
|
672
|
+
/** Latvian Lati (LVL). */
|
|
673
|
+
Lvl = 'LVL',
|
|
674
|
+
/** Libyan Dinar (LYD). */
|
|
675
|
+
Lyd = 'LYD',
|
|
676
|
+
/** Moroccan Dirham. */
|
|
677
|
+
Mad = 'MAD',
|
|
678
|
+
/** Moldovan Leu (MDL). */
|
|
679
|
+
Mdl = 'MDL',
|
|
680
|
+
/** Malagasy Ariary (MGA). */
|
|
681
|
+
Mga = 'MGA',
|
|
682
|
+
/** Macedonia Denar (MKD). */
|
|
683
|
+
Mkd = 'MKD',
|
|
684
|
+
/** Burmese Kyat (MMK). */
|
|
685
|
+
Mmk = 'MMK',
|
|
686
|
+
/** Mongolian Tugrik. */
|
|
687
|
+
Mnt = 'MNT',
|
|
688
|
+
/** Macanese Pataca (MOP). */
|
|
689
|
+
Mop = 'MOP',
|
|
690
|
+
/** Mauritanian Ouguiya (MRU). */
|
|
691
|
+
Mru = 'MRU',
|
|
692
|
+
/** Mauritian Rupee (MUR). */
|
|
693
|
+
Mur = 'MUR',
|
|
694
|
+
/** Maldivian Rufiyaa (MVR). */
|
|
695
|
+
Mvr = 'MVR',
|
|
696
|
+
/** Malawian Kwacha (MWK). */
|
|
697
|
+
Mwk = 'MWK',
|
|
698
|
+
/** Mexican Pesos (MXN). */
|
|
699
|
+
Mxn = 'MXN',
|
|
700
|
+
/** Malaysian Ringgits (MYR). */
|
|
701
|
+
Myr = 'MYR',
|
|
702
|
+
/** Mozambican Metical. */
|
|
703
|
+
Mzn = 'MZN',
|
|
704
|
+
/** Namibian Dollar. */
|
|
705
|
+
Nad = 'NAD',
|
|
706
|
+
/** Nigerian Naira (NGN). */
|
|
707
|
+
Ngn = 'NGN',
|
|
708
|
+
/** Nicaraguan Córdoba (NIO). */
|
|
709
|
+
Nio = 'NIO',
|
|
710
|
+
/** Norwegian Kroner (NOK). */
|
|
711
|
+
Nok = 'NOK',
|
|
712
|
+
/** Nepalese Rupee (NPR). */
|
|
713
|
+
Npr = 'NPR',
|
|
714
|
+
/** New Zealand Dollars (NZD). */
|
|
715
|
+
Nzd = 'NZD',
|
|
716
|
+
/** Omani Rial (OMR). */
|
|
717
|
+
Omr = 'OMR',
|
|
718
|
+
/** Panamian Balboa (PAB). */
|
|
719
|
+
Pab = 'PAB',
|
|
720
|
+
/** Peruvian Nuevo Sol (PEN). */
|
|
721
|
+
Pen = 'PEN',
|
|
722
|
+
/** Papua New Guinean Kina (PGK). */
|
|
723
|
+
Pgk = 'PGK',
|
|
724
|
+
/** Philippine Peso (PHP). */
|
|
725
|
+
Php = 'PHP',
|
|
726
|
+
/** Pakistani Rupee (PKR). */
|
|
727
|
+
Pkr = 'PKR',
|
|
728
|
+
/** Polish Zlotych (PLN). */
|
|
729
|
+
Pln = 'PLN',
|
|
730
|
+
/** Paraguayan Guarani (PYG). */
|
|
731
|
+
Pyg = 'PYG',
|
|
732
|
+
/** Qatari Rial (QAR). */
|
|
733
|
+
Qar = 'QAR',
|
|
734
|
+
/** Romanian Lei (RON). */
|
|
735
|
+
Ron = 'RON',
|
|
736
|
+
/** Serbian dinar (RSD). */
|
|
737
|
+
Rsd = 'RSD',
|
|
738
|
+
/** Russian Rubles (RUB). */
|
|
739
|
+
Rub = 'RUB',
|
|
740
|
+
/** Rwandan Franc (RWF). */
|
|
741
|
+
Rwf = 'RWF',
|
|
742
|
+
/** Saudi Riyal (SAR). */
|
|
743
|
+
Sar = 'SAR',
|
|
744
|
+
/** Solomon Islands Dollar (SBD). */
|
|
745
|
+
Sbd = 'SBD',
|
|
746
|
+
/** Seychellois Rupee (SCR). */
|
|
747
|
+
Scr = 'SCR',
|
|
748
|
+
/** Sudanese Pound (SDG). */
|
|
749
|
+
Sdg = 'SDG',
|
|
750
|
+
/** Swedish Kronor (SEK). */
|
|
751
|
+
Sek = 'SEK',
|
|
752
|
+
/** Singapore Dollars (SGD). */
|
|
753
|
+
Sgd = 'SGD',
|
|
754
|
+
/** Saint Helena Pounds (SHP). */
|
|
755
|
+
Shp = 'SHP',
|
|
756
|
+
/** Sierra Leonean Leone (SLL). */
|
|
757
|
+
Sll = 'SLL',
|
|
758
|
+
/** Somali Shilling (SOS). */
|
|
759
|
+
Sos = 'SOS',
|
|
760
|
+
/** Surinamese Dollar (SRD). */
|
|
761
|
+
Srd = 'SRD',
|
|
762
|
+
/** South Sudanese Pound (SSP). */
|
|
763
|
+
Ssp = 'SSP',
|
|
764
|
+
/**
|
|
765
|
+
* Sao Tome And Principe Dobra (STD).
|
|
766
|
+
* @deprecated `STD` is deprecated. Use `STN` available from version `2022-07` onwards instead.
|
|
767
|
+
*/
|
|
768
|
+
Std = 'STD',
|
|
769
|
+
/** Sao Tome And Principe Dobra (STN). */
|
|
770
|
+
Stn = 'STN',
|
|
771
|
+
/** Syrian Pound (SYP). */
|
|
772
|
+
Syp = 'SYP',
|
|
773
|
+
/** Swazi Lilangeni (SZL). */
|
|
774
|
+
Szl = 'SZL',
|
|
775
|
+
/** Thai baht (THB). */
|
|
776
|
+
Thb = 'THB',
|
|
777
|
+
/** Tajikistani Somoni (TJS). */
|
|
778
|
+
Tjs = 'TJS',
|
|
779
|
+
/** Turkmenistani Manat (TMT). */
|
|
780
|
+
Tmt = 'TMT',
|
|
781
|
+
/** Tunisian Dinar (TND). */
|
|
782
|
+
Tnd = 'TND',
|
|
783
|
+
/** Tongan Pa'anga (TOP). */
|
|
784
|
+
Top = 'TOP',
|
|
785
|
+
/** Turkish Lira (TRY). */
|
|
786
|
+
Try = 'TRY',
|
|
787
|
+
/** Trinidad and Tobago Dollars (TTD). */
|
|
788
|
+
Ttd = 'TTD',
|
|
789
|
+
/** Taiwan Dollars (TWD). */
|
|
790
|
+
Twd = 'TWD',
|
|
791
|
+
/** Tanzanian Shilling (TZS). */
|
|
792
|
+
Tzs = 'TZS',
|
|
793
|
+
/** Ukrainian Hryvnia (UAH). */
|
|
794
|
+
Uah = 'UAH',
|
|
795
|
+
/** Ugandan Shilling (UGX). */
|
|
796
|
+
Ugx = 'UGX',
|
|
797
|
+
/** United States Dollars (USD). */
|
|
798
|
+
Usd = 'USD',
|
|
799
|
+
/** Uruguayan Pesos (UYU). */
|
|
800
|
+
Uyu = 'UYU',
|
|
801
|
+
/** Uzbekistan som (UZS). */
|
|
802
|
+
Uzs = 'UZS',
|
|
803
|
+
/** Venezuelan Bolivares (VED). */
|
|
804
|
+
Ved = 'VED',
|
|
805
|
+
/**
|
|
806
|
+
* Venezuelan Bolivares (VEF).
|
|
807
|
+
* @deprecated `VEF` is deprecated. Use `VES` available from version `2020-10` onwards instead.
|
|
808
|
+
*/
|
|
809
|
+
Vef = 'VEF',
|
|
810
|
+
/** Venezuelan Bolivares (VES). */
|
|
811
|
+
Ves = 'VES',
|
|
812
|
+
/** Vietnamese đồng (VND). */
|
|
813
|
+
Vnd = 'VND',
|
|
814
|
+
/** Vanuatu Vatu (VUV). */
|
|
815
|
+
Vuv = 'VUV',
|
|
816
|
+
/** Samoan Tala (WST). */
|
|
817
|
+
Wst = 'WST',
|
|
818
|
+
/** Central African CFA Franc (XAF). */
|
|
819
|
+
Xaf = 'XAF',
|
|
820
|
+
/** East Caribbean Dollar (XCD). */
|
|
821
|
+
Xcd = 'XCD',
|
|
822
|
+
/** West African CFA franc (XOF). */
|
|
823
|
+
Xof = 'XOF',
|
|
824
|
+
/** CFP Franc (XPF). */
|
|
825
|
+
Xpf = 'XPF',
|
|
826
|
+
/** Unrecognized currency. */
|
|
827
|
+
Xxx = 'XXX',
|
|
828
|
+
/** Yemeni Rial (YER). */
|
|
829
|
+
Yer = 'YER',
|
|
830
|
+
/** South African Rand (ZAR). */
|
|
831
|
+
Zar = 'ZAR',
|
|
832
|
+
/** Zambian Kwacha (ZMW). */
|
|
833
|
+
Zmw = 'ZMW',
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
export interface Currency {
|
|
837
|
+
isoCode: CurrencyCode
|
|
838
|
+
name: string
|
|
839
|
+
symbol: string
|
|
840
|
+
}
|
|
841
|
+
export interface Country {
|
|
842
|
+
isoCode: CountryCode
|
|
843
|
+
name: string
|
|
844
|
+
unitSystem?: string
|
|
845
|
+
currency: Currency
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
export interface GetAvailableCountrySuccessResponse {
|
|
849
|
+
status: 'success'
|
|
850
|
+
data: { availableCountries: Country[]; selectedCountry: Country }
|
|
851
|
+
error: null
|
|
852
|
+
}
|
|
853
|
+
export interface GetAvailableCountryErrorResponse {
|
|
854
|
+
status: 'error'
|
|
855
|
+
data: null
|
|
856
|
+
error: CombinedError
|
|
857
|
+
}
|
|
858
|
+
export const CountryToCountryCode = {
|
|
859
|
+
'Ascension Island': 'AC',
|
|
860
|
+
Andorra: 'AD',
|
|
861
|
+
'United Arab Emirates': 'AE',
|
|
862
|
+
Afghanistan: 'AF',
|
|
863
|
+
'Antigua & Barbuda': 'AG',
|
|
864
|
+
Anguilla: 'AI',
|
|
865
|
+
Albania: 'AL',
|
|
866
|
+
Armenia: 'AM',
|
|
867
|
+
Angola: 'AO',
|
|
868
|
+
Antarctica: 'AQ',
|
|
869
|
+
Argentina: 'AR',
|
|
870
|
+
'American Samoa': 'AS',
|
|
871
|
+
Austria: 'AT',
|
|
872
|
+
Australia: 'AU',
|
|
873
|
+
Aruba: 'AW',
|
|
874
|
+
'Åland Islands': 'AX',
|
|
875
|
+
Azerbaijan: 'AZ',
|
|
876
|
+
'Azores Islands':'AZR',
|
|
877
|
+
'Bosnia & Herzegovina': 'BA',
|
|
878
|
+
Barbados: 'BB',
|
|
879
|
+
Bangladesh: 'BD',
|
|
880
|
+
Belgium: 'BE',
|
|
881
|
+
'Burkina Faso': 'BF',
|
|
882
|
+
Bulgaria: 'BG',
|
|
883
|
+
Bahrain: 'BH',
|
|
884
|
+
Burundi: 'BI',
|
|
885
|
+
Benin: 'BJ',
|
|
886
|
+
'St. Barthélemy': 'BL',
|
|
887
|
+
Bermuda: 'BM',
|
|
888
|
+
Brunei: 'BN',
|
|
889
|
+
Bolivia: 'BO',
|
|
890
|
+
'Caribbean Netherlands': 'BQ',
|
|
891
|
+
Brazil: 'BR',
|
|
892
|
+
Bahamas: 'BS',
|
|
893
|
+
Bhutan: 'BT',
|
|
894
|
+
'Bouvet Island': 'BV',
|
|
895
|
+
Botswana: 'BW',
|
|
896
|
+
Belarus: 'BY',
|
|
897
|
+
Belize: 'BZ',
|
|
898
|
+
Canada: 'CA',
|
|
899
|
+
Congo:'CD',
|
|
900
|
+
'Cocos (Keeling) Islands': 'CC',
|
|
901
|
+
'Congo - Kinshasa': 'CD',
|
|
902
|
+
'Central African Republic': 'CF',
|
|
903
|
+
'Congo - Brazzaville': 'CG',
|
|
904
|
+
Switzerland: 'CH',
|
|
905
|
+
'Côte d’Ivoire': 'CI',
|
|
906
|
+
'Cook Islands': 'CK',
|
|
907
|
+
Chile: 'CL',
|
|
908
|
+
Cameroon: 'CM',
|
|
909
|
+
China: 'CN',
|
|
910
|
+
Colombia: 'CO',
|
|
911
|
+
'Clipperton Island': 'CP',
|
|
912
|
+
'Costa Rica': 'CR',
|
|
913
|
+
Cuba: 'CU',
|
|
914
|
+
'Cape Verde': 'CV',
|
|
915
|
+
Curaçao: 'CW',
|
|
916
|
+
'Christmas Island': 'CX',
|
|
917
|
+
Cyprus: 'CY',
|
|
918
|
+
Czechia: 'CZ',
|
|
919
|
+
'Czech Republic': 'CZR',
|
|
920
|
+
Germany: 'DE',
|
|
921
|
+
'Diego Garcia': 'DG',
|
|
922
|
+
Djibouti: 'DJ',
|
|
923
|
+
Denmark: 'DK',
|
|
924
|
+
Dominica: 'DM',
|
|
925
|
+
'Democratic Republic of the Congo': 'CD',
|
|
926
|
+
'Dominican Republic': 'DO',
|
|
927
|
+
'Dubai':'AE',
|
|
928
|
+
Algeria: 'DZ',
|
|
929
|
+
'Ceuta & Melilla': 'EA',
|
|
930
|
+
Ecuador: 'EC',
|
|
931
|
+
Estonia: 'EE',
|
|
932
|
+
Egypt: 'EG',
|
|
933
|
+
'Western Sahara': 'EH',
|
|
934
|
+
Eritrea: 'ER',
|
|
935
|
+
Spain: 'ES',
|
|
936
|
+
Ethiopia: 'ET',
|
|
937
|
+
'European Union': 'EU',
|
|
938
|
+
Finland: 'FI',
|
|
939
|
+
Fiji: 'FJ',
|
|
940
|
+
'Falkland Islands': 'FK',
|
|
941
|
+
Micronesia: 'FM',
|
|
942
|
+
'Faroe Islands': 'FO',
|
|
943
|
+
France: 'FR',
|
|
944
|
+
Gabon: 'GA',
|
|
945
|
+
'United Kingdom': 'GB',
|
|
946
|
+
Grenada: 'GD',
|
|
947
|
+
Georgia: 'GE',
|
|
948
|
+
'French Guiana': 'GF',
|
|
949
|
+
Guernsey: 'GG',
|
|
950
|
+
Ghana: 'GH',
|
|
951
|
+
Gibraltar: 'GI',
|
|
952
|
+
Greenland: 'GL',
|
|
953
|
+
Gambia: 'GM',
|
|
954
|
+
Guinea: 'GN',
|
|
955
|
+
Guadeloupe: 'GP',
|
|
956
|
+
'Equatorial Guinea': 'GQ',
|
|
957
|
+
Greece: 'GR',
|
|
958
|
+
'South Georgia & South Sandwich Islands': 'GS',
|
|
959
|
+
Guatemala: 'GT',
|
|
960
|
+
Guam: 'GU',
|
|
961
|
+
'Guinea-Bissau': 'GW',
|
|
962
|
+
Guyana: 'GY',
|
|
963
|
+
'Hong Kong': 'HK',
|
|
964
|
+
'Hong Kong SAR China': 'HK',
|
|
965
|
+
'Heard & McDonald Islands': 'HM',
|
|
966
|
+
Honduras: 'HN',
|
|
967
|
+
Croatia: 'HR',
|
|
968
|
+
Haiti: 'HT',
|
|
969
|
+
Hungary: 'HU',
|
|
970
|
+
'Canary Islands': 'IC',
|
|
971
|
+
Indonesia: 'ID',
|
|
972
|
+
Ireland: 'IE',
|
|
973
|
+
Israel: 'IL',
|
|
974
|
+
'Isle of Man': 'IM',
|
|
975
|
+
India: 'IN',
|
|
976
|
+
'British Indian Ocean Territory': 'IO',
|
|
977
|
+
Iraq: 'IQ',
|
|
978
|
+
Iran: 'IR',
|
|
979
|
+
Iceland: 'IS',
|
|
980
|
+
Italy: 'IT',
|
|
981
|
+
Jersey: 'JE',
|
|
982
|
+
Jamaica: 'JM',
|
|
983
|
+
Jordan: 'JO',
|
|
984
|
+
Japan: 'JP',
|
|
985
|
+
Kenya: 'KE',
|
|
986
|
+
Kyrgyzstan: 'KG',
|
|
987
|
+
Cambodia: 'KH',
|
|
988
|
+
Kiribati: 'KI',
|
|
989
|
+
Comoros: 'KM',
|
|
990
|
+
'St. Kitts & Nevis': 'KN',
|
|
991
|
+
'North Korea': 'KP',
|
|
992
|
+
'South Korea': 'KR',
|
|
993
|
+
Kuwait: 'KW',
|
|
994
|
+
'Cayman Islands': 'KY',
|
|
995
|
+
Kazakhstan: 'KZ',
|
|
996
|
+
Laos: 'LA',
|
|
997
|
+
Lebanon: 'LB',
|
|
998
|
+
'St. Lucia': 'LC',
|
|
999
|
+
Liechtenstein: 'LI',
|
|
1000
|
+
'Sri Lanka': 'LK',
|
|
1001
|
+
Liberia: 'LR',
|
|
1002
|
+
Lesotho: 'LS',
|
|
1003
|
+
Lithuania: 'LT',
|
|
1004
|
+
Luxembourg: 'LU',
|
|
1005
|
+
Latvia: 'LV',
|
|
1006
|
+
Libya: 'LY',
|
|
1007
|
+
Morocco: 'MA',
|
|
1008
|
+
Monaco: 'MC',
|
|
1009
|
+
Moldova: 'MD',
|
|
1010
|
+
Montenegro: 'ME',
|
|
1011
|
+
'St. Martin': 'MF',
|
|
1012
|
+
Madagascar: 'MG',
|
|
1013
|
+
'Marshall Islands': 'MH',
|
|
1014
|
+
'North Macedonia': 'MK',
|
|
1015
|
+
Mali: 'ML',
|
|
1016
|
+
'Myanmar (Burma)': 'MM',
|
|
1017
|
+
Mongolia: 'MN',
|
|
1018
|
+
'Macau': 'MO',
|
|
1019
|
+
'Macao SAR China': 'MO',
|
|
1020
|
+
'Northern Mariana Islands': 'MP',
|
|
1021
|
+
Martinique: 'MQ',
|
|
1022
|
+
Mauritania: 'MR',
|
|
1023
|
+
Montserrat: 'MS',
|
|
1024
|
+
Malta: 'MT',
|
|
1025
|
+
Mauritius: 'MU',
|
|
1026
|
+
Maldives: 'MV',
|
|
1027
|
+
Malawi: 'MW',
|
|
1028
|
+
Mexico: 'MX',
|
|
1029
|
+
Malaysia: 'MY',
|
|
1030
|
+
Mozambique: 'MZ',
|
|
1031
|
+
Namibia: 'NA',
|
|
1032
|
+
'New Caledonia': 'NC',
|
|
1033
|
+
Niger: 'NE',
|
|
1034
|
+
'Norfolk Island': 'NF',
|
|
1035
|
+
Nigeria: 'NG',
|
|
1036
|
+
Nicaragua: 'NI',
|
|
1037
|
+
Netherlands: 'NL',
|
|
1038
|
+
Norway: 'NO',
|
|
1039
|
+
Nepal: 'NP',
|
|
1040
|
+
Nauru: 'NR',
|
|
1041
|
+
Niue: 'NU',
|
|
1042
|
+
'New Zealand': 'NZ',
|
|
1043
|
+
Oman: 'OM',
|
|
1044
|
+
Panama: 'PA',
|
|
1045
|
+
Peru: 'PE',
|
|
1046
|
+
'French Polynesia': 'PF',
|
|
1047
|
+
'Papua New Guinea': 'PG',
|
|
1048
|
+
Philippines: 'PH',
|
|
1049
|
+
Pakistan: 'PK',
|
|
1050
|
+
Poland: 'PL',
|
|
1051
|
+
'St. Pierre & Miquelon': 'PM',
|
|
1052
|
+
'Pitcairn Islands': 'PN',
|
|
1053
|
+
'Puerto Rico': 'PR',
|
|
1054
|
+
'Palestinian Territories': 'PS',
|
|
1055
|
+
Portugal: 'PT',
|
|
1056
|
+
Palau: 'PW',
|
|
1057
|
+
Paraguay: 'PY',
|
|
1058
|
+
Qatar: 'QA',
|
|
1059
|
+
Réunion: 'RE',
|
|
1060
|
+
Reunion: 'RE',
|
|
1061
|
+
Romania: 'RO',
|
|
1062
|
+
Serbia: 'RS',
|
|
1063
|
+
Russia: 'RU',
|
|
1064
|
+
Rwanda: 'RW',
|
|
1065
|
+
'Saudi Arabia': 'SA',
|
|
1066
|
+
'Solomon Islands': 'SB',
|
|
1067
|
+
Seychelles: 'SC',
|
|
1068
|
+
Sudan: 'SD',
|
|
1069
|
+
Sweden: 'SE',
|
|
1070
|
+
Singapore: 'SG',
|
|
1071
|
+
'St. Helena': 'SH',
|
|
1072
|
+
Slovenia: 'SI',
|
|
1073
|
+
'Svalbard & Jan Mayen': 'SJ',
|
|
1074
|
+
Slovakia: 'SK',
|
|
1075
|
+
'Sierra Leone': 'SL',
|
|
1076
|
+
'San Marino': 'SM',
|
|
1077
|
+
Senegal: 'SN',
|
|
1078
|
+
Somalia: 'SO',
|
|
1079
|
+
Suriname: 'SR',
|
|
1080
|
+
'South Sudan': 'SS',
|
|
1081
|
+
'São Tomé & Príncipe': 'ST',
|
|
1082
|
+
'El Salvador': 'SV',
|
|
1083
|
+
'Sint Maarten': 'SX',
|
|
1084
|
+
Syria: 'SY',
|
|
1085
|
+
Eswatini: 'SZ',
|
|
1086
|
+
'Tristan da Cunha': 'TA',
|
|
1087
|
+
'Turks & Caicos Islands': 'TC',
|
|
1088
|
+
Chad: 'TD',
|
|
1089
|
+
'French Southern Territories': 'TF',
|
|
1090
|
+
Togo: 'TG',
|
|
1091
|
+
Thailand: 'TH',
|
|
1092
|
+
Tajikistan: 'TJ',
|
|
1093
|
+
Tokelau: 'TK',
|
|
1094
|
+
'Timor-Leste': 'TL',
|
|
1095
|
+
Turkmenistan: 'TM',
|
|
1096
|
+
Tunisia: 'TN',
|
|
1097
|
+
Tonga: 'TO',
|
|
1098
|
+
Turkey: 'TR',
|
|
1099
|
+
'Trinidad & Tobago': 'TT',
|
|
1100
|
+
Tuvalu: 'TV',
|
|
1101
|
+
Taiwan: 'TW',
|
|
1102
|
+
Tanzania: 'TZ',
|
|
1103
|
+
Ukraine: 'UA',
|
|
1104
|
+
Uganda: 'UG',
|
|
1105
|
+
'U.S. Outlying Islands': 'UM',
|
|
1106
|
+
'United Nations': 'UN',
|
|
1107
|
+
'United States': 'US',
|
|
1108
|
+
'United States of America': 'US',
|
|
1109
|
+
Uruguay: 'UY',
|
|
1110
|
+
Uzbekistan: 'UZ',
|
|
1111
|
+
'Vatican City': 'VA',
|
|
1112
|
+
'St. Vincent & Grenadines': 'VC',
|
|
1113
|
+
Venezuela: 'VE',
|
|
1114
|
+
'British Virgin Islands': 'VG',
|
|
1115
|
+
'U.S. Virgin Islands': 'VI',
|
|
1116
|
+
Vietnam: 'VN',
|
|
1117
|
+
Vanuatu: 'VU',
|
|
1118
|
+
'Wallis & Futuna': 'WF',
|
|
1119
|
+
Samoa: 'WS',
|
|
1120
|
+
Kosovo: 'XK',
|
|
1121
|
+
Yemen: 'YE',
|
|
1122
|
+
Mayotte: 'YT',
|
|
1123
|
+
'South Africa': 'ZA',
|
|
1124
|
+
Zambia: 'ZM',
|
|
1125
|
+
Zimbabwe: 'ZW',
|
|
1126
|
+
England: 'ENGLAND',
|
|
1127
|
+
Scotland: 'SCOTLAND',
|
|
1128
|
+
Wales: 'WALES',
|
|
1129
|
+
}
|
|
1130
|
+
export const CountryEmoji = {
|
|
1131
|
+
AC: {
|
|
1132
|
+
name: 'Ascension Island',
|
|
1133
|
+
emoji: '🇦🇨',
|
|
1134
|
+
unicode: 'U+1F1E6 U+1F1E8',
|
|
1135
|
+
image:
|
|
1136
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AC.svg',
|
|
1137
|
+
},
|
|
1138
|
+
AD: {
|
|
1139
|
+
name: 'Andorra',
|
|
1140
|
+
emoji: '🇦🇩',
|
|
1141
|
+
unicode: 'U+1F1E6 U+1F1E9',
|
|
1142
|
+
image:
|
|
1143
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AD.svg',
|
|
1144
|
+
},
|
|
1145
|
+
AE: {
|
|
1146
|
+
name: 'United Arab Emirates',
|
|
1147
|
+
emoji: '🇦🇪',
|
|
1148
|
+
unicode: 'U+1F1E6 U+1F1EA',
|
|
1149
|
+
image:
|
|
1150
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AE.svg',
|
|
1151
|
+
},
|
|
1152
|
+
AF: {
|
|
1153
|
+
name: 'Afghanistan',
|
|
1154
|
+
emoji: '🇦🇫',
|
|
1155
|
+
unicode: 'U+1F1E6 U+1F1EB',
|
|
1156
|
+
image:
|
|
1157
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AF.svg',
|
|
1158
|
+
},
|
|
1159
|
+
AG: {
|
|
1160
|
+
name: 'Antigua & Barbuda',
|
|
1161
|
+
emoji: '🇦🇬',
|
|
1162
|
+
unicode: 'U+1F1E6 U+1F1EC',
|
|
1163
|
+
image:
|
|
1164
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AG.svg',
|
|
1165
|
+
},
|
|
1166
|
+
AI: {
|
|
1167
|
+
name: 'Anguilla',
|
|
1168
|
+
emoji: '🇦🇮',
|
|
1169
|
+
unicode: 'U+1F1E6 U+1F1EE',
|
|
1170
|
+
image:
|
|
1171
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AI.svg',
|
|
1172
|
+
},
|
|
1173
|
+
AL: {
|
|
1174
|
+
name: 'Albania',
|
|
1175
|
+
emoji: '🇦🇱',
|
|
1176
|
+
unicode: 'U+1F1E6 U+1F1F1',
|
|
1177
|
+
image:
|
|
1178
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AL.svg',
|
|
1179
|
+
},
|
|
1180
|
+
AM: {
|
|
1181
|
+
name: 'Armenia',
|
|
1182
|
+
emoji: '🇦🇲',
|
|
1183
|
+
unicode: 'U+1F1E6 U+1F1F2',
|
|
1184
|
+
image:
|
|
1185
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AM.svg',
|
|
1186
|
+
},
|
|
1187
|
+
AO: {
|
|
1188
|
+
name: 'Angola',
|
|
1189
|
+
emoji: '🇦🇴',
|
|
1190
|
+
unicode: 'U+1F1E6 U+1F1F4',
|
|
1191
|
+
image:
|
|
1192
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AO.svg',
|
|
1193
|
+
},
|
|
1194
|
+
AQ: {
|
|
1195
|
+
name: 'Antarctica',
|
|
1196
|
+
emoji: '🇦🇶',
|
|
1197
|
+
unicode: 'U+1F1E6 U+1F1F6',
|
|
1198
|
+
image:
|
|
1199
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AQ.svg',
|
|
1200
|
+
},
|
|
1201
|
+
AR: {
|
|
1202
|
+
name: 'Argentina',
|
|
1203
|
+
emoji: '🇦🇷',
|
|
1204
|
+
unicode: 'U+1F1E6 U+1F1F7',
|
|
1205
|
+
image:
|
|
1206
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AR.svg',
|
|
1207
|
+
},
|
|
1208
|
+
AS: {
|
|
1209
|
+
name: 'American Samoa',
|
|
1210
|
+
emoji: '🇦🇸',
|
|
1211
|
+
unicode: 'U+1F1E6 U+1F1F8',
|
|
1212
|
+
image:
|
|
1213
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AS.svg',
|
|
1214
|
+
},
|
|
1215
|
+
AT: {
|
|
1216
|
+
name: 'Austria',
|
|
1217
|
+
emoji: '🇦🇹',
|
|
1218
|
+
unicode: 'U+1F1E6 U+1F1F9',
|
|
1219
|
+
image:
|
|
1220
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AT.svg',
|
|
1221
|
+
},
|
|
1222
|
+
AU: {
|
|
1223
|
+
name: 'Australia',
|
|
1224
|
+
emoji: '🇦🇺',
|
|
1225
|
+
unicode: 'U+1F1E6 U+1F1FA',
|
|
1226
|
+
image:
|
|
1227
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AU.svg',
|
|
1228
|
+
},
|
|
1229
|
+
AW: {
|
|
1230
|
+
name: 'Aruba',
|
|
1231
|
+
emoji: '🇦🇼',
|
|
1232
|
+
unicode: 'U+1F1E6 U+1F1FC',
|
|
1233
|
+
image:
|
|
1234
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AW.svg',
|
|
1235
|
+
},
|
|
1236
|
+
AX: {
|
|
1237
|
+
name: 'Åland Islands',
|
|
1238
|
+
emoji: '🇦🇽',
|
|
1239
|
+
unicode: 'U+1F1E6 U+1F1FD',
|
|
1240
|
+
image:
|
|
1241
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AX.svg',
|
|
1242
|
+
},
|
|
1243
|
+
AZ: {
|
|
1244
|
+
name: 'Azerbaijan',
|
|
1245
|
+
emoji: '🇦🇿',
|
|
1246
|
+
unicode: 'U+1F1E6 U+1F1FF',
|
|
1247
|
+
image:
|
|
1248
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/AZ.svg',
|
|
1249
|
+
},
|
|
1250
|
+
AZR: {
|
|
1251
|
+
name: 'Azores Islands',
|
|
1252
|
+
emoji: ':flag-pt:',
|
|
1253
|
+
unicode: 'U+1F1F5 U+1F1F9',
|
|
1254
|
+
image: 'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PT.svg',
|
|
1255
|
+
},
|
|
1256
|
+
BA: {
|
|
1257
|
+
name: 'Bosnia & Herzegovina',
|
|
1258
|
+
emoji: '🇧🇦',
|
|
1259
|
+
unicode: 'U+1F1E7 U+1F1E6',
|
|
1260
|
+
image:
|
|
1261
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BA.svg',
|
|
1262
|
+
},
|
|
1263
|
+
BB: {
|
|
1264
|
+
name: 'Barbados',
|
|
1265
|
+
emoji: '🇧🇧',
|
|
1266
|
+
unicode: 'U+1F1E7 U+1F1E7',
|
|
1267
|
+
image:
|
|
1268
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BB.svg',
|
|
1269
|
+
},
|
|
1270
|
+
BD: {
|
|
1271
|
+
name: 'Bangladesh',
|
|
1272
|
+
emoji: '🇧🇩',
|
|
1273
|
+
unicode: 'U+1F1E7 U+1F1E9',
|
|
1274
|
+
image:
|
|
1275
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BD.svg',
|
|
1276
|
+
},
|
|
1277
|
+
BE: {
|
|
1278
|
+
name: 'Belgium',
|
|
1279
|
+
emoji: '🇧🇪',
|
|
1280
|
+
unicode: 'U+1F1E7 U+1F1EA',
|
|
1281
|
+
image:
|
|
1282
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BE.svg',
|
|
1283
|
+
},
|
|
1284
|
+
BF: {
|
|
1285
|
+
name: 'Burkina Faso',
|
|
1286
|
+
emoji: '🇧🇫',
|
|
1287
|
+
unicode: 'U+1F1E7 U+1F1EB',
|
|
1288
|
+
image:
|
|
1289
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BF.svg',
|
|
1290
|
+
},
|
|
1291
|
+
BG: {
|
|
1292
|
+
name: 'Bulgaria',
|
|
1293
|
+
emoji: '🇧🇬',
|
|
1294
|
+
unicode: 'U+1F1E7 U+1F1EC',
|
|
1295
|
+
image:
|
|
1296
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BG.svg',
|
|
1297
|
+
},
|
|
1298
|
+
BH: {
|
|
1299
|
+
name: 'Bahrain',
|
|
1300
|
+
emoji: '🇧🇭',
|
|
1301
|
+
unicode: 'U+1F1E7 U+1F1ED',
|
|
1302
|
+
image:
|
|
1303
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BH.svg',
|
|
1304
|
+
},
|
|
1305
|
+
BI: {
|
|
1306
|
+
name: 'Burundi',
|
|
1307
|
+
emoji: '🇧🇮',
|
|
1308
|
+
unicode: 'U+1F1E7 U+1F1EE',
|
|
1309
|
+
image:
|
|
1310
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BI.svg',
|
|
1311
|
+
},
|
|
1312
|
+
BJ: {
|
|
1313
|
+
name: 'Benin',
|
|
1314
|
+
emoji: '🇧🇯',
|
|
1315
|
+
unicode: 'U+1F1E7 U+1F1EF',
|
|
1316
|
+
image:
|
|
1317
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BJ.svg',
|
|
1318
|
+
},
|
|
1319
|
+
BL: {
|
|
1320
|
+
name: 'St. Barthélemy',
|
|
1321
|
+
emoji: '🇧🇱',
|
|
1322
|
+
unicode: 'U+1F1E7 U+1F1F1',
|
|
1323
|
+
image:
|
|
1324
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BL.svg',
|
|
1325
|
+
},
|
|
1326
|
+
BM: {
|
|
1327
|
+
name: 'Bermuda',
|
|
1328
|
+
emoji: '🇧🇲',
|
|
1329
|
+
unicode: 'U+1F1E7 U+1F1F2',
|
|
1330
|
+
image:
|
|
1331
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BM.svg',
|
|
1332
|
+
},
|
|
1333
|
+
BN: {
|
|
1334
|
+
name: 'Brunei',
|
|
1335
|
+
emoji: '🇧🇳',
|
|
1336
|
+
unicode: 'U+1F1E7 U+1F1F3',
|
|
1337
|
+
image:
|
|
1338
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BN.svg',
|
|
1339
|
+
},
|
|
1340
|
+
BO: {
|
|
1341
|
+
name: 'Bolivia',
|
|
1342
|
+
emoji: '🇧🇴',
|
|
1343
|
+
unicode: 'U+1F1E7 U+1F1F4',
|
|
1344
|
+
image:
|
|
1345
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BO.svg',
|
|
1346
|
+
},
|
|
1347
|
+
BQ: {
|
|
1348
|
+
name: 'Caribbean Netherlands',
|
|
1349
|
+
emoji: '🇧🇶',
|
|
1350
|
+
unicode: 'U+1F1E7 U+1F1F6',
|
|
1351
|
+
image:
|
|
1352
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BQ.svg',
|
|
1353
|
+
},
|
|
1354
|
+
BR: {
|
|
1355
|
+
name: 'Brazil',
|
|
1356
|
+
emoji: '🇧🇷',
|
|
1357
|
+
unicode: 'U+1F1E7 U+1F1F7',
|
|
1358
|
+
image:
|
|
1359
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BR.svg',
|
|
1360
|
+
},
|
|
1361
|
+
BS: {
|
|
1362
|
+
name: 'Bahamas',
|
|
1363
|
+
emoji: '🇧🇸',
|
|
1364
|
+
unicode: 'U+1F1E7 U+1F1F8',
|
|
1365
|
+
image:
|
|
1366
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BS.svg',
|
|
1367
|
+
},
|
|
1368
|
+
BT: {
|
|
1369
|
+
name: 'Bhutan',
|
|
1370
|
+
emoji: '🇧🇹',
|
|
1371
|
+
unicode: 'U+1F1E7 U+1F1F9',
|
|
1372
|
+
image:
|
|
1373
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BT.svg',
|
|
1374
|
+
},
|
|
1375
|
+
BV: {
|
|
1376
|
+
name: 'Bouvet Island',
|
|
1377
|
+
emoji: '🇧🇻',
|
|
1378
|
+
unicode: 'U+1F1E7 U+1F1FB',
|
|
1379
|
+
image:
|
|
1380
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BV.svg',
|
|
1381
|
+
},
|
|
1382
|
+
BW: {
|
|
1383
|
+
name: 'Botswana',
|
|
1384
|
+
emoji: '🇧🇼',
|
|
1385
|
+
unicode: 'U+1F1E7 U+1F1FC',
|
|
1386
|
+
image:
|
|
1387
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BW.svg',
|
|
1388
|
+
},
|
|
1389
|
+
BY: {
|
|
1390
|
+
name: 'Belarus',
|
|
1391
|
+
emoji: '🇧🇾',
|
|
1392
|
+
unicode: 'U+1F1E7 U+1F1FE',
|
|
1393
|
+
image:
|
|
1394
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BY.svg',
|
|
1395
|
+
},
|
|
1396
|
+
BZ: {
|
|
1397
|
+
name: 'Belize',
|
|
1398
|
+
emoji: '🇧🇿',
|
|
1399
|
+
unicode: 'U+1F1E7 U+1F1FF',
|
|
1400
|
+
image:
|
|
1401
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/BZ.svg',
|
|
1402
|
+
},
|
|
1403
|
+
CA: {
|
|
1404
|
+
name: 'Canada',
|
|
1405
|
+
emoji: '🇨🇦',
|
|
1406
|
+
unicode: 'U+1F1E8 U+1F1E6',
|
|
1407
|
+
image:
|
|
1408
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CA.svg',
|
|
1409
|
+
},
|
|
1410
|
+
CC: {
|
|
1411
|
+
name: 'Cocos (Keeling) Islands',
|
|
1412
|
+
emoji: '🇨🇨',
|
|
1413
|
+
unicode: 'U+1F1E8 U+1F1E8',
|
|
1414
|
+
image:
|
|
1415
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CC.svg',
|
|
1416
|
+
},
|
|
1417
|
+
CD: {
|
|
1418
|
+
name: 'Congo - Kinshasa',
|
|
1419
|
+
emoji: '🇨🇩',
|
|
1420
|
+
unicode: 'U+1F1E8 U+1F1E9',
|
|
1421
|
+
image:
|
|
1422
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CD.svg',
|
|
1423
|
+
},
|
|
1424
|
+
CF: {
|
|
1425
|
+
name: 'Central African Republic',
|
|
1426
|
+
emoji: '🇨🇫',
|
|
1427
|
+
unicode: 'U+1F1E8 U+1F1EB',
|
|
1428
|
+
image:
|
|
1429
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CF.svg',
|
|
1430
|
+
},
|
|
1431
|
+
CG: {
|
|
1432
|
+
name: 'Congo - Brazzaville',
|
|
1433
|
+
emoji: '🇨🇬',
|
|
1434
|
+
unicode: 'U+1F1E8 U+1F1EC',
|
|
1435
|
+
image:
|
|
1436
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CG.svg',
|
|
1437
|
+
},
|
|
1438
|
+
CH: {
|
|
1439
|
+
name: 'Switzerland',
|
|
1440
|
+
emoji: '🇨🇭',
|
|
1441
|
+
unicode: 'U+1F1E8 U+1F1ED',
|
|
1442
|
+
image:
|
|
1443
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CH.svg',
|
|
1444
|
+
},
|
|
1445
|
+
CI: {
|
|
1446
|
+
name: 'Côte d’Ivoire',
|
|
1447
|
+
emoji: '🇨🇮',
|
|
1448
|
+
unicode: 'U+1F1E8 U+1F1EE',
|
|
1449
|
+
image:
|
|
1450
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CI.svg',
|
|
1451
|
+
},
|
|
1452
|
+
CK: {
|
|
1453
|
+
name: 'Cook Islands',
|
|
1454
|
+
emoji: '🇨🇰',
|
|
1455
|
+
unicode: 'U+1F1E8 U+1F1F0',
|
|
1456
|
+
image:
|
|
1457
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CK.svg',
|
|
1458
|
+
},
|
|
1459
|
+
CL: {
|
|
1460
|
+
name: 'Chile',
|
|
1461
|
+
emoji: '🇨🇱',
|
|
1462
|
+
unicode: 'U+1F1E8 U+1F1F1',
|
|
1463
|
+
image:
|
|
1464
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CL.svg',
|
|
1465
|
+
},
|
|
1466
|
+
CM: {
|
|
1467
|
+
name: 'Cameroon',
|
|
1468
|
+
emoji: '🇨🇲',
|
|
1469
|
+
unicode: 'U+1F1E8 U+1F1F2',
|
|
1470
|
+
image:
|
|
1471
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CM.svg',
|
|
1472
|
+
},
|
|
1473
|
+
CN: {
|
|
1474
|
+
name: 'China',
|
|
1475
|
+
emoji: '🇨🇳',
|
|
1476
|
+
unicode: 'U+1F1E8 U+1F1F3',
|
|
1477
|
+
image:
|
|
1478
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CN.svg',
|
|
1479
|
+
},
|
|
1480
|
+
CO: {
|
|
1481
|
+
name: 'Colombia',
|
|
1482
|
+
emoji: '🇨🇴',
|
|
1483
|
+
unicode: 'U+1F1E8 U+1F1F4',
|
|
1484
|
+
image:
|
|
1485
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CO.svg',
|
|
1486
|
+
},
|
|
1487
|
+
CP: {
|
|
1488
|
+
name: 'Clipperton Island',
|
|
1489
|
+
emoji: '🇨🇵',
|
|
1490
|
+
unicode: 'U+1F1E8 U+1F1F5',
|
|
1491
|
+
image:
|
|
1492
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CP.svg',
|
|
1493
|
+
},
|
|
1494
|
+
CR: {
|
|
1495
|
+
name: 'Costa Rica',
|
|
1496
|
+
emoji: '🇨🇷',
|
|
1497
|
+
unicode: 'U+1F1E8 U+1F1F7',
|
|
1498
|
+
image:
|
|
1499
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CR.svg',
|
|
1500
|
+
},
|
|
1501
|
+
CU: {
|
|
1502
|
+
name: 'Cuba',
|
|
1503
|
+
emoji: '🇨🇺',
|
|
1504
|
+
unicode: 'U+1F1E8 U+1F1FA',
|
|
1505
|
+
image:
|
|
1506
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CU.svg',
|
|
1507
|
+
},
|
|
1508
|
+
CV: {
|
|
1509
|
+
name: 'Cape Verde',
|
|
1510
|
+
emoji: '🇨🇻',
|
|
1511
|
+
unicode: 'U+1F1E8 U+1F1FB',
|
|
1512
|
+
image:
|
|
1513
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CV.svg',
|
|
1514
|
+
},
|
|
1515
|
+
CW: {
|
|
1516
|
+
name: 'Curaçao',
|
|
1517
|
+
emoji: '🇨🇼',
|
|
1518
|
+
unicode: 'U+1F1E8 U+1F1FC',
|
|
1519
|
+
image:
|
|
1520
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CW.svg',
|
|
1521
|
+
},
|
|
1522
|
+
CX: {
|
|
1523
|
+
name: 'Christmas Island',
|
|
1524
|
+
emoji: '🇨🇽',
|
|
1525
|
+
unicode: 'U+1F1E8 U+1F1FD',
|
|
1526
|
+
image:
|
|
1527
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CX.svg',
|
|
1528
|
+
},
|
|
1529
|
+
CY: {
|
|
1530
|
+
name: 'Cyprus',
|
|
1531
|
+
emoji: '🇨🇾',
|
|
1532
|
+
unicode: 'U+1F1E8 U+1F1FE',
|
|
1533
|
+
image:
|
|
1534
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CY.svg',
|
|
1535
|
+
},
|
|
1536
|
+
CZ: {
|
|
1537
|
+
name: 'Czechia',
|
|
1538
|
+
emoji: '🇨🇿',
|
|
1539
|
+
unicode: 'U+1F1E8 U+1F1FF',
|
|
1540
|
+
image:
|
|
1541
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CZ.svg',
|
|
1542
|
+
},
|
|
1543
|
+
CZR: {
|
|
1544
|
+
name: 'Czech Republic',
|
|
1545
|
+
emoji: '🇨🇿',
|
|
1546
|
+
unicode: 'U+1F1E8 U+1F1FF',
|
|
1547
|
+
image: 'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/CZ.svg',
|
|
1548
|
+
},
|
|
1549
|
+
DE: {
|
|
1550
|
+
name: 'Germany',
|
|
1551
|
+
emoji: '🇩🇪',
|
|
1552
|
+
unicode: 'U+1F1E9 U+1F1EA',
|
|
1553
|
+
image:
|
|
1554
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DE.svg',
|
|
1555
|
+
},
|
|
1556
|
+
DG: {
|
|
1557
|
+
name: 'Diego Garcia',
|
|
1558
|
+
emoji: '🇩🇬',
|
|
1559
|
+
unicode: 'U+1F1E9 U+1F1EC',
|
|
1560
|
+
image:
|
|
1561
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DG.svg',
|
|
1562
|
+
},
|
|
1563
|
+
DJ: {
|
|
1564
|
+
name: 'Djibouti',
|
|
1565
|
+
emoji: '🇩🇯',
|
|
1566
|
+
unicode: 'U+1F1E9 U+1F1EF',
|
|
1567
|
+
image:
|
|
1568
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DJ.svg',
|
|
1569
|
+
},
|
|
1570
|
+
DK: {
|
|
1571
|
+
name: 'Denmark',
|
|
1572
|
+
emoji: '🇩🇰',
|
|
1573
|
+
unicode: 'U+1F1E9 U+1F1F0',
|
|
1574
|
+
image:
|
|
1575
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DK.svg',
|
|
1576
|
+
},
|
|
1577
|
+
DM: {
|
|
1578
|
+
name: 'Dominica',
|
|
1579
|
+
emoji: '🇩🇲',
|
|
1580
|
+
unicode: 'U+1F1E9 U+1F1F2',
|
|
1581
|
+
image:
|
|
1582
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DM.svg',
|
|
1583
|
+
},
|
|
1584
|
+
DO: {
|
|
1585
|
+
name: 'Dominican Republic',
|
|
1586
|
+
emoji: '🇩🇴',
|
|
1587
|
+
unicode: 'U+1F1E9 U+1F1F4',
|
|
1588
|
+
image:
|
|
1589
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DO.svg',
|
|
1590
|
+
},
|
|
1591
|
+
DZ: {
|
|
1592
|
+
name: 'Algeria',
|
|
1593
|
+
emoji: '🇩🇿',
|
|
1594
|
+
unicode: 'U+1F1E9 U+1F1FF',
|
|
1595
|
+
image:
|
|
1596
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/DZ.svg',
|
|
1597
|
+
},
|
|
1598
|
+
EA: {
|
|
1599
|
+
name: 'Ceuta & Melilla',
|
|
1600
|
+
emoji: '🇪🇦',
|
|
1601
|
+
unicode: 'U+1F1EA U+1F1E6',
|
|
1602
|
+
image:
|
|
1603
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EA.svg',
|
|
1604
|
+
},
|
|
1605
|
+
EC: {
|
|
1606
|
+
name: 'Ecuador',
|
|
1607
|
+
emoji: '🇪🇨',
|
|
1608
|
+
unicode: 'U+1F1EA U+1F1E8',
|
|
1609
|
+
image:
|
|
1610
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EC.svg',
|
|
1611
|
+
},
|
|
1612
|
+
EE: {
|
|
1613
|
+
name: 'Estonia',
|
|
1614
|
+
emoji: '🇪🇪',
|
|
1615
|
+
unicode: 'U+1F1EA U+1F1EA',
|
|
1616
|
+
image:
|
|
1617
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EE.svg',
|
|
1618
|
+
},
|
|
1619
|
+
EG: {
|
|
1620
|
+
name: 'Egypt',
|
|
1621
|
+
emoji: '🇪🇬',
|
|
1622
|
+
unicode: 'U+1F1EA U+1F1EC',
|
|
1623
|
+
image:
|
|
1624
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EG.svg',
|
|
1625
|
+
},
|
|
1626
|
+
EH: {
|
|
1627
|
+
name: 'Western Sahara',
|
|
1628
|
+
emoji: '🇪🇭',
|
|
1629
|
+
unicode: 'U+1F1EA U+1F1ED',
|
|
1630
|
+
image:
|
|
1631
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EH.svg',
|
|
1632
|
+
},
|
|
1633
|
+
ER: {
|
|
1634
|
+
name: 'Eritrea',
|
|
1635
|
+
emoji: '🇪🇷',
|
|
1636
|
+
unicode: 'U+1F1EA U+1F1F7',
|
|
1637
|
+
image:
|
|
1638
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ER.svg',
|
|
1639
|
+
},
|
|
1640
|
+
ES: {
|
|
1641
|
+
name: 'Spain',
|
|
1642
|
+
emoji: '🇪🇸',
|
|
1643
|
+
unicode: 'U+1F1EA U+1F1F8',
|
|
1644
|
+
image:
|
|
1645
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ES.svg',
|
|
1646
|
+
},
|
|
1647
|
+
ET: {
|
|
1648
|
+
name: 'Ethiopia',
|
|
1649
|
+
emoji: '🇪🇹',
|
|
1650
|
+
unicode: 'U+1F1EA U+1F1F9',
|
|
1651
|
+
image:
|
|
1652
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ET.svg',
|
|
1653
|
+
},
|
|
1654
|
+
EU: {
|
|
1655
|
+
name: 'European Union',
|
|
1656
|
+
emoji: '🇪🇺',
|
|
1657
|
+
unicode: 'U+1F1EA U+1F1FA',
|
|
1658
|
+
image:
|
|
1659
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/EU.svg',
|
|
1660
|
+
},
|
|
1661
|
+
FI: {
|
|
1662
|
+
name: 'Finland',
|
|
1663
|
+
emoji: '🇫🇮',
|
|
1664
|
+
unicode: 'U+1F1EB U+1F1EE',
|
|
1665
|
+
image:
|
|
1666
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FI.svg',
|
|
1667
|
+
},
|
|
1668
|
+
FJ: {
|
|
1669
|
+
name: 'Fiji',
|
|
1670
|
+
emoji: '🇫🇯',
|
|
1671
|
+
unicode: 'U+1F1EB U+1F1EF',
|
|
1672
|
+
image:
|
|
1673
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FJ.svg',
|
|
1674
|
+
},
|
|
1675
|
+
FK: {
|
|
1676
|
+
name: 'Falkland Islands',
|
|
1677
|
+
emoji: '🇫🇰',
|
|
1678
|
+
unicode: 'U+1F1EB U+1F1F0',
|
|
1679
|
+
image:
|
|
1680
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FK.svg',
|
|
1681
|
+
},
|
|
1682
|
+
FM: {
|
|
1683
|
+
name: 'Micronesia',
|
|
1684
|
+
emoji: '🇫🇲',
|
|
1685
|
+
unicode: 'U+1F1EB U+1F1F2',
|
|
1686
|
+
image:
|
|
1687
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FM.svg',
|
|
1688
|
+
},
|
|
1689
|
+
FO: {
|
|
1690
|
+
name: 'Faroe Islands',
|
|
1691
|
+
emoji: '🇫🇴',
|
|
1692
|
+
unicode: 'U+1F1EB U+1F1F4',
|
|
1693
|
+
image:
|
|
1694
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FO.svg',
|
|
1695
|
+
},
|
|
1696
|
+
FR: {
|
|
1697
|
+
name: 'France',
|
|
1698
|
+
emoji: '🇫🇷',
|
|
1699
|
+
unicode: 'U+1F1EB U+1F1F7',
|
|
1700
|
+
image:
|
|
1701
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/FR.svg',
|
|
1702
|
+
},
|
|
1703
|
+
GA: {
|
|
1704
|
+
name: 'Gabon',
|
|
1705
|
+
emoji: '🇬🇦',
|
|
1706
|
+
unicode: 'U+1F1EC U+1F1E6',
|
|
1707
|
+
image:
|
|
1708
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GA.svg',
|
|
1709
|
+
},
|
|
1710
|
+
GB: {
|
|
1711
|
+
name: 'United Kingdom',
|
|
1712
|
+
emoji: '🇬🇧',
|
|
1713
|
+
unicode: 'U+1F1EC U+1F1E7',
|
|
1714
|
+
image:
|
|
1715
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GB.svg',
|
|
1716
|
+
},
|
|
1717
|
+
GD: {
|
|
1718
|
+
name: 'Grenada',
|
|
1719
|
+
emoji: '🇬🇩',
|
|
1720
|
+
unicode: 'U+1F1EC U+1F1E9',
|
|
1721
|
+
image:
|
|
1722
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GD.svg',
|
|
1723
|
+
},
|
|
1724
|
+
GE: {
|
|
1725
|
+
name: 'Georgia',
|
|
1726
|
+
emoji: '🇬🇪',
|
|
1727
|
+
unicode: 'U+1F1EC U+1F1EA',
|
|
1728
|
+
image:
|
|
1729
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GE.svg',
|
|
1730
|
+
},
|
|
1731
|
+
GF: {
|
|
1732
|
+
name: 'French Guiana',
|
|
1733
|
+
emoji: '🇬🇫',
|
|
1734
|
+
unicode: 'U+1F1EC U+1F1EB',
|
|
1735
|
+
image:
|
|
1736
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GF.svg',
|
|
1737
|
+
},
|
|
1738
|
+
GG: {
|
|
1739
|
+
name: 'Guernsey',
|
|
1740
|
+
emoji: '🇬🇬',
|
|
1741
|
+
unicode: 'U+1F1EC U+1F1EC',
|
|
1742
|
+
image:
|
|
1743
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GG.svg',
|
|
1744
|
+
},
|
|
1745
|
+
GH: {
|
|
1746
|
+
name: 'Ghana',
|
|
1747
|
+
emoji: '🇬🇭',
|
|
1748
|
+
unicode: 'U+1F1EC U+1F1ED',
|
|
1749
|
+
image:
|
|
1750
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GH.svg',
|
|
1751
|
+
},
|
|
1752
|
+
GI: {
|
|
1753
|
+
name: 'Gibraltar',
|
|
1754
|
+
emoji: '🇬🇮',
|
|
1755
|
+
unicode: 'U+1F1EC U+1F1EE',
|
|
1756
|
+
image:
|
|
1757
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GI.svg',
|
|
1758
|
+
},
|
|
1759
|
+
GL: {
|
|
1760
|
+
name: 'Greenland',
|
|
1761
|
+
emoji: '🇬🇱',
|
|
1762
|
+
unicode: 'U+1F1EC U+1F1F1',
|
|
1763
|
+
image:
|
|
1764
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GL.svg',
|
|
1765
|
+
},
|
|
1766
|
+
GM: {
|
|
1767
|
+
name: 'Gambia',
|
|
1768
|
+
emoji: '🇬🇲',
|
|
1769
|
+
unicode: 'U+1F1EC U+1F1F2',
|
|
1770
|
+
image:
|
|
1771
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GM.svg',
|
|
1772
|
+
},
|
|
1773
|
+
GN: {
|
|
1774
|
+
name: 'Guinea',
|
|
1775
|
+
emoji: '🇬🇳',
|
|
1776
|
+
unicode: 'U+1F1EC U+1F1F3',
|
|
1777
|
+
image:
|
|
1778
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GN.svg',
|
|
1779
|
+
},
|
|
1780
|
+
GP: {
|
|
1781
|
+
name: 'Guadeloupe',
|
|
1782
|
+
emoji: '🇬🇵',
|
|
1783
|
+
unicode: 'U+1F1EC U+1F1F5',
|
|
1784
|
+
image:
|
|
1785
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GP.svg',
|
|
1786
|
+
},
|
|
1787
|
+
GQ: {
|
|
1788
|
+
name: 'Equatorial Guinea',
|
|
1789
|
+
emoji: '🇬🇶',
|
|
1790
|
+
unicode: 'U+1F1EC U+1F1F6',
|
|
1791
|
+
image:
|
|
1792
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GQ.svg',
|
|
1793
|
+
},
|
|
1794
|
+
GR: {
|
|
1795
|
+
name: 'Greece',
|
|
1796
|
+
emoji: '🇬🇷',
|
|
1797
|
+
unicode: 'U+1F1EC U+1F1F7',
|
|
1798
|
+
image:
|
|
1799
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GR.svg',
|
|
1800
|
+
},
|
|
1801
|
+
GS: {
|
|
1802
|
+
name: 'South Georgia & South Sandwich Islands',
|
|
1803
|
+
emoji: '🇬🇸',
|
|
1804
|
+
unicode: 'U+1F1EC U+1F1F8',
|
|
1805
|
+
image:
|
|
1806
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GS.svg',
|
|
1807
|
+
},
|
|
1808
|
+
GT: {
|
|
1809
|
+
name: 'Guatemala',
|
|
1810
|
+
emoji: '🇬🇹',
|
|
1811
|
+
unicode: 'U+1F1EC U+1F1F9',
|
|
1812
|
+
image:
|
|
1813
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GT.svg',
|
|
1814
|
+
},
|
|
1815
|
+
GU: {
|
|
1816
|
+
name: 'Guam',
|
|
1817
|
+
emoji: '🇬🇺',
|
|
1818
|
+
unicode: 'U+1F1EC U+1F1FA',
|
|
1819
|
+
image:
|
|
1820
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GU.svg',
|
|
1821
|
+
},
|
|
1822
|
+
GW: {
|
|
1823
|
+
name: 'Guinea-Bissau',
|
|
1824
|
+
emoji: '🇬🇼',
|
|
1825
|
+
unicode: 'U+1F1EC U+1F1FC',
|
|
1826
|
+
image:
|
|
1827
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GW.svg',
|
|
1828
|
+
},
|
|
1829
|
+
GY: {
|
|
1830
|
+
name: 'Guyana',
|
|
1831
|
+
emoji: '🇬🇾',
|
|
1832
|
+
unicode: 'U+1F1EC U+1F1FE',
|
|
1833
|
+
image:
|
|
1834
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/GY.svg',
|
|
1835
|
+
},
|
|
1836
|
+
HK: {
|
|
1837
|
+
name: 'Hong Kong SAR China',
|
|
1838
|
+
emoji: '🇭🇰',
|
|
1839
|
+
unicode: 'U+1F1ED U+1F1F0',
|
|
1840
|
+
image:
|
|
1841
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HK.svg',
|
|
1842
|
+
},
|
|
1843
|
+
HM: {
|
|
1844
|
+
name: 'Heard & McDonald Islands',
|
|
1845
|
+
emoji: '🇭🇲',
|
|
1846
|
+
unicode: 'U+1F1ED U+1F1F2',
|
|
1847
|
+
image:
|
|
1848
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HM.svg',
|
|
1849
|
+
},
|
|
1850
|
+
HN: {
|
|
1851
|
+
name: 'Honduras',
|
|
1852
|
+
emoji: '🇭🇳',
|
|
1853
|
+
unicode: 'U+1F1ED U+1F1F3',
|
|
1854
|
+
image:
|
|
1855
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HN.svg',
|
|
1856
|
+
},
|
|
1857
|
+
HR: {
|
|
1858
|
+
name: 'Croatia',
|
|
1859
|
+
emoji: '🇭🇷',
|
|
1860
|
+
unicode: 'U+1F1ED U+1F1F7',
|
|
1861
|
+
image:
|
|
1862
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HR.svg',
|
|
1863
|
+
},
|
|
1864
|
+
HT: {
|
|
1865
|
+
name: 'Haiti',
|
|
1866
|
+
emoji: '🇭🇹',
|
|
1867
|
+
unicode: 'U+1F1ED U+1F1F9',
|
|
1868
|
+
image:
|
|
1869
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HT.svg',
|
|
1870
|
+
},
|
|
1871
|
+
HU: {
|
|
1872
|
+
name: 'Hungary',
|
|
1873
|
+
emoji: '🇭🇺',
|
|
1874
|
+
unicode: 'U+1F1ED U+1F1FA',
|
|
1875
|
+
image:
|
|
1876
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/HU.svg',
|
|
1877
|
+
},
|
|
1878
|
+
IC: {
|
|
1879
|
+
name: 'Canary Islands',
|
|
1880
|
+
emoji: '🇮🇨',
|
|
1881
|
+
unicode: 'U+1F1EE U+1F1E8',
|
|
1882
|
+
image:
|
|
1883
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IC.svg',
|
|
1884
|
+
},
|
|
1885
|
+
ID: {
|
|
1886
|
+
name: 'Indonesia',
|
|
1887
|
+
emoji: '🇮🇩',
|
|
1888
|
+
unicode: 'U+1F1EE U+1F1E9',
|
|
1889
|
+
image:
|
|
1890
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ID.svg',
|
|
1891
|
+
},
|
|
1892
|
+
IE: {
|
|
1893
|
+
name: 'Ireland',
|
|
1894
|
+
emoji: '🇮🇪',
|
|
1895
|
+
unicode: 'U+1F1EE U+1F1EA',
|
|
1896
|
+
image:
|
|
1897
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IE.svg',
|
|
1898
|
+
},
|
|
1899
|
+
IL: {
|
|
1900
|
+
name: 'Israel',
|
|
1901
|
+
emoji: '🇮🇱',
|
|
1902
|
+
unicode: 'U+1F1EE U+1F1F1',
|
|
1903
|
+
image:
|
|
1904
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IL.svg',
|
|
1905
|
+
},
|
|
1906
|
+
IM: {
|
|
1907
|
+
name: 'Isle of Man',
|
|
1908
|
+
emoji: '🇮🇲',
|
|
1909
|
+
unicode: 'U+1F1EE U+1F1F2',
|
|
1910
|
+
image:
|
|
1911
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IM.svg',
|
|
1912
|
+
},
|
|
1913
|
+
IN: {
|
|
1914
|
+
name: 'India',
|
|
1915
|
+
emoji: '🇮🇳',
|
|
1916
|
+
unicode: 'U+1F1EE U+1F1F3',
|
|
1917
|
+
image:
|
|
1918
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IN.svg',
|
|
1919
|
+
},
|
|
1920
|
+
IO: {
|
|
1921
|
+
name: 'British Indian Ocean Territory',
|
|
1922
|
+
emoji: '🇮🇴',
|
|
1923
|
+
unicode: 'U+1F1EE U+1F1F4',
|
|
1924
|
+
image:
|
|
1925
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IO.svg',
|
|
1926
|
+
},
|
|
1927
|
+
IQ: {
|
|
1928
|
+
name: 'Iraq',
|
|
1929
|
+
emoji: '🇮🇶',
|
|
1930
|
+
unicode: 'U+1F1EE U+1F1F6',
|
|
1931
|
+
image:
|
|
1932
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IQ.svg',
|
|
1933
|
+
},
|
|
1934
|
+
IR: {
|
|
1935
|
+
name: 'Iran',
|
|
1936
|
+
emoji: '🇮🇷',
|
|
1937
|
+
unicode: 'U+1F1EE U+1F1F7',
|
|
1938
|
+
image:
|
|
1939
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IR.svg',
|
|
1940
|
+
},
|
|
1941
|
+
IS: {
|
|
1942
|
+
name: 'Iceland',
|
|
1943
|
+
emoji: '🇮🇸',
|
|
1944
|
+
unicode: 'U+1F1EE U+1F1F8',
|
|
1945
|
+
image:
|
|
1946
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IS.svg',
|
|
1947
|
+
},
|
|
1948
|
+
IT: {
|
|
1949
|
+
name: 'Italy',
|
|
1950
|
+
emoji: '🇮🇹',
|
|
1951
|
+
unicode: 'U+1F1EE U+1F1F9',
|
|
1952
|
+
image:
|
|
1953
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/IT.svg',
|
|
1954
|
+
},
|
|
1955
|
+
JE: {
|
|
1956
|
+
name: 'Jersey',
|
|
1957
|
+
emoji: '🇯🇪',
|
|
1958
|
+
unicode: 'U+1F1EF U+1F1EA',
|
|
1959
|
+
image:
|
|
1960
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JE.svg',
|
|
1961
|
+
},
|
|
1962
|
+
JM: {
|
|
1963
|
+
name: 'Jamaica',
|
|
1964
|
+
emoji: '🇯🇲',
|
|
1965
|
+
unicode: 'U+1F1EF U+1F1F2',
|
|
1966
|
+
image:
|
|
1967
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JM.svg',
|
|
1968
|
+
},
|
|
1969
|
+
JO: {
|
|
1970
|
+
name: 'Jordan',
|
|
1971
|
+
emoji: '🇯🇴',
|
|
1972
|
+
unicode: 'U+1F1EF U+1F1F4',
|
|
1973
|
+
image:
|
|
1974
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JO.svg',
|
|
1975
|
+
},
|
|
1976
|
+
JP: {
|
|
1977
|
+
name: 'Japan',
|
|
1978
|
+
emoji: '🇯🇵',
|
|
1979
|
+
unicode: 'U+1F1EF U+1F1F5',
|
|
1980
|
+
image:
|
|
1981
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/JP.svg',
|
|
1982
|
+
},
|
|
1983
|
+
KE: {
|
|
1984
|
+
name: 'Kenya',
|
|
1985
|
+
emoji: '🇰🇪',
|
|
1986
|
+
unicode: 'U+1F1F0 U+1F1EA',
|
|
1987
|
+
image:
|
|
1988
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KE.svg',
|
|
1989
|
+
},
|
|
1990
|
+
KG: {
|
|
1991
|
+
name: 'Kyrgyzstan',
|
|
1992
|
+
emoji: '🇰🇬',
|
|
1993
|
+
unicode: 'U+1F1F0 U+1F1EC',
|
|
1994
|
+
image:
|
|
1995
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KG.svg',
|
|
1996
|
+
},
|
|
1997
|
+
KH: {
|
|
1998
|
+
name: 'Cambodia',
|
|
1999
|
+
emoji: '🇰🇭',
|
|
2000
|
+
unicode: 'U+1F1F0 U+1F1ED',
|
|
2001
|
+
image:
|
|
2002
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KH.svg',
|
|
2003
|
+
},
|
|
2004
|
+
KI: {
|
|
2005
|
+
name: 'Kiribati',
|
|
2006
|
+
emoji: '🇰🇮',
|
|
2007
|
+
unicode: 'U+1F1F0 U+1F1EE',
|
|
2008
|
+
image:
|
|
2009
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KI.svg',
|
|
2010
|
+
},
|
|
2011
|
+
KM: {
|
|
2012
|
+
name: 'Comoros',
|
|
2013
|
+
emoji: '🇰🇲',
|
|
2014
|
+
unicode: 'U+1F1F0 U+1F1F2',
|
|
2015
|
+
image:
|
|
2016
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KM.svg',
|
|
2017
|
+
},
|
|
2018
|
+
KN: {
|
|
2019
|
+
name: 'St. Kitts & Nevis',
|
|
2020
|
+
emoji: '🇰🇳',
|
|
2021
|
+
unicode: 'U+1F1F0 U+1F1F3',
|
|
2022
|
+
image:
|
|
2023
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KN.svg',
|
|
2024
|
+
},
|
|
2025
|
+
KP: {
|
|
2026
|
+
name: 'North Korea',
|
|
2027
|
+
emoji: '🇰🇵',
|
|
2028
|
+
unicode: 'U+1F1F0 U+1F1F5',
|
|
2029
|
+
image:
|
|
2030
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KP.svg',
|
|
2031
|
+
},
|
|
2032
|
+
KR: {
|
|
2033
|
+
name: 'South Korea',
|
|
2034
|
+
emoji: '🇰🇷',
|
|
2035
|
+
unicode: 'U+1F1F0 U+1F1F7',
|
|
2036
|
+
image:
|
|
2037
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KR.svg',
|
|
2038
|
+
},
|
|
2039
|
+
KW: {
|
|
2040
|
+
name: 'Kuwait',
|
|
2041
|
+
emoji: '🇰🇼',
|
|
2042
|
+
unicode: 'U+1F1F0 U+1F1FC',
|
|
2043
|
+
image:
|
|
2044
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KW.svg',
|
|
2045
|
+
},
|
|
2046
|
+
KY: {
|
|
2047
|
+
name: 'Cayman Islands',
|
|
2048
|
+
emoji: '🇰🇾',
|
|
2049
|
+
unicode: 'U+1F1F0 U+1F1FE',
|
|
2050
|
+
image:
|
|
2051
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KY.svg',
|
|
2052
|
+
},
|
|
2053
|
+
KZ: {
|
|
2054
|
+
name: 'Kazakhstan',
|
|
2055
|
+
emoji: '🇰🇿',
|
|
2056
|
+
unicode: 'U+1F1F0 U+1F1FF',
|
|
2057
|
+
image:
|
|
2058
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/KZ.svg',
|
|
2059
|
+
},
|
|
2060
|
+
LA: {
|
|
2061
|
+
name: 'Laos',
|
|
2062
|
+
emoji: '🇱🇦',
|
|
2063
|
+
unicode: 'U+1F1F1 U+1F1E6',
|
|
2064
|
+
image:
|
|
2065
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LA.svg',
|
|
2066
|
+
},
|
|
2067
|
+
LB: {
|
|
2068
|
+
name: 'Lebanon',
|
|
2069
|
+
emoji: '🇱🇧',
|
|
2070
|
+
unicode: 'U+1F1F1 U+1F1E7',
|
|
2071
|
+
image:
|
|
2072
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LB.svg',
|
|
2073
|
+
},
|
|
2074
|
+
LC: {
|
|
2075
|
+
name: 'St. Lucia',
|
|
2076
|
+
emoji: '🇱🇨',
|
|
2077
|
+
unicode: 'U+1F1F1 U+1F1E8',
|
|
2078
|
+
image:
|
|
2079
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LC.svg',
|
|
2080
|
+
},
|
|
2081
|
+
LI: {
|
|
2082
|
+
name: 'Liechtenstein',
|
|
2083
|
+
emoji: '🇱🇮',
|
|
2084
|
+
unicode: 'U+1F1F1 U+1F1EE',
|
|
2085
|
+
image:
|
|
2086
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LI.svg',
|
|
2087
|
+
},
|
|
2088
|
+
LK: {
|
|
2089
|
+
name: 'Sri Lanka',
|
|
2090
|
+
emoji: '🇱🇰',
|
|
2091
|
+
unicode: 'U+1F1F1 U+1F1F0',
|
|
2092
|
+
image:
|
|
2093
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LK.svg',
|
|
2094
|
+
},
|
|
2095
|
+
LR: {
|
|
2096
|
+
name: 'Liberia',
|
|
2097
|
+
emoji: '🇱🇷',
|
|
2098
|
+
unicode: 'U+1F1F1 U+1F1F7',
|
|
2099
|
+
image:
|
|
2100
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LR.svg',
|
|
2101
|
+
},
|
|
2102
|
+
LS: {
|
|
2103
|
+
name: 'Lesotho',
|
|
2104
|
+
emoji: '🇱🇸',
|
|
2105
|
+
unicode: 'U+1F1F1 U+1F1F8',
|
|
2106
|
+
image:
|
|
2107
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LS.svg',
|
|
2108
|
+
},
|
|
2109
|
+
LT: {
|
|
2110
|
+
name: 'Lithuania',
|
|
2111
|
+
emoji: '🇱🇹',
|
|
2112
|
+
unicode: 'U+1F1F1 U+1F1F9',
|
|
2113
|
+
image:
|
|
2114
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LT.svg',
|
|
2115
|
+
},
|
|
2116
|
+
LU: {
|
|
2117
|
+
name: 'Luxembourg',
|
|
2118
|
+
emoji: '🇱🇺',
|
|
2119
|
+
unicode: 'U+1F1F1 U+1F1FA',
|
|
2120
|
+
image:
|
|
2121
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LU.svg',
|
|
2122
|
+
},
|
|
2123
|
+
LV: {
|
|
2124
|
+
name: 'Latvia',
|
|
2125
|
+
emoji: '🇱🇻',
|
|
2126
|
+
unicode: 'U+1F1F1 U+1F1FB',
|
|
2127
|
+
image:
|
|
2128
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LV.svg',
|
|
2129
|
+
},
|
|
2130
|
+
LY: {
|
|
2131
|
+
name: 'Libya',
|
|
2132
|
+
emoji: '🇱🇾',
|
|
2133
|
+
unicode: 'U+1F1F1 U+1F1FE',
|
|
2134
|
+
image:
|
|
2135
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/LY.svg',
|
|
2136
|
+
},
|
|
2137
|
+
MA: {
|
|
2138
|
+
name: 'Morocco',
|
|
2139
|
+
emoji: '🇲🇦',
|
|
2140
|
+
unicode: 'U+1F1F2 U+1F1E6',
|
|
2141
|
+
image:
|
|
2142
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MA.svg',
|
|
2143
|
+
},
|
|
2144
|
+
MC: {
|
|
2145
|
+
name: 'Monaco',
|
|
2146
|
+
emoji: '🇲🇨',
|
|
2147
|
+
unicode: 'U+1F1F2 U+1F1E8',
|
|
2148
|
+
image:
|
|
2149
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MC.svg',
|
|
2150
|
+
},
|
|
2151
|
+
MD: {
|
|
2152
|
+
name: 'Moldova',
|
|
2153
|
+
emoji: '🇲🇩',
|
|
2154
|
+
unicode: 'U+1F1F2 U+1F1E9',
|
|
2155
|
+
image:
|
|
2156
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MD.svg',
|
|
2157
|
+
},
|
|
2158
|
+
ME: {
|
|
2159
|
+
name: 'Montenegro',
|
|
2160
|
+
emoji: '🇲🇪',
|
|
2161
|
+
unicode: 'U+1F1F2 U+1F1EA',
|
|
2162
|
+
image:
|
|
2163
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ME.svg',
|
|
2164
|
+
},
|
|
2165
|
+
MF: {
|
|
2166
|
+
name: 'St. Martin',
|
|
2167
|
+
emoji: '🇲🇫',
|
|
2168
|
+
unicode: 'U+1F1F2 U+1F1EB',
|
|
2169
|
+
image:
|
|
2170
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MF.svg',
|
|
2171
|
+
},
|
|
2172
|
+
MG: {
|
|
2173
|
+
name: 'Madagascar',
|
|
2174
|
+
emoji: '🇲🇬',
|
|
2175
|
+
unicode: 'U+1F1F2 U+1F1EC',
|
|
2176
|
+
image:
|
|
2177
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MG.svg',
|
|
2178
|
+
},
|
|
2179
|
+
MH: {
|
|
2180
|
+
name: 'Marshall Islands',
|
|
2181
|
+
emoji: '🇲🇭',
|
|
2182
|
+
unicode: 'U+1F1F2 U+1F1ED',
|
|
2183
|
+
image:
|
|
2184
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MH.svg',
|
|
2185
|
+
},
|
|
2186
|
+
MK: {
|
|
2187
|
+
name: 'North Macedonia',
|
|
2188
|
+
emoji: '🇲🇰',
|
|
2189
|
+
unicode: 'U+1F1F2 U+1F1F0',
|
|
2190
|
+
image:
|
|
2191
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MK.svg',
|
|
2192
|
+
},
|
|
2193
|
+
ML: {
|
|
2194
|
+
name: 'Mali',
|
|
2195
|
+
emoji: '🇲🇱',
|
|
2196
|
+
unicode: 'U+1F1F2 U+1F1F1',
|
|
2197
|
+
image:
|
|
2198
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ML.svg',
|
|
2199
|
+
},
|
|
2200
|
+
MM: {
|
|
2201
|
+
name: 'Myanmar (Burma)',
|
|
2202
|
+
emoji: '🇲🇲',
|
|
2203
|
+
unicode: 'U+1F1F2 U+1F1F2',
|
|
2204
|
+
image:
|
|
2205
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MM.svg',
|
|
2206
|
+
},
|
|
2207
|
+
MN: {
|
|
2208
|
+
name: 'Mongolia',
|
|
2209
|
+
emoji: '🇲🇳',
|
|
2210
|
+
unicode: 'U+1F1F2 U+1F1F3',
|
|
2211
|
+
image:
|
|
2212
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MN.svg',
|
|
2213
|
+
},
|
|
2214
|
+
MO: {
|
|
2215
|
+
name: 'Macao SAR China',
|
|
2216
|
+
emoji: '🇲🇴',
|
|
2217
|
+
unicode: 'U+1F1F2 U+1F1F4',
|
|
2218
|
+
image:
|
|
2219
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MO.svg',
|
|
2220
|
+
},
|
|
2221
|
+
MP: {
|
|
2222
|
+
name: 'Northern Mariana Islands',
|
|
2223
|
+
emoji: '🇲🇵',
|
|
2224
|
+
unicode: 'U+1F1F2 U+1F1F5',
|
|
2225
|
+
image:
|
|
2226
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MP.svg',
|
|
2227
|
+
},
|
|
2228
|
+
MQ: {
|
|
2229
|
+
name: 'Martinique',
|
|
2230
|
+
emoji: '🇲🇶',
|
|
2231
|
+
unicode: 'U+1F1F2 U+1F1F6',
|
|
2232
|
+
image:
|
|
2233
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MQ.svg',
|
|
2234
|
+
},
|
|
2235
|
+
MR: {
|
|
2236
|
+
name: 'Mauritania',
|
|
2237
|
+
emoji: '🇲🇷',
|
|
2238
|
+
unicode: 'U+1F1F2 U+1F1F7',
|
|
2239
|
+
image:
|
|
2240
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MR.svg',
|
|
2241
|
+
},
|
|
2242
|
+
MS: {
|
|
2243
|
+
name: 'Montserrat',
|
|
2244
|
+
emoji: '🇲🇸',
|
|
2245
|
+
unicode: 'U+1F1F2 U+1F1F8',
|
|
2246
|
+
image:
|
|
2247
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MS.svg',
|
|
2248
|
+
},
|
|
2249
|
+
MT: {
|
|
2250
|
+
name: 'Malta',
|
|
2251
|
+
emoji: '🇲🇹',
|
|
2252
|
+
unicode: 'U+1F1F2 U+1F1F9',
|
|
2253
|
+
image:
|
|
2254
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MT.svg',
|
|
2255
|
+
},
|
|
2256
|
+
MU: {
|
|
2257
|
+
name: 'Mauritius',
|
|
2258
|
+
emoji: '🇲🇺',
|
|
2259
|
+
unicode: 'U+1F1F2 U+1F1FA',
|
|
2260
|
+
image:
|
|
2261
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MU.svg',
|
|
2262
|
+
},
|
|
2263
|
+
MV: {
|
|
2264
|
+
name: 'Maldives',
|
|
2265
|
+
emoji: '🇲🇻',
|
|
2266
|
+
unicode: 'U+1F1F2 U+1F1FB',
|
|
2267
|
+
image:
|
|
2268
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MV.svg',
|
|
2269
|
+
},
|
|
2270
|
+
MW: {
|
|
2271
|
+
name: 'Malawi',
|
|
2272
|
+
emoji: '🇲🇼',
|
|
2273
|
+
unicode: 'U+1F1F2 U+1F1FC',
|
|
2274
|
+
image:
|
|
2275
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MW.svg',
|
|
2276
|
+
},
|
|
2277
|
+
MX: {
|
|
2278
|
+
name: 'Mexico',
|
|
2279
|
+
emoji: '🇲🇽',
|
|
2280
|
+
unicode: 'U+1F1F2 U+1F1FD',
|
|
2281
|
+
image:
|
|
2282
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MX.svg',
|
|
2283
|
+
},
|
|
2284
|
+
MY: {
|
|
2285
|
+
name: 'Malaysia',
|
|
2286
|
+
emoji: '🇲🇾',
|
|
2287
|
+
unicode: 'U+1F1F2 U+1F1FE',
|
|
2288
|
+
image:
|
|
2289
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MY.svg',
|
|
2290
|
+
},
|
|
2291
|
+
MZ: {
|
|
2292
|
+
name: 'Mozambique',
|
|
2293
|
+
emoji: '🇲🇿',
|
|
2294
|
+
unicode: 'U+1F1F2 U+1F1FF',
|
|
2295
|
+
image:
|
|
2296
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/MZ.svg',
|
|
2297
|
+
},
|
|
2298
|
+
NA: {
|
|
2299
|
+
name: 'Namibia',
|
|
2300
|
+
emoji: '🇳🇦',
|
|
2301
|
+
unicode: 'U+1F1F3 U+1F1E6',
|
|
2302
|
+
image:
|
|
2303
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NA.svg',
|
|
2304
|
+
},
|
|
2305
|
+
NC: {
|
|
2306
|
+
name: 'New Caledonia',
|
|
2307
|
+
emoji: '🇳🇨',
|
|
2308
|
+
unicode: 'U+1F1F3 U+1F1E8',
|
|
2309
|
+
image:
|
|
2310
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NC.svg',
|
|
2311
|
+
},
|
|
2312
|
+
NE: {
|
|
2313
|
+
name: 'Niger',
|
|
2314
|
+
emoji: '🇳🇪',
|
|
2315
|
+
unicode: 'U+1F1F3 U+1F1EA',
|
|
2316
|
+
image:
|
|
2317
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NE.svg',
|
|
2318
|
+
},
|
|
2319
|
+
NF: {
|
|
2320
|
+
name: 'Norfolk Island',
|
|
2321
|
+
emoji: '🇳🇫',
|
|
2322
|
+
unicode: 'U+1F1F3 U+1F1EB',
|
|
2323
|
+
image:
|
|
2324
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NF.svg',
|
|
2325
|
+
},
|
|
2326
|
+
NG: {
|
|
2327
|
+
name: 'Nigeria',
|
|
2328
|
+
emoji: '🇳🇬',
|
|
2329
|
+
unicode: 'U+1F1F3 U+1F1EC',
|
|
2330
|
+
image:
|
|
2331
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NG.svg',
|
|
2332
|
+
},
|
|
2333
|
+
NI: {
|
|
2334
|
+
name: 'Nicaragua',
|
|
2335
|
+
emoji: '🇳🇮',
|
|
2336
|
+
unicode: 'U+1F1F3 U+1F1EE',
|
|
2337
|
+
image:
|
|
2338
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NI.svg',
|
|
2339
|
+
},
|
|
2340
|
+
NL: {
|
|
2341
|
+
name: 'Netherlands',
|
|
2342
|
+
emoji: '🇳🇱',
|
|
2343
|
+
unicode: 'U+1F1F3 U+1F1F1',
|
|
2344
|
+
image:
|
|
2345
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NL.svg',
|
|
2346
|
+
},
|
|
2347
|
+
NO: {
|
|
2348
|
+
name: 'Norway',
|
|
2349
|
+
emoji: '🇳🇴',
|
|
2350
|
+
unicode: 'U+1F1F3 U+1F1F4',
|
|
2351
|
+
image:
|
|
2352
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NO.svg',
|
|
2353
|
+
},
|
|
2354
|
+
NP: {
|
|
2355
|
+
name: 'Nepal',
|
|
2356
|
+
emoji: '🇳🇵',
|
|
2357
|
+
unicode: 'U+1F1F3 U+1F1F5',
|
|
2358
|
+
image:
|
|
2359
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NP.svg',
|
|
2360
|
+
},
|
|
2361
|
+
NR: {
|
|
2362
|
+
name: 'Nauru',
|
|
2363
|
+
emoji: '🇳🇷',
|
|
2364
|
+
unicode: 'U+1F1F3 U+1F1F7',
|
|
2365
|
+
image:
|
|
2366
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NR.svg',
|
|
2367
|
+
},
|
|
2368
|
+
NU: {
|
|
2369
|
+
name: 'Niue',
|
|
2370
|
+
emoji: '🇳🇺',
|
|
2371
|
+
unicode: 'U+1F1F3 U+1F1FA',
|
|
2372
|
+
image:
|
|
2373
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NU.svg',
|
|
2374
|
+
},
|
|
2375
|
+
NZ: {
|
|
2376
|
+
name: 'New Zealand',
|
|
2377
|
+
emoji: '🇳🇿',
|
|
2378
|
+
unicode: 'U+1F1F3 U+1F1FF',
|
|
2379
|
+
image:
|
|
2380
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/NZ.svg',
|
|
2381
|
+
},
|
|
2382
|
+
OM: {
|
|
2383
|
+
name: 'Oman',
|
|
2384
|
+
emoji: '🇴🇲',
|
|
2385
|
+
unicode: 'U+1F1F4 U+1F1F2',
|
|
2386
|
+
image:
|
|
2387
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/OM.svg',
|
|
2388
|
+
},
|
|
2389
|
+
PA: {
|
|
2390
|
+
name: 'Panama',
|
|
2391
|
+
emoji: '🇵🇦',
|
|
2392
|
+
unicode: 'U+1F1F5 U+1F1E6',
|
|
2393
|
+
image:
|
|
2394
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PA.svg',
|
|
2395
|
+
},
|
|
2396
|
+
PE: {
|
|
2397
|
+
name: 'Peru',
|
|
2398
|
+
emoji: '🇵🇪',
|
|
2399
|
+
unicode: 'U+1F1F5 U+1F1EA',
|
|
2400
|
+
image:
|
|
2401
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PE.svg',
|
|
2402
|
+
},
|
|
2403
|
+
PF: {
|
|
2404
|
+
name: 'French Polynesia',
|
|
2405
|
+
emoji: '🇵🇫',
|
|
2406
|
+
unicode: 'U+1F1F5 U+1F1EB',
|
|
2407
|
+
image:
|
|
2408
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PF.svg',
|
|
2409
|
+
},
|
|
2410
|
+
PG: {
|
|
2411
|
+
name: 'Papua New Guinea',
|
|
2412
|
+
emoji: '🇵🇬',
|
|
2413
|
+
unicode: 'U+1F1F5 U+1F1EC',
|
|
2414
|
+
image:
|
|
2415
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PG.svg',
|
|
2416
|
+
},
|
|
2417
|
+
PH: {
|
|
2418
|
+
name: 'Philippines',
|
|
2419
|
+
emoji: '🇵🇭',
|
|
2420
|
+
unicode: 'U+1F1F5 U+1F1ED',
|
|
2421
|
+
image:
|
|
2422
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PH.svg',
|
|
2423
|
+
},
|
|
2424
|
+
PK: {
|
|
2425
|
+
name: 'Pakistan',
|
|
2426
|
+
emoji: '🇵🇰',
|
|
2427
|
+
unicode: 'U+1F1F5 U+1F1F0',
|
|
2428
|
+
image:
|
|
2429
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PK.svg',
|
|
2430
|
+
},
|
|
2431
|
+
PL: {
|
|
2432
|
+
name: 'Poland',
|
|
2433
|
+
emoji: '🇵🇱',
|
|
2434
|
+
unicode: 'U+1F1F5 U+1F1F1',
|
|
2435
|
+
image:
|
|
2436
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PL.svg',
|
|
2437
|
+
},
|
|
2438
|
+
PM: {
|
|
2439
|
+
name: 'St. Pierre & Miquelon',
|
|
2440
|
+
emoji: '🇵🇲',
|
|
2441
|
+
unicode: 'U+1F1F5 U+1F1F2',
|
|
2442
|
+
image:
|
|
2443
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PM.svg',
|
|
2444
|
+
},
|
|
2445
|
+
PN: {
|
|
2446
|
+
name: 'Pitcairn Islands',
|
|
2447
|
+
emoji: '🇵🇳',
|
|
2448
|
+
unicode: 'U+1F1F5 U+1F1F3',
|
|
2449
|
+
image:
|
|
2450
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PN.svg',
|
|
2451
|
+
},
|
|
2452
|
+
PR: {
|
|
2453
|
+
name: 'Puerto Rico',
|
|
2454
|
+
emoji: '🇵🇷',
|
|
2455
|
+
unicode: 'U+1F1F5 U+1F1F7',
|
|
2456
|
+
image:
|
|
2457
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PR.svg',
|
|
2458
|
+
},
|
|
2459
|
+
PS: {
|
|
2460
|
+
name: 'Palestinian Territories',
|
|
2461
|
+
emoji: '🇵🇸',
|
|
2462
|
+
unicode: 'U+1F1F5 U+1F1F8',
|
|
2463
|
+
image:
|
|
2464
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PS.svg',
|
|
2465
|
+
},
|
|
2466
|
+
PT: {
|
|
2467
|
+
name: 'Portugal',
|
|
2468
|
+
emoji: '🇵🇹',
|
|
2469
|
+
unicode: 'U+1F1F5 U+1F1F9',
|
|
2470
|
+
image:
|
|
2471
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PT.svg',
|
|
2472
|
+
},
|
|
2473
|
+
PW: {
|
|
2474
|
+
name: 'Palau',
|
|
2475
|
+
emoji: '🇵🇼',
|
|
2476
|
+
unicode: 'U+1F1F5 U+1F1FC',
|
|
2477
|
+
image:
|
|
2478
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PW.svg',
|
|
2479
|
+
},
|
|
2480
|
+
PY: {
|
|
2481
|
+
name: 'Paraguay',
|
|
2482
|
+
emoji: '🇵🇾',
|
|
2483
|
+
unicode: 'U+1F1F5 U+1F1FE',
|
|
2484
|
+
image:
|
|
2485
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/PY.svg',
|
|
2486
|
+
},
|
|
2487
|
+
QA: {
|
|
2488
|
+
name: 'Qatar',
|
|
2489
|
+
emoji: '🇶🇦',
|
|
2490
|
+
unicode: 'U+1F1F6 U+1F1E6',
|
|
2491
|
+
image:
|
|
2492
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/QA.svg',
|
|
2493
|
+
},
|
|
2494
|
+
RE: {
|
|
2495
|
+
name: 'Réunion',
|
|
2496
|
+
emoji: '🇷🇪',
|
|
2497
|
+
unicode: 'U+1F1F7 U+1F1EA',
|
|
2498
|
+
image:
|
|
2499
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RE.svg',
|
|
2500
|
+
},
|
|
2501
|
+
RO: {
|
|
2502
|
+
name: 'Romania',
|
|
2503
|
+
emoji: '🇷🇴',
|
|
2504
|
+
unicode: 'U+1F1F7 U+1F1F4',
|
|
2505
|
+
image:
|
|
2506
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RO.svg',
|
|
2507
|
+
},
|
|
2508
|
+
RS: {
|
|
2509
|
+
name: 'Serbia',
|
|
2510
|
+
emoji: '🇷🇸',
|
|
2511
|
+
unicode: 'U+1F1F7 U+1F1F8',
|
|
2512
|
+
image:
|
|
2513
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RS.svg',
|
|
2514
|
+
},
|
|
2515
|
+
RU: {
|
|
2516
|
+
name: 'Russia',
|
|
2517
|
+
emoji: '🇷🇺',
|
|
2518
|
+
unicode: 'U+1F1F7 U+1F1FA',
|
|
2519
|
+
image:
|
|
2520
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RU.svg',
|
|
2521
|
+
},
|
|
2522
|
+
RW: {
|
|
2523
|
+
name: 'Rwanda',
|
|
2524
|
+
emoji: '🇷🇼',
|
|
2525
|
+
unicode: 'U+1F1F7 U+1F1FC',
|
|
2526
|
+
image:
|
|
2527
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/RW.svg',
|
|
2528
|
+
},
|
|
2529
|
+
SA: {
|
|
2530
|
+
name: 'Saudi Arabia',
|
|
2531
|
+
emoji: '🇸🇦',
|
|
2532
|
+
unicode: 'U+1F1F8 U+1F1E6',
|
|
2533
|
+
image:
|
|
2534
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SA.svg',
|
|
2535
|
+
},
|
|
2536
|
+
SB: {
|
|
2537
|
+
name: 'Solomon Islands',
|
|
2538
|
+
emoji: '🇸🇧',
|
|
2539
|
+
unicode: 'U+1F1F8 U+1F1E7',
|
|
2540
|
+
image:
|
|
2541
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SB.svg',
|
|
2542
|
+
},
|
|
2543
|
+
SC: {
|
|
2544
|
+
name: 'Seychelles',
|
|
2545
|
+
emoji: '🇸🇨',
|
|
2546
|
+
unicode: 'U+1F1F8 U+1F1E8',
|
|
2547
|
+
image:
|
|
2548
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SC.svg',
|
|
2549
|
+
},
|
|
2550
|
+
SD: {
|
|
2551
|
+
name: 'Sudan',
|
|
2552
|
+
emoji: '🇸🇩',
|
|
2553
|
+
unicode: 'U+1F1F8 U+1F1E9',
|
|
2554
|
+
image:
|
|
2555
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SD.svg',
|
|
2556
|
+
},
|
|
2557
|
+
SE: {
|
|
2558
|
+
name: 'Sweden',
|
|
2559
|
+
emoji: '🇸🇪',
|
|
2560
|
+
unicode: 'U+1F1F8 U+1F1EA',
|
|
2561
|
+
image:
|
|
2562
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SE.svg',
|
|
2563
|
+
},
|
|
2564
|
+
SG: {
|
|
2565
|
+
name: 'Singapore',
|
|
2566
|
+
emoji: '🇸🇬',
|
|
2567
|
+
unicode: 'U+1F1F8 U+1F1EC',
|
|
2568
|
+
image:
|
|
2569
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SG.svg',
|
|
2570
|
+
},
|
|
2571
|
+
SH: {
|
|
2572
|
+
name: 'St. Helena',
|
|
2573
|
+
emoji: '🇸🇭',
|
|
2574
|
+
unicode: 'U+1F1F8 U+1F1ED',
|
|
2575
|
+
image:
|
|
2576
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SH.svg',
|
|
2577
|
+
},
|
|
2578
|
+
SI: {
|
|
2579
|
+
name: 'Slovenia',
|
|
2580
|
+
emoji: '🇸🇮',
|
|
2581
|
+
unicode: 'U+1F1F8 U+1F1EE',
|
|
2582
|
+
image:
|
|
2583
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SI.svg',
|
|
2584
|
+
},
|
|
2585
|
+
SJ: {
|
|
2586
|
+
name: 'Svalbard & Jan Mayen',
|
|
2587
|
+
emoji: '🇸🇯',
|
|
2588
|
+
unicode: 'U+1F1F8 U+1F1EF',
|
|
2589
|
+
image:
|
|
2590
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SJ.svg',
|
|
2591
|
+
},
|
|
2592
|
+
SK: {
|
|
2593
|
+
name: 'Slovakia',
|
|
2594
|
+
emoji: '🇸🇰',
|
|
2595
|
+
unicode: 'U+1F1F8 U+1F1F0',
|
|
2596
|
+
image:
|
|
2597
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SK.svg',
|
|
2598
|
+
},
|
|
2599
|
+
SL: {
|
|
2600
|
+
name: 'Sierra Leone',
|
|
2601
|
+
emoji: '🇸🇱',
|
|
2602
|
+
unicode: 'U+1F1F8 U+1F1F1',
|
|
2603
|
+
image:
|
|
2604
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SL.svg',
|
|
2605
|
+
},
|
|
2606
|
+
SM: {
|
|
2607
|
+
name: 'San Marino',
|
|
2608
|
+
emoji: '🇸🇲',
|
|
2609
|
+
unicode: 'U+1F1F8 U+1F1F2',
|
|
2610
|
+
image:
|
|
2611
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SM.svg',
|
|
2612
|
+
},
|
|
2613
|
+
SN: {
|
|
2614
|
+
name: 'Senegal',
|
|
2615
|
+
emoji: '🇸🇳',
|
|
2616
|
+
unicode: 'U+1F1F8 U+1F1F3',
|
|
2617
|
+
image:
|
|
2618
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SN.svg',
|
|
2619
|
+
},
|
|
2620
|
+
SO: {
|
|
2621
|
+
name: 'Somalia',
|
|
2622
|
+
emoji: '🇸🇴',
|
|
2623
|
+
unicode: 'U+1F1F8 U+1F1F4',
|
|
2624
|
+
image:
|
|
2625
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SO.svg',
|
|
2626
|
+
},
|
|
2627
|
+
SR: {
|
|
2628
|
+
name: 'Suriname',
|
|
2629
|
+
emoji: '🇸🇷',
|
|
2630
|
+
unicode: 'U+1F1F8 U+1F1F7',
|
|
2631
|
+
image:
|
|
2632
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SR.svg',
|
|
2633
|
+
},
|
|
2634
|
+
SS: {
|
|
2635
|
+
name: 'South Sudan',
|
|
2636
|
+
emoji: '🇸🇸',
|
|
2637
|
+
unicode: 'U+1F1F8 U+1F1F8',
|
|
2638
|
+
image:
|
|
2639
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SS.svg',
|
|
2640
|
+
},
|
|
2641
|
+
ST: {
|
|
2642
|
+
name: 'São Tomé & Príncipe',
|
|
2643
|
+
emoji: '🇸🇹',
|
|
2644
|
+
unicode: 'U+1F1F8 U+1F1F9',
|
|
2645
|
+
image:
|
|
2646
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ST.svg',
|
|
2647
|
+
},
|
|
2648
|
+
SV: {
|
|
2649
|
+
name: 'El Salvador',
|
|
2650
|
+
emoji: '🇸🇻',
|
|
2651
|
+
unicode: 'U+1F1F8 U+1F1FB',
|
|
2652
|
+
image:
|
|
2653
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SV.svg',
|
|
2654
|
+
},
|
|
2655
|
+
SX: {
|
|
2656
|
+
name: 'Sint Maarten',
|
|
2657
|
+
emoji: '🇸🇽',
|
|
2658
|
+
unicode: 'U+1F1F8 U+1F1FD',
|
|
2659
|
+
image:
|
|
2660
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SX.svg',
|
|
2661
|
+
},
|
|
2662
|
+
SY: {
|
|
2663
|
+
name: 'Syria',
|
|
2664
|
+
emoji: '🇸🇾',
|
|
2665
|
+
unicode: 'U+1F1F8 U+1F1FE',
|
|
2666
|
+
image:
|
|
2667
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SY.svg',
|
|
2668
|
+
},
|
|
2669
|
+
SZ: {
|
|
2670
|
+
name: 'Eswatini',
|
|
2671
|
+
emoji: '🇸🇿',
|
|
2672
|
+
unicode: 'U+1F1F8 U+1F1FF',
|
|
2673
|
+
image:
|
|
2674
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SZ.svg',
|
|
2675
|
+
},
|
|
2676
|
+
TA: {
|
|
2677
|
+
name: 'Tristan da Cunha',
|
|
2678
|
+
emoji: '🇹🇦',
|
|
2679
|
+
unicode: 'U+1F1F9 U+1F1E6',
|
|
2680
|
+
image:
|
|
2681
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TA.svg',
|
|
2682
|
+
},
|
|
2683
|
+
TC: {
|
|
2684
|
+
name: 'Turks & Caicos Islands',
|
|
2685
|
+
emoji: '🇹🇨',
|
|
2686
|
+
unicode: 'U+1F1F9 U+1F1E8',
|
|
2687
|
+
image:
|
|
2688
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TC.svg',
|
|
2689
|
+
},
|
|
2690
|
+
TD: {
|
|
2691
|
+
name: 'Chad',
|
|
2692
|
+
emoji: '🇹🇩',
|
|
2693
|
+
unicode: 'U+1F1F9 U+1F1E9',
|
|
2694
|
+
image:
|
|
2695
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TD.svg',
|
|
2696
|
+
},
|
|
2697
|
+
TF: {
|
|
2698
|
+
name: 'French Southern Territories',
|
|
2699
|
+
emoji: '🇹🇫',
|
|
2700
|
+
unicode: 'U+1F1F9 U+1F1EB',
|
|
2701
|
+
image:
|
|
2702
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TF.svg',
|
|
2703
|
+
},
|
|
2704
|
+
TG: {
|
|
2705
|
+
name: 'Togo',
|
|
2706
|
+
emoji: '🇹🇬',
|
|
2707
|
+
unicode: 'U+1F1F9 U+1F1EC',
|
|
2708
|
+
image:
|
|
2709
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TG.svg',
|
|
2710
|
+
},
|
|
2711
|
+
TH: {
|
|
2712
|
+
name: 'Thailand',
|
|
2713
|
+
emoji: '🇹🇭',
|
|
2714
|
+
unicode: 'U+1F1F9 U+1F1ED',
|
|
2715
|
+
image:
|
|
2716
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TH.svg',
|
|
2717
|
+
},
|
|
2718
|
+
TJ: {
|
|
2719
|
+
name: 'Tajikistan',
|
|
2720
|
+
emoji: '🇹🇯',
|
|
2721
|
+
unicode: 'U+1F1F9 U+1F1EF',
|
|
2722
|
+
image:
|
|
2723
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TJ.svg',
|
|
2724
|
+
},
|
|
2725
|
+
TK: {
|
|
2726
|
+
name: 'Tokelau',
|
|
2727
|
+
emoji: '🇹🇰',
|
|
2728
|
+
unicode: 'U+1F1F9 U+1F1F0',
|
|
2729
|
+
image:
|
|
2730
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TK.svg',
|
|
2731
|
+
},
|
|
2732
|
+
TL: {
|
|
2733
|
+
name: 'Timor-Leste',
|
|
2734
|
+
emoji: '🇹🇱',
|
|
2735
|
+
unicode: 'U+1F1F9 U+1F1F1',
|
|
2736
|
+
image:
|
|
2737
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TL.svg',
|
|
2738
|
+
},
|
|
2739
|
+
TM: {
|
|
2740
|
+
name: 'Turkmenistan',
|
|
2741
|
+
emoji: '🇹🇲',
|
|
2742
|
+
unicode: 'U+1F1F9 U+1F1F2',
|
|
2743
|
+
image:
|
|
2744
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TM.svg',
|
|
2745
|
+
},
|
|
2746
|
+
TN: {
|
|
2747
|
+
name: 'Tunisia',
|
|
2748
|
+
emoji: '🇹🇳',
|
|
2749
|
+
unicode: 'U+1F1F9 U+1F1F3',
|
|
2750
|
+
image:
|
|
2751
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TN.svg',
|
|
2752
|
+
},
|
|
2753
|
+
TO: {
|
|
2754
|
+
name: 'Tonga',
|
|
2755
|
+
emoji: '🇹🇴',
|
|
2756
|
+
unicode: 'U+1F1F9 U+1F1F4',
|
|
2757
|
+
image:
|
|
2758
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TO.svg',
|
|
2759
|
+
},
|
|
2760
|
+
TR: {
|
|
2761
|
+
name: 'Turkey',
|
|
2762
|
+
emoji: '🇹🇷',
|
|
2763
|
+
unicode: 'U+1F1F9 U+1F1F7',
|
|
2764
|
+
image:
|
|
2765
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TR.svg',
|
|
2766
|
+
},
|
|
2767
|
+
TT: {
|
|
2768
|
+
name: 'Trinidad & Tobago',
|
|
2769
|
+
emoji: '🇹🇹',
|
|
2770
|
+
unicode: 'U+1F1F9 U+1F1F9',
|
|
2771
|
+
image:
|
|
2772
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TT.svg',
|
|
2773
|
+
},
|
|
2774
|
+
TV: {
|
|
2775
|
+
name: 'Tuvalu',
|
|
2776
|
+
emoji: '🇹🇻',
|
|
2777
|
+
unicode: 'U+1F1F9 U+1F1FB',
|
|
2778
|
+
image:
|
|
2779
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TV.svg',
|
|
2780
|
+
},
|
|
2781
|
+
TW: {
|
|
2782
|
+
name: 'Taiwan',
|
|
2783
|
+
emoji: '🇹🇼',
|
|
2784
|
+
unicode: 'U+1F1F9 U+1F1FC',
|
|
2785
|
+
image:
|
|
2786
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TW.svg',
|
|
2787
|
+
},
|
|
2788
|
+
TZ: {
|
|
2789
|
+
name: 'Tanzania',
|
|
2790
|
+
emoji: '🇹🇿',
|
|
2791
|
+
unicode: 'U+1F1F9 U+1F1FF',
|
|
2792
|
+
image:
|
|
2793
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/TZ.svg',
|
|
2794
|
+
},
|
|
2795
|
+
UA: {
|
|
2796
|
+
name: 'Ukraine',
|
|
2797
|
+
emoji: '🇺🇦',
|
|
2798
|
+
unicode: 'U+1F1FA U+1F1E6',
|
|
2799
|
+
image:
|
|
2800
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UA.svg',
|
|
2801
|
+
},
|
|
2802
|
+
UG: {
|
|
2803
|
+
name: 'Uganda',
|
|
2804
|
+
emoji: '🇺🇬',
|
|
2805
|
+
unicode: 'U+1F1FA U+1F1EC',
|
|
2806
|
+
image:
|
|
2807
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UG.svg',
|
|
2808
|
+
},
|
|
2809
|
+
UM: {
|
|
2810
|
+
name: 'U.S. Outlying Islands',
|
|
2811
|
+
emoji: '🇺🇲',
|
|
2812
|
+
unicode: 'U+1F1FA U+1F1F2',
|
|
2813
|
+
image:
|
|
2814
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UM.svg',
|
|
2815
|
+
},
|
|
2816
|
+
UN: {
|
|
2817
|
+
name: 'United Nations',
|
|
2818
|
+
emoji: '🇺🇳',
|
|
2819
|
+
unicode: 'U+1F1FA U+1F1F3',
|
|
2820
|
+
image:
|
|
2821
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UN.svg',
|
|
2822
|
+
},
|
|
2823
|
+
US: {
|
|
2824
|
+
name: 'United States',
|
|
2825
|
+
emoji: '🇺🇸',
|
|
2826
|
+
unicode: 'U+1F1FA U+1F1F8',
|
|
2827
|
+
image:
|
|
2828
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/US.svg',
|
|
2829
|
+
},
|
|
2830
|
+
UY: {
|
|
2831
|
+
name: 'Uruguay',
|
|
2832
|
+
emoji: '🇺🇾',
|
|
2833
|
+
unicode: 'U+1F1FA U+1F1FE',
|
|
2834
|
+
image:
|
|
2835
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UY.svg',
|
|
2836
|
+
},
|
|
2837
|
+
UZ: {
|
|
2838
|
+
name: 'Uzbekistan',
|
|
2839
|
+
emoji: '🇺🇿',
|
|
2840
|
+
unicode: 'U+1F1FA U+1F1FF',
|
|
2841
|
+
image:
|
|
2842
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/UZ.svg',
|
|
2843
|
+
},
|
|
2844
|
+
VA: {
|
|
2845
|
+
name: 'Vatican City',
|
|
2846
|
+
emoji: '🇻🇦',
|
|
2847
|
+
unicode: 'U+1F1FB U+1F1E6',
|
|
2848
|
+
image:
|
|
2849
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VA.svg',
|
|
2850
|
+
},
|
|
2851
|
+
VC: {
|
|
2852
|
+
name: 'St. Vincent & Grenadines',
|
|
2853
|
+
emoji: '🇻🇨',
|
|
2854
|
+
unicode: 'U+1F1FB U+1F1E8',
|
|
2855
|
+
image:
|
|
2856
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VC.svg',
|
|
2857
|
+
},
|
|
2858
|
+
VE: {
|
|
2859
|
+
name: 'Venezuela',
|
|
2860
|
+
emoji: '🇻🇪',
|
|
2861
|
+
unicode: 'U+1F1FB U+1F1EA',
|
|
2862
|
+
image:
|
|
2863
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VE.svg',
|
|
2864
|
+
},
|
|
2865
|
+
VG: {
|
|
2866
|
+
name: 'British Virgin Islands',
|
|
2867
|
+
emoji: '🇻🇬',
|
|
2868
|
+
unicode: 'U+1F1FB U+1F1EC',
|
|
2869
|
+
image:
|
|
2870
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VG.svg',
|
|
2871
|
+
},
|
|
2872
|
+
VI: {
|
|
2873
|
+
name: 'U.S. Virgin Islands',
|
|
2874
|
+
emoji: '🇻🇮',
|
|
2875
|
+
unicode: 'U+1F1FB U+1F1EE',
|
|
2876
|
+
image:
|
|
2877
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VI.svg',
|
|
2878
|
+
},
|
|
2879
|
+
VN: {
|
|
2880
|
+
name: 'Vietnam',
|
|
2881
|
+
emoji: '🇻🇳',
|
|
2882
|
+
unicode: 'U+1F1FB U+1F1F3',
|
|
2883
|
+
image:
|
|
2884
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VN.svg',
|
|
2885
|
+
},
|
|
2886
|
+
VU: {
|
|
2887
|
+
name: 'Vanuatu',
|
|
2888
|
+
emoji: '🇻🇺',
|
|
2889
|
+
unicode: 'U+1F1FB U+1F1FA',
|
|
2890
|
+
image:
|
|
2891
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/VU.svg',
|
|
2892
|
+
},
|
|
2893
|
+
WF: {
|
|
2894
|
+
name: 'Wallis & Futuna',
|
|
2895
|
+
emoji: '🇼🇫',
|
|
2896
|
+
unicode: 'U+1F1FC U+1F1EB',
|
|
2897
|
+
image:
|
|
2898
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/WF.svg',
|
|
2899
|
+
},
|
|
2900
|
+
WS: {
|
|
2901
|
+
name: 'Samoa',
|
|
2902
|
+
emoji: '🇼🇸',
|
|
2903
|
+
unicode: 'U+1F1FC U+1F1F8',
|
|
2904
|
+
image:
|
|
2905
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/WS.svg',
|
|
2906
|
+
},
|
|
2907
|
+
XK: {
|
|
2908
|
+
name: 'Kosovo',
|
|
2909
|
+
emoji: '🇽🇰',
|
|
2910
|
+
unicode: 'U+1F1FD U+1F1F0',
|
|
2911
|
+
image:
|
|
2912
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/XK.svg',
|
|
2913
|
+
},
|
|
2914
|
+
YE: {
|
|
2915
|
+
name: 'Yemen',
|
|
2916
|
+
emoji: '🇾🇪',
|
|
2917
|
+
unicode: 'U+1F1FE U+1F1EA',
|
|
2918
|
+
image:
|
|
2919
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/YE.svg',
|
|
2920
|
+
},
|
|
2921
|
+
YT: {
|
|
2922
|
+
name: 'Mayotte',
|
|
2923
|
+
emoji: '🇾🇹',
|
|
2924
|
+
unicode: 'U+1F1FE U+1F1F9',
|
|
2925
|
+
image:
|
|
2926
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/YT.svg',
|
|
2927
|
+
},
|
|
2928
|
+
ZA: {
|
|
2929
|
+
name: 'South Africa',
|
|
2930
|
+
emoji: '🇿🇦',
|
|
2931
|
+
unicode: 'U+1F1FF U+1F1E6',
|
|
2932
|
+
image:
|
|
2933
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZA.svg',
|
|
2934
|
+
},
|
|
2935
|
+
ZM: {
|
|
2936
|
+
name: 'Zambia',
|
|
2937
|
+
emoji: '🇿🇲',
|
|
2938
|
+
unicode: 'U+1F1FF U+1F1F2',
|
|
2939
|
+
image:
|
|
2940
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZM.svg',
|
|
2941
|
+
},
|
|
2942
|
+
ZW: {
|
|
2943
|
+
name: 'Zimbabwe',
|
|
2944
|
+
emoji: '🇿🇼',
|
|
2945
|
+
unicode: 'U+1F1FF U+1F1FC',
|
|
2946
|
+
image:
|
|
2947
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ZW.svg',
|
|
2948
|
+
},
|
|
2949
|
+
ENGLAND: {
|
|
2950
|
+
name: 'England',
|
|
2951
|
+
emoji: '🏴',
|
|
2952
|
+
unicode: 'U+1F3F4 U+E0067 U+E0062 U+E0065 U+E006E U+E0067 U+E007F',
|
|
2953
|
+
image:
|
|
2954
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/ENGLAND.svg',
|
|
2955
|
+
},
|
|
2956
|
+
SCOTLAND: {
|
|
2957
|
+
name: 'Scotland',
|
|
2958
|
+
emoji: '🏴',
|
|
2959
|
+
unicode: 'U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F',
|
|
2960
|
+
image:
|
|
2961
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/SCOTLAND.svg',
|
|
2962
|
+
},
|
|
2963
|
+
WALES: {
|
|
2964
|
+
name: 'Wales',
|
|
2965
|
+
emoji: '🏴',
|
|
2966
|
+
unicode: 'U+1F3F4 U+E0067 U+E0062 U+E0077 U+E006C U+E0073 U+E007F',
|
|
2967
|
+
image:
|
|
2968
|
+
'https://cdn.jsdelivr.net/npm/country-flag-emoji-json@2.0.0/dist/images/WALES.svg',
|
|
2969
|
+
},
|
|
2970
|
+
}
|