@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,32 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
export default function Order({
|
|
5
|
+
height = 12,
|
|
6
|
+
width = 12,
|
|
7
|
+
stroke,
|
|
8
|
+
color,
|
|
9
|
+
fill = '#fff',
|
|
10
|
+
style,
|
|
11
|
+
}: SvgProps) {
|
|
12
|
+
return (
|
|
13
|
+
<Svg
|
|
14
|
+
style={style}
|
|
15
|
+
width={width}
|
|
16
|
+
height={height}
|
|
17
|
+
stroke={stroke}
|
|
18
|
+
color={color}
|
|
19
|
+
fill={fill}
|
|
20
|
+
viewBox="0 0 18 20"
|
|
21
|
+
>
|
|
22
|
+
<Path
|
|
23
|
+
d="M10 1.5C10 0.947715 9.55228 0.5 9 0.5C8.44771 0.5 8 0.947715 8 1.5V9.08579L6.70711 7.79289C6.31658 7.40237 5.68342 7.40237 5.29289 7.79289C4.90237 8.18342 4.90237 8.81658 5.29289 9.20711L8.29289 12.2071C8.48042 12.3946 8.73478 12.5 9 12.5C9.26521 12.5 9.51957 12.3946 9.7071 12.2071L12.7071 9.20711C13.0976 8.81658 13.0976 8.18342 12.7071 7.79289C12.3166 7.40237 11.6834 7.40237 11.2929 7.79289L10 9.08578V1.5Z"
|
|
24
|
+
fill={fill}
|
|
25
|
+
/>
|
|
26
|
+
<Path
|
|
27
|
+
d="M2 14.5V3.5H6V1.5H1.5C0.671573 1.5 0 2.17157 0 3V18C0 18.8284 0.671573 19.5 1.5 19.5H16.5C17.3284 19.5 18 18.8284 18 18V3C18 2.17157 17.3284 1.5 16.5 1.5H12C12 2.16667 12 2.83333 12 3.5H16V14.5H12.5C11.7252 14.5 11.1123 15.1623 10.5742 15.7439C10.5369 15.7841 10.5 15.824 10.4634 15.8632C10.0983 16.255 9.57777 16.5 9 16.5C8.42223 16.5 7.90168 16.255 7.53657 15.8632C7.5 15.824 7.4631 15.7841 7.42584 15.7439C6.88768 15.1623 6.27479 14.5 5.5 14.5H2Z"
|
|
28
|
+
fill={fill}
|
|
29
|
+
/>
|
|
30
|
+
</Svg>
|
|
31
|
+
)
|
|
32
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
function PackageCheck({
|
|
5
|
+
height = 25,
|
|
6
|
+
width = 25,
|
|
7
|
+
color = '#000',
|
|
8
|
+
...props
|
|
9
|
+
}: SvgProps) {
|
|
10
|
+
return (
|
|
11
|
+
<Svg
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
width={width}
|
|
14
|
+
height={height}
|
|
15
|
+
viewBox="0 0 25 25"
|
|
16
|
+
fill="none"
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
d="M21 7.777L12.5 12.5m0 0L4 7.777m8.5 4.723V22m2-.611l-1.223.679c-.284.157-.425.236-.575.267a.998.998 0 01-.403 0c-.15-.03-.292-.11-.576-.267l-7.4-4.111c-.3-.167-.45-.25-.558-.368a1 1 0 01-.215-.364c-.05-.153-.05-.324-.05-.667V8.441c0-.343 0-.514.05-.667a1 1 0 01.215-.364c.109-.118.258-.201.558-.368l7.4-4.11c.284-.158.425-.237.576-.268a1 1 0 01.402 0c.15.03.292.11.576.267l7.4 4.111c.3.167.45.25.558.368a1 1 0 01.215.364c.05.153.05.324.05.667V13M8 5l9 5m-.5 8.5l2 2 4-4"
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export default PackageCheck
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
const PauseIcon = (props: SvgProps) => (
|
|
4
|
+
<Svg
|
|
5
|
+
viewBox="0 0 10 10"
|
|
6
|
+
width={props?.width || 10}
|
|
7
|
+
height={props?.height || 10}
|
|
8
|
+
fill="none"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<Path
|
|
12
|
+
fill={props.fill ?? '#000000'}
|
|
13
|
+
d="M7.5.833a.833.833 0 0 1 1.667 0v8.334a.833.833 0 0 1-1.667 0V.833Zm-6.667 0a.833.833 0 0 1 1.667 0v8.334a.833.833 0 1 1-1.667 0V.833Z"
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
export default PauseIcon
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const Pencil = ({ height, width, fill = '#171717' }: SvgProps) => (
|
|
5
|
+
<Svg width={width} height={height} viewBox="0 0 24 24" fill="none">
|
|
6
|
+
<Path
|
|
7
|
+
d="M17.8148 1.6828L22.317 6.18592L23.0678 5.4349C24.3108 4.19159 24.3108 2.17608 23.0678 0.932773C21.8244 -0.310924 19.8081 -0.310924 18.5647 0.932773L17.8148 1.6828Z"
|
|
8
|
+
fill={fill}
|
|
9
|
+
/>
|
|
10
|
+
<Path
|
|
11
|
+
d="M20.2498 8.24875L15.7477 3.74562L1.46147 18.0326L6.10352e-05 23.9974L5.9636 22.5357L20.2498 8.24875Z"
|
|
12
|
+
fill={fill}
|
|
13
|
+
/>
|
|
14
|
+
</Svg>
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
export default Pencil
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
function PercentCircle({
|
|
5
|
+
height = 25,
|
|
6
|
+
width = 25,
|
|
7
|
+
color = '#000',
|
|
8
|
+
...props
|
|
9
|
+
}: SvgProps) {
|
|
10
|
+
return (
|
|
11
|
+
<Svg
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
width={width}
|
|
14
|
+
height={height}
|
|
15
|
+
viewBox="0 0 25 25"
|
|
16
|
+
fill="none"
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
d="M9.5 9.5h.01m5.99 6h.01m.99-7l-8 8m1.5-7a.5.5 0 11-1 0 .5.5 0 011 0zm6 6a.5.5 0 11-1 0 .5.5 0 011 0zm6.5-3c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10 10 4.477 10 10z"
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export default PercentCircle
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const SvgComponent = (props: SvgProps) => (
|
|
5
|
+
<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M4 20.269V3.73L18.337 12 4 20.269Z"
|
|
8
|
+
stroke={props.stroke ?? props.color}
|
|
9
|
+
strokeWidth={2}
|
|
10
|
+
/>
|
|
11
|
+
</Svg>
|
|
12
|
+
)
|
|
13
|
+
export default SvgComponent
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function Plus({ height, width, fill = '#ffffff' }: SvgProps) {
|
|
4
|
+
return (
|
|
5
|
+
<Svg width={width} height={height} viewBox="0 0 14 14" fill="none">
|
|
6
|
+
<Path
|
|
7
|
+
d="M12.6 6.19998H7.8V1.39998C7.8 1.1878 7.71571 0.984319 7.56568 0.83429C7.41565 0.684261 7.21217 0.599976 7 0.599976C6.78783 0.599976 6.58434 0.684261 6.43431 0.83429C6.28428 0.984319 6.2 1.1878 6.2 1.39998V6.19998H1.4C1.18783 6.19998 0.984342 6.28426 0.834313 6.43429C0.684284 6.58432 0.599998 6.7878 0.599998 6.99998C0.599998 7.21215 0.684284 7.41563 0.834313 7.56566C0.984342 7.71569 1.18783 7.79998 1.4 7.79998H6.2V12.6C6.2 12.8121 6.28428 13.0156 6.43431 13.1657C6.58434 13.3157 6.78783 13.4 7 13.4C7.21217 13.4 7.41565 13.3157 7.56568 13.1657C7.71571 13.0156 7.8 12.8121 7.8 12.6V7.79998H12.6C12.8122 7.79998 13.0157 7.71569 13.1657 7.56566C13.3157 7.41563 13.4 7.21215 13.4 6.99998C13.4 6.7878 13.3157 6.58432 13.1657 6.43429C13.0157 6.28426 12.8122 6.19998 12.6 6.19998Z"
|
|
8
|
+
fill={fill}
|
|
9
|
+
/>
|
|
10
|
+
</Svg>
|
|
11
|
+
)
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const SvgComponent = (props: SvgProps) => (
|
|
5
|
+
<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M8.848 8.25a3.25 3.25 0 016.316 1.083c0 2.167-3.25 3.25-3.25 3.25M12 16.917h.011M22.834 11.5c0 5.983-4.85 10.833-10.834 10.833-5.983 0-10.833-4.85-10.833-10.833C1.167 5.517 6.017.667 12 .667c5.983 0 10.834 4.85 10.834 10.833z"
|
|
8
|
+
stroke="#000"
|
|
9
|
+
strokeLinecap="round"
|
|
10
|
+
strokeLinejoin="round"
|
|
11
|
+
/>
|
|
12
|
+
</Svg>
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
export default SvgComponent
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function Product({ height, width, fill = 'white' }: SvgProps) {
|
|
4
|
+
return (
|
|
5
|
+
<Svg width={width} height={height} viewBox="0 0 15 16" fill="none">
|
|
6
|
+
<Path
|
|
7
|
+
fill-rule="evenodd"
|
|
8
|
+
clip-rule="evenodd"
|
|
9
|
+
d="M7.7351 1.0343C7.88512 0.884273 8.08861 0.799988 8.30078 0.799988H13.9008C14.3426 0.799988 14.7008 1.15816 14.7008 1.59999V7.19999C14.7008 7.41216 14.6165 7.61564 14.4665 7.76567L7.26647 14.9657C6.95405 15.2781 6.44751 15.2781 6.1351 14.9657L0.535096 9.36567C0.222676 9.05325 0.222676 8.54672 0.535096 8.2343L7.7351 1.0343ZM11.9008 4.79999C12.5635 4.79999 13.1008 4.26273 13.1008 3.59999C13.1008 2.93725 12.5635 2.39999 11.9008 2.39999C11.238 2.39999 10.7008 2.93725 10.7008 3.59999C10.7008 4.26273 11.238 4.79999 11.9008 4.79999Z"
|
|
10
|
+
fill={fill}
|
|
11
|
+
/>
|
|
12
|
+
</Svg>
|
|
13
|
+
)
|
|
14
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const ProfileCircle = (props: SvgProps) => (
|
|
5
|
+
<Svg width={60} height={59} fill="none" viewBox="0 0 60 59" {...props}>
|
|
6
|
+
<Path d="M30 33.8125C36.3513 33.8125 41.5 28.6638 41.5 22.3125C41.5 15.9612 36.3513 10.8125 30 10.8125C23.6487 10.8125 18.5 15.9612 18.5 22.3125C18.5 28.6638 23.6487 33.8125 30 33.8125Z" />
|
|
7
|
+
<Path d="M30 58.25C45.8782 58.25 58.75 45.3782 58.75 29.5C58.75 13.6218 45.8782 0.75 30 0.75C14.1218 0.75 1.25 13.6218 1.25 29.5C1.25 45.3782 14.1218 58.25 30 58.25Z" />
|
|
8
|
+
<Path
|
|
9
|
+
d="M10.7843 50.8854C12.5333 46.765 16.6167 43.875 21.375 43.875H38.625C43.3833 43.875 47.4667 46.765 49.2156 50.8854M41.5 22.3125C41.5 28.6638 36.3513 33.8125 30 33.8125C23.6487 33.8125 18.5 28.6638 18.5 22.3125C18.5 15.9612 23.6487 10.8125 30 10.8125C36.3513 10.8125 41.5 15.9612 41.5 22.3125ZM58.75 29.5C58.75 45.3782 45.8782 58.25 30 58.25C14.1218 58.25 1.25 45.3782 1.25 29.5C1.25 13.6218 14.1218 0.75 30 0.75C45.8782 0.75 58.75 13.6218 58.75 29.5Z"
|
|
10
|
+
stroke-linecap="round"
|
|
11
|
+
stroke-linejoin="round"
|
|
12
|
+
/>
|
|
13
|
+
</Svg>
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
export default ProfileCircle
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
export default function ProfilePermission({
|
|
5
|
+
height = 16,
|
|
6
|
+
width = 19,
|
|
7
|
+
fill = '#ffffff',
|
|
8
|
+
}: SvgProps) {
|
|
9
|
+
return (
|
|
10
|
+
<Svg width={width} height={height} viewBox="0 0 16 19" fill="none">
|
|
11
|
+
<Path
|
|
12
|
+
d="M7.33317 11.6666V18.3333H0.666504C0.666504 16.5652 1.36888 14.8695 2.61913 13.6193C3.86937 12.369 5.56506 11.6666 7.33317 11.6666ZM7.33317 10.8333C4.57067 10.8333 2.33317 8.59581 2.33317 5.83331C2.33317 3.07081 4.57067 0.833313 7.33317 0.833313C10.0957 0.833313 12.3332 3.07081 12.3332 5.83331C12.3332 8.59581 10.0957 10.8333 7.33317 10.8333ZM9.49567 15.6766C9.39001 15.232 9.39001 14.7688 9.49567 14.3241L8.669 13.8466L9.50234 12.4033L10.329 12.8808C10.6608 12.5665 11.0619 12.3347 11.4998 12.2041V11.25H13.1665V12.2041C13.6098 12.3358 14.0098 12.5708 14.3373 12.8808L15.164 12.4033L15.9973 13.8466L15.1707 14.3241C15.2762 14.7685 15.2762 15.2314 15.1707 15.6758L15.9973 16.1533L15.164 17.5966L14.3373 17.1191C14.0055 17.4334 13.6045 17.6652 13.1665 17.7958V18.75H11.4998V17.7958C11.0619 17.6652 10.6608 17.4334 10.329 17.1191L9.50234 17.5966L8.669 16.1533L9.49567 15.6766ZM12.3332 14.1666C12.1122 14.1666 11.9002 14.2544 11.7439 14.4107C11.5876 14.567 11.4998 14.779 11.4998 15C11.4998 15.221 11.5876 15.433 11.7439 15.5892C11.9002 15.7455 12.1122 15.8333 12.3332 15.8333C12.5542 15.8333 12.7661 15.7455 12.9224 15.5892C13.0787 15.433 13.1665 15.221 13.1665 15C13.1665 14.779 13.0787 14.567 12.9224 14.4107C12.7661 14.2544 12.5542 14.1666 12.3332 14.1666Z"
|
|
13
|
+
fill={fill}
|
|
14
|
+
/>
|
|
15
|
+
</Svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Circle, Defs, Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function ProfileTabIcon(props: SvgProps) {
|
|
4
|
+
return (
|
|
5
|
+
<Svg fill={props.color} {...props}>
|
|
6
|
+
<Defs></Defs>
|
|
7
|
+
<Circle cx={16} cy={7.89} r={6.89} />
|
|
8
|
+
<Path d="M20.87 16.82h2.94c2.72 0 4.92 2.2 4.92 4.92V31H3.27v-9.26c0-2.72 2.2-4.92 4.92-4.92h2.72" />
|
|
9
|
+
</Svg>
|
|
10
|
+
)
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const SvgComponent = (props: SvgProps) => (
|
|
5
|
+
<Svg width={25} height={24} fill="none" viewBox="0 0 25 24" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M15.505 11.457H13.67a4.845 4.845 0 0 0 3.238-4.585A4.868 4.868 0 0 0 12.037 2a4.868 4.868 0 0 0-4.871 4.872 4.845 4.845 0 0 0 3.238 4.585H8.57a4.28 4.28 0 0 0-4.27 4.27v4.9c0 .315.258.573.573.573h14.328a.575.575 0 0 0 .574-.573v-4.9a4.28 4.28 0 0 0-4.27-4.27ZM8.312 6.872a3.718 3.718 0 0 1 3.725-3.726 3.718 3.718 0 0 1 3.725 3.726 3.718 3.718 0 0 1-3.725 3.725 3.718 3.718 0 0 1-3.725-3.725Zm10.316 13.182H5.446v-4.327a3.13 3.13 0 0 1 3.124-3.124h6.963a3.13 3.13 0 0 1 3.124 3.123v4.328h-.029Z"
|
|
8
|
+
fill={props.fill ?? props.color}
|
|
9
|
+
stroke={props.fill ?? props.color}
|
|
10
|
+
strokeWidth={0.75}
|
|
11
|
+
strokeMiterlimit={10}
|
|
12
|
+
/>
|
|
13
|
+
</Svg>
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
export default SvgComponent
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const SvgComponent = ({
|
|
5
|
+
height = 12,
|
|
6
|
+
width = 12,
|
|
7
|
+
stroke,
|
|
8
|
+
color,
|
|
9
|
+
fill = '#fff',
|
|
10
|
+
style,
|
|
11
|
+
}: SvgProps) => (
|
|
12
|
+
<Svg width={width} height={height} viewBox="0 0 24 24" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
d="M11.9993 5.49984V22.8332M11.9993 5.49984H8.16899C7.60462 5.49984 7.06336 5.27156 6.66429 4.86524C6.26521 4.45891 6.04102 3.90781 6.04102 3.33317C6.04102 2.75853 6.26521 2.20743 6.66429 1.80111C7.06336 1.39478 7.60462 1.1665 8.16899 1.1665C11.1482 1.1665 11.9993 5.49984 11.9993 5.49984ZM11.9993 5.49984H15.8297C16.3941 5.49984 16.9353 5.27156 17.3344 4.86524C17.7335 4.45891 17.9577 3.90781 17.9577 3.33317C17.9577 2.75853 17.7335 2.20743 17.3344 1.80111C16.9353 1.39478 16.3941 1.1665 15.8297 1.1665C12.8505 1.1665 11.9993 5.49984 11.9993 5.49984ZM20.666 10.9165V19.3665C20.666 20.58 20.666 21.1867 20.4299 21.6502C20.2221 22.0578 19.8907 22.3893 19.483 22.597C19.0195 22.8332 18.4128 22.8332 17.1993 22.8332L6.79935 22.8332C5.5859 22.8332 4.97918 22.8332 4.5157 22.597C4.10802 22.3893 3.77656 22.0578 3.56883 21.6501C3.33268 21.1867 3.33268 20.58 3.33268 19.3665V10.9165M1.16602 7.23317L1.16602 9.18317C1.16602 9.78989 1.16602 10.0933 1.28409 10.325C1.38795 10.5288 1.55368 10.6946 1.75753 10.7984C1.98926 10.9165 2.29263 10.9165 2.89935 10.9165L21.0994 10.9165C21.7061 10.9165 22.0094 10.9165 22.2412 10.7984C22.445 10.6946 22.6107 10.5288 22.7146 10.325C22.8327 10.0933 22.8327 9.78989 22.8327 9.18317V7.23317C22.8327 6.62645 22.8327 6.32309 22.7146 6.09135C22.6107 5.88751 22.445 5.72178 22.2412 5.61791C22.0094 5.49984 21.7061 5.49984 21.0993 5.49984L2.89935 5.49984C2.29263 5.49984 1.98926 5.49984 1.75753 5.61791C1.55368 5.72178 1.38795 5.88751 1.28409 6.09135C1.16602 6.32309 1.16602 6.62645 1.16602 7.23317Z"
|
|
15
|
+
stroke="black"
|
|
16
|
+
stroke-linecap="round"
|
|
17
|
+
stroke-linejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
export default SvgComponent
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { SvgProps, Path, Rect } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const SvgComponent = (props: SvgProps) => (
|
|
5
|
+
<Svg viewBox="0 0 16 16" width={16} height={16} {...props}>
|
|
6
|
+
<Path d="M8 10.049A4.524 4.524 0 1 1 8 1a4.524 4.524 0 0 1 0 9.048Zm0-8.146a3.62 3.62 0 1 0 0 7.242 3.62 3.62 0 0 0 0-7.242Zm-.61 2.824-1.365.208.988 1.012-.232 1.429L8 6.702l1.22.674-.233-1.43.988-1.011-1.365-.21L8 3.426l-.61 1.301Zm1.844 5.828v2.525L8 12.199l-1.234.88v-2.524c-.34-.083-.671-.2-.988-.35V15L8 13.413 10.22 15v-4.798c-.316.15-.647.27-.987.353Z" />
|
|
7
|
+
<Rect x={3.476} y={1} width={9} height={9} rx={4.5} />
|
|
8
|
+
<Path
|
|
9
|
+
d="m7.976 3 .734 1.489 1.643.238-1.189 1.16.281 1.636-1.47-.773-1.469.773.28-1.637-1.188-1.159L7.24 4.49 7.976 3Z"
|
|
10
|
+
fill="#fff"
|
|
11
|
+
/>
|
|
12
|
+
</Svg>
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
export default SvgComponent
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
export default function SadEmoji({
|
|
5
|
+
width,
|
|
6
|
+
height,
|
|
7
|
+
stroke,
|
|
8
|
+
strokeWidth,
|
|
9
|
+
fill,
|
|
10
|
+
...props
|
|
11
|
+
}: SvgProps) {
|
|
12
|
+
return (
|
|
13
|
+
<Svg
|
|
14
|
+
width={width ?? 36}
|
|
15
|
+
height={height ?? 36}
|
|
16
|
+
viewBox="0 0 36 36"
|
|
17
|
+
fill="none"
|
|
18
|
+
{...props}
|
|
19
|
+
>
|
|
20
|
+
<Path
|
|
21
|
+
d="M13.6969 14.5576C13.6969 14.7859 13.6063 15.0048 13.4449 15.1662C13.2835 15.3276 13.0645 15.4183 12.8363 15.4183C12.608 15.4183 12.3891 15.3276 12.2277 15.1662C12.0663 15.0048 11.9756 14.7859 11.9756 14.5576M13.6969 14.5576C13.6969 14.3293 13.6063 14.1104 13.4449 13.949C13.2835 13.7876 13.0645 13.6969 12.8363 13.6969C12.608 13.6969 12.3891 13.7876 12.2277 13.949C12.0663 14.1104 11.9756 14.3293 11.9756 14.5576M13.6969 14.5576H11.9756M24.0248 14.5576C24.0248 14.7859 23.9341 15.0048 23.7727 15.1662C23.6113 15.3276 23.3924 15.4183 23.1642 15.4183C22.9359 15.4183 22.717 15.3276 22.5556 15.1662C22.3942 15.0048 22.3035 14.7859 22.3035 14.5576M24.0248 14.5576C24.0248 14.3293 23.9341 14.1104 23.7727 13.949C23.6113 13.7876 23.3924 13.6969 23.1642 13.6969C22.9359 13.6969 22.717 13.7876 22.5556 13.949C22.3942 14.1104 22.3035 14.3293 22.3035 14.5576M24.0248 14.5576H22.3035M24.8855 24.8855C23.3156 22.7951 20.8163 21.4428 18.0002 21.4428C15.1842 21.4428 12.6848 22.7951 11.1143 24.8855M18.0002 35.2133C27.5067 35.2133 35.2133 27.5067 35.2133 18.0002C35.2133 8.49377 27.5067 0.787109 18.0002 0.787109C8.49376 0.787109 0.787109 8.49377 0.787109 18.0002C0.787109 27.5067 8.49376 35.2133 18.0002 35.2133Z"
|
|
22
|
+
stroke={stroke || "black"}
|
|
23
|
+
strokeWidth={strokeWidth || "1.5"}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
fill={fill}
|
|
27
|
+
/>
|
|
28
|
+
</Svg>
|
|
29
|
+
)
|
|
30
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
export default function Search({
|
|
5
|
+
height,
|
|
6
|
+
width,
|
|
7
|
+
stroke,
|
|
8
|
+
color,
|
|
9
|
+
fill,
|
|
10
|
+
style,
|
|
11
|
+
}: SvgProps) {
|
|
12
|
+
return (
|
|
13
|
+
<Svg
|
|
14
|
+
width={width}
|
|
15
|
+
height={height}
|
|
16
|
+
stroke={stroke}
|
|
17
|
+
color={color}
|
|
18
|
+
fill={fill}
|
|
19
|
+
viewBox="0 0 17.49 17.49"
|
|
20
|
+
style={style}
|
|
21
|
+
>
|
|
22
|
+
<Path
|
|
23
|
+
id="Path_117"
|
|
24
|
+
data-name="Path 117"
|
|
25
|
+
d="M15.5,14h-.79l-.28-.27a6.51,6.51,0,1,0-.7.7l.27.28v.79l5,4.99L20.49,19Zm-6,0A4.5,4.5,0,1,1,14,9.5,4.494,4.494,0,0,1,9.5,14Z"
|
|
26
|
+
transform="translate(-3 -3)"
|
|
27
|
+
fill={fill}
|
|
28
|
+
/>
|
|
29
|
+
</Svg>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function Share({
|
|
4
|
+
height,
|
|
5
|
+
width,
|
|
6
|
+
stroke,
|
|
7
|
+
color,
|
|
8
|
+
fill,
|
|
9
|
+
}: SvgProps) {
|
|
10
|
+
return (
|
|
11
|
+
<Svg
|
|
12
|
+
width={width}
|
|
13
|
+
height={height}
|
|
14
|
+
stroke={stroke}
|
|
15
|
+
color={color}
|
|
16
|
+
fill={fill}
|
|
17
|
+
viewBox="0 0 16 19"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
id="Vector"
|
|
21
|
+
fillRule="evenodd"
|
|
22
|
+
clipRule="evenodd"
|
|
23
|
+
d="M13.3333 13.2229C12.6578 13.2229 12.0533 13.494 11.5911 13.9187L5.25333 10.1687C5.29778 9.96084 5.33333 9.75301 5.33333 9.53614C5.33333 9.31928 5.29778 9.11145 5.25333 8.90361L11.52 5.18976C12 5.64157 12.6311 5.92169 13.3333 5.92169C14.8089 5.92169 16 4.71084 16 3.21084C16 1.71084 14.8089 0.5 13.3333 0.5C11.8578 0.5 10.6667 1.71084 10.6667 3.21084C10.6667 3.42771 10.7022 3.63554 10.7467 3.84337L4.48 7.55723C4 7.10542 3.36889 6.8253 2.66667 6.8253C1.19111 6.8253 0 8.03614 0 9.53614C0 11.0361 1.19111 12.247 2.66667 12.247C3.36889 12.247 4 11.9669 4.48 11.5151L10.8089 15.2741C10.7644 15.4639 10.7378 15.6627 10.7378 15.8614C10.7378 17.3163 11.9022 18.5 13.3333 18.5C14.7644 18.5 15.9289 17.3163 15.9289 15.8614C15.9289 14.4066 14.7644 13.2229 13.3333 13.2229Z"
|
|
24
|
+
fill={fill ?? '#5C5F62'}
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
)
|
|
28
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function Shipping({
|
|
4
|
+
height,
|
|
5
|
+
width,
|
|
6
|
+
stroke,
|
|
7
|
+
color,
|
|
8
|
+
fill,
|
|
9
|
+
}: SvgProps) {
|
|
10
|
+
return (
|
|
11
|
+
<Svg width={width} height={height} viewBox="0 0 36 17" fill="none">
|
|
12
|
+
<Path
|
|
13
|
+
fill-rule="evenodd"
|
|
14
|
+
clip-rule="evenodd"
|
|
15
|
+
d="M26.6612 0.000135366C26.9716 0.00139092 27.2225 0.254261 27.2212 0.564636V2.06376C27.222 2.21292 27.1632 2.35631 27.0582 2.46203C26.953 2.568 26.8104 2.62776 26.6612 2.62826C26.5113 2.62902 26.3674 2.56976 26.2615 2.46353C26.1555 2.35757 26.0962 2.21368 26.0967 2.06376V1.12487H10.6792V12.8595H18.8261C19.0807 11.525 20.2393 10.5015 21.63 10.5015C23.0207 10.5015 24.1756 11.525 24.4294 12.8595H26.6611C26.97 12.8607 27.2201 13.1108 27.2211 13.4197C27.2218 13.5689 27.1631 13.712 27.0581 13.818C26.9529 13.9237 26.8102 13.9835 26.6611 13.9842H24.4261C24.1645 15.3086 23.0136 16.3213 21.63 16.3213C20.2464 16.3213 19.092 15.3085 18.8294 13.9842H8.1381C7.87569 15.3086 6.72106 16.3213 5.33771 16.3213C3.95411 16.3213 2.8007 15.3085 2.53829 13.9842H0.560234C0.249607 13.983 -0.00125885 13.7301 3.8147e-06 13.4197V7.90302C-0.000247955 7.79931 0.0283775 7.69736 0.0823631 7.60871L3.12132 2.72382C3.22352 2.55884 3.40382 2.45839 3.59793 2.45789H9.55485V0.564501C9.55359 0.254126 9.80445 0.00125356 10.1148 0L26.6612 0.000135366ZM9.55498 3.58255H3.91447L1.12482 8.06567V12.8597H2.53382C2.78819 11.5252 3.9468 10.5017 5.33748 10.5017C6.72816 10.5017 7.88678 11.5252 8.14141 12.8597H9.55491L9.55498 3.58255ZM28.2838 4.09357C28.4327 4.09281 28.5761 4.15157 28.6821 4.25654C28.7878 4.36176 28.8475 4.50439 28.8483 4.65355C28.8475 4.80271 28.7878 4.9456 28.6821 5.05057C28.5761 5.15553 28.4327 5.21429 28.2838 5.21379H22.6805C22.5313 5.21429 22.3879 5.15553 22.2822 5.05057C22.1762 4.9456 22.1165 4.80271 22.116 4.65355C22.1165 4.50439 22.1762 4.36176 22.2822 4.25654C22.3879 4.15158 22.5313 4.09281 22.6805 4.09357H28.2838ZM31.8619 7.20587C32.1715 7.20662 32.4224 7.45748 32.4229 7.76711C32.4237 7.91652 32.3646 8.05991 32.2594 8.16587C32.1542 8.27159 32.0111 8.33136 31.8619 8.33161H24.4691C24.3192 8.33211 24.1753 8.27285 24.0693 8.16688C23.9634 8.06091 23.9041 7.91702 23.9046 7.7671C23.9049 7.61769 23.9646 7.4748 24.0706 7.36934C24.1763 7.26412 24.32 7.20536 24.4691 7.20586L31.8619 7.20587ZM35.4398 10.3194C35.5889 10.32 35.7318 10.38 35.8368 10.4857C35.942 10.5917 36.0005 10.7348 36 10.884C35.9987 11.1928 35.7486 11.4429 35.4398 11.4442H26.2586C26.1094 11.4447 25.966 11.3859 25.8603 11.281C25.7543 11.176 25.6946 11.0331 25.6941 10.8839C25.6933 10.734 25.7528 10.5901 25.8588 10.4842C25.9648 10.3782 26.1087 10.3189 26.2586 10.3194L35.4398 10.3194ZM21.6744 11.6232C21.6596 11.6227 21.6453 11.6232 21.6304 11.6232C20.6759 11.6232 19.8995 12.412 19.8995 13.4121C19.8995 14.4123 20.6757 15.1968 21.6304 15.1968C22.5849 15.1968 23.3568 14.4124 23.3568 13.4121C23.3568 12.4276 22.6082 11.6473 21.6743 11.6232H21.6744ZM5.38261 11.6232C5.3678 11.6227 5.35248 11.6232 5.33767 11.6232C4.38316 11.6232 3.60672 12.412 3.60672 13.4121C3.60672 14.4123 4.3829 15.1968 5.33767 15.1968C6.29217 15.1968 7.0686 14.4124 7.0686 13.4121C7.0686 12.4276 6.31679 11.6473 5.38286 11.6232H5.38261Z"
|
|
16
|
+
fill={fill}
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
)
|
|
20
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
export default function Signout({ stroke, ...props }: SvgProps) {
|
|
5
|
+
return (
|
|
6
|
+
<Svg width="17" height="17" viewBox="0 0 17 17" fill="none" {...props}>
|
|
7
|
+
<Path
|
|
8
|
+
d="M11.1667 11.8332L14.5 8.49988M14.5 8.49988L11.1667 5.16655M14.5 8.49988H6.5M8.5 11.8332C8.5 12.0303 8.5 12.1288 8.49268 12.2141C8.41655 13.1012 7.76324 13.8311 6.89002 14.0047C6.80602 14.0214 6.70801 14.0323 6.51223 14.0541L5.8313 14.1297C4.80832 14.2434 4.2968 14.3002 3.89044 14.1702C3.34862 13.9968 2.90628 13.6009 2.67412 13.0815C2.5 12.692 2.5 12.1774 2.5 11.1481V5.85168C2.5 4.82239 2.5 4.30774 2.67412 3.91822C2.90628 3.39887 3.34862 3.00295 3.89044 2.82956C4.29681 2.69952 4.8083 2.75636 5.83129 2.87002L6.51223 2.94568C6.70808 2.96744 6.806 2.97832 6.89002 2.99503C7.76324 3.16865 8.41655 3.89857 8.49268 4.78562C8.5 4.87097 8.5 4.96949 8.5 5.16655"
|
|
9
|
+
stroke={stroke ?? 'black'}
|
|
10
|
+
stroke-linecap="round"
|
|
11
|
+
stroke-linejoin="round"
|
|
12
|
+
/>
|
|
13
|
+
</Svg>
|
|
14
|
+
)
|
|
15
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function Signup({
|
|
4
|
+
height,
|
|
5
|
+
width,
|
|
6
|
+
stroke,
|
|
7
|
+
color,
|
|
8
|
+
fill,
|
|
9
|
+
}: SvgProps) {
|
|
10
|
+
return (
|
|
11
|
+
<Svg width={width} height={height} viewBox="0 0 24 24" fill="none">
|
|
12
|
+
<Path
|
|
13
|
+
d="M0.0188511 6.44746L0.831014 1.67121C0.995028 0.706828 1.84666 0 2.84432 0H21.1557C22.1533 0 23.005 0.706827 23.169 1.67121L23.9812 6.44746C24.1194 7.26018 23.4799 8 22.6392 8H21.4247C20.6517 8 19.9452 7.57199 19.5995 6.89443L18.8029 5.33333L18.0064 6.89443C17.6606 7.57199 16.9541 8 16.1811 8H14.6218C13.8488 8 13.1423 7.57199 12.7966 6.89443L12 5.33333L11.2034 6.89443C10.8577 7.57199 10.1512 8 9.37816 8H7.81894C7.04591 8 6.33935 7.57199 5.99365 6.89443L5.1971 5.33333L4.40055 6.89443C4.05484 7.57199 3.34828 8 2.57525 8H1.36083C0.520074 8 -0.119369 7.26018 0.0188511 6.44746Z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
/>
|
|
16
|
+
<Path
|
|
17
|
+
d="M9.05729 10.3905C8.53659 10.9112 8.53659 11.7554 9.05729 12.2761L10.1143 13.3333L1.33333 13.3333C0.596954 13.3333 0 13.9303 0 14.6667C0 15.403 0.596954 16 1.33333 16H10.1143L9.05729 17.0572C8.53659 17.5779 8.53659 18.4221 9.05729 18.9428C9.57799 19.4635 10.422 19.4635 10.9427 18.9428L14.276 15.6095C14.4039 15.4816 14.5004 15.3343 14.5654 15.177C14.6301 15.021 14.6661 14.85 14.6667 14.6707V14.6627C14.6656 14.3023 14.5217 13.9755 14.2884 13.7362L14.2747 13.7224L10.9427 10.3905C10.422 9.86983 9.57799 9.86983 9.05729 10.3905Z"
|
|
18
|
+
fill={fill}
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M22.6667 10.6667H20V21.3333H4V18.6667H1.33333V22C1.33333 23.1046 2.22876 24 3.33333 24H20.6667C21.7712 24 22.6667 23.1046 22.6667 22V10.6667Z"
|
|
22
|
+
fill={fill}
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
)
|
|
26
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const Snapmint = (props: SvgProps) => (
|
|
5
|
+
<Svg width="127" height="38" viewBox="0 0 127 38" fill="none" {...props}>
|
|
6
|
+
<Path
|
|
7
|
+
d="M40.4218 13.9178L39.1579 16.3184C37.7652 15.5677 36.4791 15.1612 35.5151 15.1612C34.8507 15.1612 34.3794 15.4177 34.3794 15.9535C34.3794 17.5395 40.4649 16.768 40.4427 20.7971C40.4427 23.1759 38.3653 24.4832 35.5795 24.4832C33.6511 24.4832 31.7872 23.9261 30.394 22.8545L31.5728 20.4971C32.8798 21.4186 34.3794 21.933 35.6651 21.933C36.3939 21.933 36.9291 21.676 36.9291 21.1403C36.9291 19.4468 30.951 20.3257 30.9728 16.2753C30.9728 13.8965 32.9868 12.6106 35.6651 12.6106C37.3365 12.6106 39.0074 13.082 40.4218 13.9178Z"
|
|
8
|
+
fill="#000"
|
|
9
|
+
/>
|
|
10
|
+
<Path
|
|
11
|
+
d="M53.4483 17.0467V24.333H49.7629V18.0756C49.7629 16.7253 48.9698 15.8895 47.7276 15.8895C46.3776 15.8895 45.5201 16.854 45.3706 18.2256V24.333H41.6635V12.7818H45.3706V14.6679C46.1845 13.3176 47.5133 12.6322 49.2272 12.6105C51.7769 12.6105 53.4483 14.3465 53.4483 17.0467Z"
|
|
12
|
+
fill="#000"
|
|
13
|
+
/>
|
|
14
|
+
<Path
|
|
15
|
+
d="M61.8033 20.4121V19.3831H59.468C58.3536 19.3831 57.797 19.7689 57.797 20.626C57.797 21.4623 58.3971 21.9976 59.4249 21.9976C60.5824 21.9976 61.5681 21.3549 61.8033 20.4121ZM65.4456 16.7904V24.3338H61.825V23.0053C61.0754 23.9911 59.8536 24.5051 58.2897 24.5051C55.8257 24.5051 54.326 23.0053 54.326 20.8835C54.326 18.6973 55.89 17.4119 58.761 17.3901H61.8033V17.2188C61.8033 16.0829 61.0537 15.3971 59.5541 15.3971C58.5897 15.3971 57.3253 15.7397 56.1039 16.3616L55.0543 13.9185C56.8544 13.0827 58.4823 12.6108 60.4106 12.6108C63.582 12.6108 65.4247 14.1755 65.4456 16.7904Z"
|
|
16
|
+
fill="#000"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
d="M76.1793 18.5045C76.1793 16.7471 75.1293 15.5043 73.5866 15.5043C72.0875 15.5043 71.0374 16.7471 71.0374 18.5045C71.0374 20.3049 72.0875 21.526 73.5866 21.526C75.1293 21.526 76.1793 20.2831 76.1793 18.5045ZM79.9082 18.6114C79.9082 22.1261 77.8086 24.4618 74.5723 24.4618C73.0732 24.4618 71.8513 23.8617 71.0374 22.7906V28.491H67.3307V12.7824H71.0374V14.304C71.8513 13.2538 73.0296 12.6536 74.4871 12.6536C77.7442 12.6536 79.9082 15.0324 79.9082 18.6114Z"
|
|
20
|
+
fill="#000"
|
|
21
|
+
/>
|
|
22
|
+
<Path
|
|
23
|
+
d="M100.263 17.3683V24.3333H98.5918V17.8184C98.5918 15.804 97.413 14.6251 95.4629 14.6251C93.1276 14.6894 91.778 16.3611 91.778 18.7829V24.3333H90.0854V17.8184C90.0854 15.804 88.9284 14.6251 86.957 14.6251C84.643 14.6894 83.2498 16.3611 83.2498 18.7829V24.3333H81.5993V13.0391H83.2498V15.5896C83.9999 13.8323 85.5212 12.9965 87.557 12.9752C89.6779 12.9752 91.1349 14.068 91.6067 15.9323C92.3132 13.9397 93.899 12.9965 96.0634 12.9752C98.6987 12.9752 100.263 14.6464 100.263 17.3683Z"
|
|
24
|
+
fill="#0347F7"
|
|
25
|
+
/>
|
|
26
|
+
<Path
|
|
27
|
+
d="M103.111 13.0395H104.76V24.3337H103.111V13.0395ZM105.018 9.80318C105.018 10.4677 104.546 10.9604 103.925 10.9604C103.304 10.9604 102.832 10.4677 102.832 9.80318C102.832 9.13914 103.304 8.64598 103.925 8.64598C104.546 8.64598 105.018 9.13914 105.018 9.80318Z"
|
|
28
|
+
fill="#0347F7"
|
|
29
|
+
/>
|
|
30
|
+
<Path
|
|
31
|
+
d="M118.302 17.3683V24.3333H116.631V17.8184C116.631 15.8253 115.431 14.6464 113.438 14.6464C111.21 14.6681 109.839 16.1249 109.646 18.268V24.3333H107.974V13.0391H109.646V15.5253C110.439 13.8105 111.959 12.9965 114.016 12.9752C116.716 12.9752 118.302 14.6464 118.302 17.3683Z"
|
|
32
|
+
fill="#0347F7"
|
|
33
|
+
/>
|
|
34
|
+
<Path
|
|
35
|
+
d="M127 23.5621C126.207 24.0978 125.35 24.3979 124.45 24.4197C122.801 24.4197 121.579 23.4338 121.579 21.2046V14.7541H119.951V13.4038H121.579V10.4249H123.229V13.4038L126.807 13.3825V14.7541H123.229V20.9045C123.229 22.2766 123.765 22.7906 124.729 22.7906C125.307 22.7906 125.907 22.5975 126.529 22.2118L127 23.5621Z"
|
|
36
|
+
fill="#0347F7"
|
|
37
|
+
/>
|
|
38
|
+
<Path
|
|
39
|
+
d="M3.78814 13.2531C2.59364 9.95054 3.80944 7.29485 4.68587 5.95844C5.86556 4.15943 7.7212 3.01381 9.20831 2.58593C9.21201 4.80541 9.20877 8.4942 9.20738 9.58703C8.28141 9.85839 5.57804 10.8243 3.78814 13.2531ZM9.65046 0.503059C7.42859 1.22915 5.26182 2.82441 3.5548 4.98647C1.39821 7.59492 0.174545 10.76 0.0166676 14.1519L0.0152785 14.2047C0.00740776 14.3821 0.00277803 14.5599 0.00138907 14.7354L0 14.8739C0 15.0494 0.00370402 15.2239 0.0101858 15.3985L0.0115749 15.455C0.247234 21.8277 4.45808 27.4971 10.4917 29.5623L11.0348 29.748V18.6766L10.6686 18.6367C10.0676 18.5714 9.46943 18.4385 8.89116 18.2427C7.11423 17.6388 5.58777 16.4469 4.56688 14.8739C5.59147 13.2939 7.12488 12.1006 8.91061 11.4981C9.48147 11.3055 10.0722 11.1754 10.6686 11.111L11.0348 11.0712V-0.000293732L10.4917 0.185396C10.2088 0.281715 9.91621 0.392387 9.65046 0.503059Z"
|
|
40
|
+
fill="#0347F7"
|
|
41
|
+
/>
|
|
42
|
+
<Path
|
|
43
|
+
d="M15.2009 35.4126C15.1972 33.1932 15.2009 29.5044 15.2013 28.4115C16.1277 28.1402 18.8316 27.1742 20.6201 24.7459C21.8164 28.048 20.5997 30.7032 19.7233 32.0406C18.545 33.8387 16.6884 34.9843 15.2009 35.4126ZM24.3999 22.601L24.3971 22.5431C24.1629 16.1713 19.952 10.502 13.9179 8.43624L13.3753 8.25055V19.3225L13.7415 19.3618C14.3425 19.4271 14.9402 19.5596 15.518 19.7554C17.2949 20.3597 18.8214 21.5512 19.8423 23.1247C18.8177 24.7051 17.2843 25.8985 15.499 26.5005C14.9282 26.6931 14.3374 26.8232 13.7415 26.888L13.3753 26.9274V37.9998L13.9179 37.8136C14.2119 37.7122 14.5017 37.6025 14.7592 37.496C16.9815 36.769 19.1483 35.1732 20.8544 33.0116C23.0114 30.4036 24.2346 27.2386 24.393 23.8429L24.3934 23.7934C24.4018 23.6151 24.4068 23.4382 24.4082 23.2395L24.4096 23.1247C24.4096 22.9497 24.4059 22.7746 24.3999 22.601Z"
|
|
44
|
+
fill="#0347F7"
|
|
45
|
+
/>
|
|
46
|
+
</Svg>
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
export default Snapmint
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
const Sort = (props: SvgProps) => (
|
|
5
|
+
<Svg width="25" height="22" viewBox="0 0 23 22" fill="none" {...props}>
|
|
6
|
+
<Path d="M5.74922 0.200195C6.41196 0.200195 6.94922 0.737454 6.94922 1.4002L6.94922 17.703L8.50057 16.1517C8.9692 15.683 9.729 15.683 10.1976 16.1517C10.6663 16.6203 10.6663 17.3801 10.1976 17.8487L6.59763 21.4487C6.37258 21.6738 6.06735 21.8002 5.74909 21.8002C5.43083 21.8002 5.1256 21.6738 4.90056 21.4487L1.30068 17.8487C0.832055 17.3801 0.832068 16.6203 1.3007 16.1517C1.76934 15.683 2.52914 15.683 2.99776 16.1517L4.54922 17.7032L4.54922 1.4002C4.54922 0.737454 5.08648 0.200195 5.74922 0.200195Z" />
|
|
7
|
+
<Path d="M11.7492 3.8002C11.7492 3.13745 12.2865 2.6002 12.9492 2.6002L21.3492 2.6002C22.012 2.6002 22.5492 3.13745 22.5492 3.8002C22.5492 4.46294 22.012 5.0002 21.3492 5.0002L12.9492 5.0002C12.2865 5.0002 11.7492 4.46294 11.7492 3.8002Z" />
|
|
8
|
+
<Path d="M11.7492 8.60019C11.7492 7.93745 12.2865 7.40019 12.9492 7.40019L21.3492 7.4002C22.012 7.4002 22.5492 7.93745 22.5492 8.6002C22.5492 9.26294 22.012 9.8002 21.3492 9.8002L12.9492 9.80019C12.2865 9.80019 11.7492 9.26294 11.7492 8.60019Z" />
|
|
9
|
+
<Path d="M12.9492 12.2002C12.2865 12.2002 11.7492 12.7375 11.7492 13.4002C11.7492 14.0629 12.2865 14.6002 12.9492 14.6002L21.3492 14.6002C22.012 14.6002 22.5492 14.0629 22.5492 13.4002C22.5492 12.7375 22.012 12.2002 21.3492 12.2002L12.9492 12.2002Z" />
|
|
10
|
+
</Svg>
|
|
11
|
+
)
|
|
12
|
+
export default Sort
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function SpeakerOff({
|
|
4
|
+
height,
|
|
5
|
+
width,
|
|
6
|
+
fill = '#171717',
|
|
7
|
+
}: SvgProps) {
|
|
8
|
+
return (
|
|
9
|
+
<Svg width={width} height={height} viewBox="0 0 12 12" fill="none">
|
|
10
|
+
<Path
|
|
11
|
+
d="M3.95374 2.84892L3.23665 3.6138C3.08542 3.77512 2.87415 3.86665 2.65302 3.86665H1.39961C0.957782 3.86665 0.599609 4.22482 0.599609 4.66665V7.33332C0.599609 7.77515 0.957782 8.13332 1.39961 8.13332H2.65302C2.87415 8.13332 3.08542 8.22484 3.23665 8.38617L5.61598 10.9241C6.112 11.4532 6.99961 11.1022 6.99961 10.377V5.89479L3.95374 2.84892Z"
|
|
12
|
+
fill={fill}
|
|
13
|
+
/>
|
|
14
|
+
<Path
|
|
15
|
+
d="M8.52917 7.42435C8.31041 7.53663 8.06241 7.59998 7.79961 7.59998V8.39998C8.28464 8.39998 8.73606 8.25611 9.11352 8.0087L8.52917 7.42435Z"
|
|
16
|
+
fill={fill}
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
d="M9.70094 7.46474L9.12813 6.89193C9.29956 6.63709 9.39961 6.33022 9.39961 5.99998C9.39961 5.11633 8.68326 4.39998 7.79961 4.39998V3.59998C9.12509 3.59998 10.1996 4.6745 10.1996 5.99998C10.1996 6.55145 10.0136 7.05947 9.70094 7.46474Z"
|
|
20
|
+
fill={fill}
|
|
21
|
+
/>
|
|
22
|
+
<Path
|
|
23
|
+
d="M9.68828 8.58346C9.15892 8.9711 8.50599 9.19998 7.79961 9.19998V9.99998C8.72711 9.99998 9.58089 9.6843 10.2593 9.15452L9.68828 8.58346Z"
|
|
24
|
+
fill={fill}
|
|
25
|
+
/>
|
|
26
|
+
<Path
|
|
27
|
+
d="M10.8379 8.60174L10.2701 8.03395C10.7259 7.48103 10.9996 6.77247 10.9996 5.99998C10.9996 4.23267 9.56692 2.79998 7.79961 2.79998V1.99998C10.0087 1.99998 11.7996 3.79085 11.7996 5.99998C11.7996 6.99343 11.4374 7.9023 10.8379 8.60174Z"
|
|
28
|
+
fill={fill}
|
|
29
|
+
/>
|
|
30
|
+
<Path
|
|
31
|
+
d="M6.99961 4.76342L4.50117 2.26498L5.61598 1.07586C6.11199 0.546774 6.99961 0.897779 6.99961 1.62301V4.76342Z"
|
|
32
|
+
fill={fill}
|
|
33
|
+
/>
|
|
34
|
+
<Path
|
|
35
|
+
d="M1.68245 1.24852C1.52624 1.09231 1.52624 0.839041 1.68245 0.682831C1.83866 0.526621 2.09193 0.526621 2.24814 0.682831L11.8648 10.2995C12.021 10.4557 12.021 10.709 11.8648 10.8652C11.7086 11.0214 11.4553 11.0214 11.2991 10.8652L1.68245 1.24852Z"
|
|
36
|
+
fill={fill}
|
|
37
|
+
/>
|
|
38
|
+
</Svg>
|
|
39
|
+
)
|
|
40
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Svg, { Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
export default function SpeakerOn({ height, width, fill = '#171717' }: SvgProps) {
|
|
4
|
+
return (
|
|
5
|
+
<Svg width={width} height={height} viewBox="0 0 12 12" fill="none">
|
|
6
|
+
<Path
|
|
7
|
+
d="M0.599609 7.33333V4.66666C0.599609 4.22484 0.957782 3.86666 1.39961 3.86666H2.65302C2.87415 3.86666 3.08542 3.77514 3.23665 3.61382L5.61598 1.07587C6.11199 0.546786 6.99961 0.897792 6.99961 1.62302V10.377C6.99961 11.1022 6.112 11.4532 5.61598 10.9241L3.23665 8.38618C3.08542 8.22486 2.87415 8.13333 2.65302 8.13333H1.39961C0.957782 8.13333 0.599609 7.77516 0.599609 7.33333Z"
|
|
8
|
+
fill={fill}
|
|
9
|
+
/>
|
|
10
|
+
<Path
|
|
11
|
+
d="M7.79961 10C10.0087 10 11.7996 8.20914 11.7996 6C11.7996 3.79086 10.0087 2 7.79961 2V2.8C9.56692 2.8 10.9996 4.23269 10.9996 6C10.9996 7.76731 9.56692 9.2 7.79961 9.2V10Z"
|
|
12
|
+
fill={fill}
|
|
13
|
+
/>
|
|
14
|
+
<Path
|
|
15
|
+
d="M7.79961 8.4C9.12509 8.4 10.1996 7.32548 10.1996 6C10.1996 4.67451 9.12509 3.6 7.79961 3.6V4.4C8.68327 4.4 9.39961 5.11634 9.39961 6C9.39961 6.88365 8.68327 7.6 7.79961 7.6V8.4Z"
|
|
16
|
+
fill={fill}
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
)
|
|
20
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import Svg, { ClipPath, Defs, G, Path, SvgProps } from 'react-native-svg'
|
|
3
|
+
|
|
4
|
+
function Stars(props: SvgProps) {
|
|
5
|
+
return (
|
|
6
|
+
<Svg
|
|
7
|
+
width={16}
|
|
8
|
+
height={16}
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<G clipPath="url(#clip0_306_30024)">
|
|
15
|
+
<Path
|
|
16
|
+
d="M8.667 2l1.156 3.006c.188.489.282.733.428.939.13.182.289.341.471.47.206.147.45.241.939.429L14.667 8 11.66 9.156c-.489.188-.733.282-.939.428-.182.13-.341.29-.47.471-.147.206-.241.45-.43.94L8.668 14 7.51 10.994c-.188-.489-.282-.733-.428-.939a2 2 0 00-.471-.47c-.206-.147-.45-.24-.94-.429L2.668 8l3.006-1.156c.489-.188.733-.282.939-.428a2 2 0 00.47-.471c.147-.206.24-.45.429-.939L8.667 2z"
|
|
17
|
+
fill="#0E8345"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
d="M3 14.667v-3.333m0-6.667V1.334M1.333 3h3.334M1.334 13h3.333m4-11L7.51 5.006c-.188.489-.282.733-.428.939a2 2 0 01-.471.47c-.206.147-.45.241-.94.429L2.668 8l3.006 1.156c.489.188.733.282.939.428a2 2 0 01.47.471c.147.206.24.45.429.94L8.667 14l1.156-3.006c.188-.489.282-.733.428-.939.13-.182.289-.341.471-.47.206-.147.45-.24.939-.429L14.667 8 11.66 6.844c-.489-.188-.733-.282-.939-.428a2.001 2.001 0 01-.47-.471c-.147-.206-.241-.45-.43-.939L8.668 2z"
|
|
21
|
+
stroke="#0E8345"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</G>
|
|
27
|
+
<Defs>
|
|
28
|
+
<ClipPath id="clip0_306_30024">
|
|
29
|
+
<Path fill="#fff" d="M0 0H16V16H0z" />
|
|
30
|
+
</ClipPath>
|
|
31
|
+
</Defs>
|
|
32
|
+
</Svg>
|
|
33
|
+
)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export default Stars
|