@shopify/shop-minis-react 0.1.5 → 0.1.7
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/dist/_virtual/index10.js +2 -2
- package/dist/_virtual/index5.js +2 -3
- package/dist/_virtual/index5.js.map +1 -1
- package/dist/_virtual/index6.js +3 -2
- package/dist/_virtual/index6.js.map +1 -1
- package/dist/_virtual/index7.js +2 -2
- package/dist/_virtual/index9.js +2 -2
- package/dist/components/atoms/list.js +106 -41
- package/dist/components/atoms/list.js.map +1 -1
- package/dist/components/commerce/add-to-cart.js +82 -0
- package/dist/components/commerce/add-to-cart.js.map +1 -0
- package/dist/components/{atoms → commerce}/favorite-button.js +1 -1
- package/dist/components/commerce/favorite-button.js.map +1 -0
- package/dist/components/commerce/product-card.js +10 -10
- package/dist/components/commerce/product-card.js.map +1 -1
- package/dist/components/commerce/product-link.js +6 -6
- package/dist/components/commerce/product-link.js.map +1 -1
- package/dist/index.js +276 -274
- package/dist/index.js.map +1 -1
- package/dist/internal/components/refresh-indicator.js +83 -0
- package/dist/internal/components/refresh-indicator.js.map +1 -0
- package/dist/internal/usePullToRefresh.js +149 -0
- package/dist/internal/usePullToRefresh.js.map +1 -0
- package/dist/internal/utils/virtuoso-dom.js +20 -0
- package/dist/internal/utils/virtuoso-dom.js.map +1 -0
- package/dist/mocks.js +1 -0
- package/dist/mocks.js.map +1 -1
- package/dist/shop-minis-react/node_modules/.pnpm/@radix-ui_react-use-is-hydrated@0.1.0_@types_react@19.1.6_react@19.1.0/node_modules/@radix-ui/react-use-is-hydrated/dist/index.js +1 -1
- package/dist/shop-minis-react/node_modules/.pnpm/@videojs_xhr@2.7.0/node_modules/@videojs/xhr/lib/index.js +1 -1
- package/dist/shop-minis-react/node_modules/.pnpm/@xmldom_xmldom@0.8.10/node_modules/@xmldom/xmldom/lib/index.js +1 -1
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PopChild.js +55 -0
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PopChild.js.map +1 -0
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +35 -0
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js.map +1 -0
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/index.js +46 -0
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/index.js.map +1 -0
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/utils.js +13 -0
- package/dist/shop-minis-react/node_modules/.pnpm/motion@12.17.3_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/motion/dist/es/framer-motion/dist/es/components/AnimatePresence/utils.js.map +1 -0
- package/dist/shop-minis-react/node_modules/.pnpm/mpd-parser@1.3.1/node_modules/mpd-parser/dist/mpd-parser.es.js +1 -1
- package/dist/shop-minis-react/node_modules/.pnpm/use-sync-external-store@1.5.0_react@19.1.0/node_modules/use-sync-external-store/shim/index.js +1 -1
- package/package.json +2 -2
- package/src/components/atoms/list.tsx +97 -12
- package/src/components/commerce/add-to-cart.test.tsx +73 -0
- package/src/components/commerce/add-to-cart.tsx +132 -0
- package/src/components/{atoms → commerce}/favorite-button.tsx +1 -1
- package/src/components/commerce/product-card.tsx +2 -1
- package/src/components/commerce/product-link.test.tsx +1 -0
- package/src/components/commerce/product-link.tsx +2 -1
- package/src/components/index.ts +2 -1
- package/src/internal/components/refresh-indicator.tsx +103 -0
- package/src/internal/usePullToRefresh.ts +286 -0
- package/src/internal/utils/virtuoso-dom.ts +26 -0
- package/src/mocks.ts +1 -0
- package/src/stories/AddToCart.stories.tsx +186 -0
- package/src/stories/FavoriteButton.stories.tsx +2 -2
- package/src/stories/PullToRefreshList.stories.tsx +122 -0
- package/src/styles/animations.css +54 -0
- package/src/test-utils.tsx +1 -0
- package/dist/components/atoms/favorite-button.js.map +0 -1
- /package/src/components/{atoms → commerce}/favorite-button.test.tsx +0 -0
package/dist/index.js
CHANGED
|
@@ -1,282 +1,284 @@
|
|
|
1
1
|
import { DATA_NAVIGATION_TYPE_ATTRIBUTE as o, NAVIGATION_TYPES as t } from "./types/index.js";
|
|
2
2
|
import { MinisContainer as i } from "./components/MinisContainer.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
3
|
+
import { AddToCartButton as n } from "./components/commerce/add-to-cart.js";
|
|
4
|
+
import { ProductCard as s, ProductCardBadge as l, ProductCardContainer as u, ProductCardFavoriteButton as f, ProductCardImage as x, ProductCardImageContainer as c, ProductCardInfo as d, ProductCardPrice as C, ProductCardTitle as g } from "./components/commerce/product-card.js";
|
|
5
|
+
import { ProductLink as D } from "./components/commerce/product-link.js";
|
|
6
|
+
import { MerchantCard as P, MerchantCardContainer as h, MerchantCardHeader as T, MerchantCardInfo as I, MerchantCardName as M, MerchantCardRating as R } from "./components/commerce/merchant-card.js";
|
|
7
|
+
import { ProductCardSkeleton as w } from "./components/commerce/product-card-skeleton.js";
|
|
8
|
+
import { MerchantCardSkeleton as F } from "./components/commerce/merchant-card-skeleton.js";
|
|
9
|
+
import { QuantitySelector as b } from "./components/commerce/quantity-selector.js";
|
|
10
|
+
import { Search as E, SearchInput as L, SearchProvider as N, SearchResultsList as O } from "./components/commerce/search.js";
|
|
11
|
+
import { FavoriteButton as G } from "./components/commerce/favorite-button.js";
|
|
12
|
+
import { ImageContentWrapper as V } from "./components/content/image-content-wrapper.js";
|
|
13
|
+
import { MinisRouter as _ } from "./components/navigation/minis-router.js";
|
|
14
|
+
import { TransitionLink as Y } from "./components/navigation/transition-link.js";
|
|
15
|
+
import { Button as K } from "./components/atoms/button.js";
|
|
16
|
+
import { IconButton as j } from "./components/atoms/icon-button.js";
|
|
17
|
+
import { Image as X } from "./components/atoms/image.js";
|
|
18
|
+
import { Touchable as $ } from "./components/atoms/touchable.js";
|
|
19
|
+
import { LongPressDetector as er } from "./components/atoms/long-press-detector.js";
|
|
20
|
+
import { AlertDialogAtom as tr } from "./components/atoms/alert-dialog.js";
|
|
21
|
+
import { List as ir } from "./components/atoms/list.js";
|
|
22
|
+
import { VideoPlayer as nr } from "./components/atoms/video-player.js";
|
|
23
|
+
import { TextInput as sr } from "./components/atoms/text-input.js";
|
|
24
|
+
import { ContentWrapper as ur } from "./components/atoms/content-wrapper.js";
|
|
25
|
+
import { Accordion as xr, AccordionContent as cr, AccordionItem as dr, AccordionTrigger as Cr } from "./components/ui/accordion.js";
|
|
26
|
+
import { Alert as Sr, AlertDescription as Dr, AlertTitle as Ar } from "./components/ui/alert.js";
|
|
27
|
+
import { AlertDialog as hr, AlertDialogAction as Tr, AlertDialogCancel as Ir, AlertDialogContent as Mr, AlertDialogDescription as Rr, AlertDialogFooter as vr, AlertDialogHeader as wr, AlertDialogOverlay as Br, AlertDialogPortal as Fr, AlertDialogTitle as Ur, AlertDialogTrigger as br } from "./components/ui/alert-dialog.js";
|
|
28
|
+
import { Avatar as Er, AvatarFallback as Lr, AvatarImage as Nr } from "./components/ui/avatar.js";
|
|
29
|
+
import { Badge as yr, badgeVariants as Gr } from "./components/ui/badge.js";
|
|
30
|
+
import { Card as Vr, CardAction as zr, CardContent as _r, CardDescription as Wr, CardFooter as Yr, CardHeader as qr, CardTitle as Kr } from "./components/ui/card.js";
|
|
31
|
+
import { Carousel as jr, CarouselContent as Jr, CarouselItem as Xr, CarouselNext as Zr, CarouselPrevious as $r } from "./components/ui/carousel.js";
|
|
32
|
+
import { Checkbox as ee } from "./components/ui/checkbox.js";
|
|
33
|
+
import { Dialog as te, DialogClose as ae, DialogContent as ie, DialogDescription as pe, DialogFooter as ne, DialogHeader as me, DialogOverlay as se, DialogPortal as le, DialogTitle as ue, DialogTrigger as fe } from "./components/ui/dialog.js";
|
|
34
|
+
import { Drawer as ce, DrawerClose as de, DrawerContent as Ce, DrawerDescription as ge, DrawerFooter as Se, DrawerHeader as De, DrawerOverlay as Ae, DrawerPortal as Pe, DrawerTitle as he, DrawerTrigger as Te } from "./components/ui/drawer.js";
|
|
35
|
+
import { Input as Me } from "./components/ui/input.js";
|
|
36
|
+
import { Label as ve } from "./components/ui/label.js";
|
|
37
|
+
import { Progress as Be } from "./components/ui/progress.js";
|
|
38
|
+
import { RadioGroup as Ue, RadioGroupItem as be } from "./components/ui/radio-group.js";
|
|
39
|
+
import { ResizableHandle as Ee, ResizablePanel as Le, ResizablePanelGroup as Ne } from "./components/ui/resizable.js";
|
|
40
|
+
import { ScrollArea as ye, ScrollBar as Ge } from "./components/ui/scroll-area.js";
|
|
41
|
+
import { Select as Ve, SelectContent as ze, SelectGroup as _e, SelectItem as We, SelectLabel as Ye, SelectScrollDownButton as qe, SelectScrollUpButton as Ke, SelectSeparator as Qe, SelectTrigger as je, SelectValue as Je } from "./components/ui/select.js";
|
|
42
|
+
import { Separator as Ze } from "./components/ui/separator.js";
|
|
43
|
+
import { Sheet as ro, SheetClose as eo, SheetContent as oo, SheetDescription as to, SheetFooter as ao, SheetHeader as io, SheetTitle as po, SheetTrigger as no } from "./components/ui/sheet.js";
|
|
44
|
+
import { Toaster as so } from "./components/ui/sonner.js";
|
|
45
|
+
import { Skeleton as uo } from "./components/ui/skeleton.js";
|
|
46
|
+
import { useRecentProducts as xo } from "./hooks/user/useRecentProducts.js";
|
|
47
|
+
import { useRecentShops as Co } from "./hooks/user/useRecentShops.js";
|
|
48
|
+
import { useSavedProducts as So } from "./hooks/user/useSavedProducts.js";
|
|
49
|
+
import { useSavedProductsActions as Ao } from "./hooks/user/useSavedProductsActions.js";
|
|
50
|
+
import { useFollowedShops as ho } from "./hooks/user/useFollowedShops.js";
|
|
51
|
+
import { useFollowedShopsActions as Io } from "./hooks/user/useFollowedShopsActions.js";
|
|
52
|
+
import { useCurrentUser as Ro } from "./hooks/user/useCurrentUser.js";
|
|
53
|
+
import { useOrders as wo } from "./hooks/user/useOrders.js";
|
|
54
|
+
import { useBuyerAttributes as Fo } from "./hooks/user/useBuyerAttributes.js";
|
|
55
|
+
import { useGenerateUserToken as bo } from "./hooks/user/useGenerateUserToken.js";
|
|
56
|
+
import { useProductListActions as Eo } from "./hooks/product/useProductListActions.js";
|
|
57
|
+
import { useProductLists as No } from "./hooks/product/useProductLists.js";
|
|
58
|
+
import { useProductList as yo } from "./hooks/product/useProductList.js";
|
|
59
|
+
import { useProduct as Ho } from "./hooks/product/useProduct.js";
|
|
60
|
+
import { useProducts as zo } from "./hooks/product/useProducts.js";
|
|
61
|
+
import { useProductVariants as Wo } from "./hooks/product/useProductVariants.js";
|
|
62
|
+
import { useProductMedia as qo } from "./hooks/product/useProductMedia.js";
|
|
63
|
+
import { useProductSearch as Qo } from "./hooks/product/useProductSearch.js";
|
|
64
|
+
import { useRecommendedProducts as Jo } from "./hooks/product/useRecommendedProducts.js";
|
|
65
|
+
import { usePopularProducts as Zo } from "./hooks/product/usePopularProducts.js";
|
|
66
|
+
import { useCuratedProducts as rt } from "./hooks/product/useCuratedProducts.js";
|
|
67
|
+
import { useAsyncStorage as ot } from "./hooks/storage/useAsyncStorage.js";
|
|
68
|
+
import { useSecureStorage as at } from "./hooks/storage/useSecureStorage.js";
|
|
69
|
+
import { useImageUpload as pt } from "./hooks/storage/useImageUpload.js";
|
|
70
|
+
import { useShopNavigation as mt } from "./hooks/navigation/useShopNavigation.js";
|
|
71
|
+
import { useCloseMini as lt } from "./hooks/navigation/useCloseMini.js";
|
|
72
|
+
import { useDeeplink as ft } from "./hooks/navigation/useDeeplink.js";
|
|
73
|
+
import { useNavigateWithTransition as ct } from "./hooks/navigation/useNavigateWithTransition.js";
|
|
74
|
+
import { useShop as Ct } from "./hooks/shop/useShop.js";
|
|
75
|
+
import { useShopCartActions as St } from "./hooks/shop/useShopCartActions.js";
|
|
76
|
+
import { useRecommendedShops as At } from "./hooks/shop/useRecommendedShops.js";
|
|
77
|
+
import { useCreateImageContent as ht } from "./hooks/content/useCreateImageContent.js";
|
|
78
|
+
import { useErrorToast as It } from "./hooks/util/useErrorToast.js";
|
|
79
|
+
import { useErrorScreen as Rt } from "./hooks/util/useErrorScreen.js";
|
|
80
|
+
import { useShare as wt } from "./hooks/util/useShare.js";
|
|
81
|
+
import { useImagePicker as Ft } from "./hooks/util/useImagePicker.js";
|
|
82
|
+
import { useKeyboardAvoidingView as bt } from "./hooks/util/useKeyboardAvoidingView.js";
|
|
83
|
+
import { useRequestPermissions as Et } from "./hooks/util/useRequestPermissions.js";
|
|
84
|
+
import { useOnMiniFocus as Nt } from "./hooks/events/useOnMiniFocus.js";
|
|
85
|
+
import { useOnMiniBlur as yt } from "./hooks/events/useOnMiniBlur.js";
|
|
86
|
+
import { useOnMiniClose as Ht } from "./hooks/events/useOnMiniClose.js";
|
|
87
|
+
import { useOnAppStateChange as zt } from "./hooks/events/useOnAppStateChange.js";
|
|
88
|
+
import { MiniEntityNotFoundError as Wt, MiniError as Yt, MiniNetworkError as qt, formatError as Kt } from "./utils/errors.js";
|
|
89
|
+
import { extractBrandTheme as jt, formatReviewCount as Jt, getFeaturedImages as Xt, normalizeRating as Zt } from "./utils/merchant-card.js";
|
|
90
|
+
import { parseUrl as ra } from "./utils/parseUrl.js";
|
|
91
|
+
import { fileToDataUri as oa, getResizedImageUrl as ta, getThumbhashDataURL as aa } from "./utils/image.js";
|
|
92
|
+
import { UserState as pa, UserTokenGenerateUserErrorCode as na } from "./shop-minis-platform/src/types/user.js";
|
|
93
|
+
import { ContentCreateUserErrorCode as sa, MinisContentStatus as la } from "./shop-minis-platform/src/types/content.js";
|
|
94
|
+
import { Social as fa } from "./shop-minis-platform/src/types/share.js";
|
|
94
95
|
export {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
Nr as
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
Kr as
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
$r as
|
|
132
|
-
|
|
133
|
-
|
|
96
|
+
xr as Accordion,
|
|
97
|
+
cr as AccordionContent,
|
|
98
|
+
dr as AccordionItem,
|
|
99
|
+
Cr as AccordionTrigger,
|
|
100
|
+
n as AddToCartButton,
|
|
101
|
+
Sr as Alert,
|
|
102
|
+
Dr as AlertDescription,
|
|
103
|
+
hr as AlertDialog,
|
|
104
|
+
Tr as AlertDialogAction,
|
|
105
|
+
tr as AlertDialogAtom,
|
|
106
|
+
Ir as AlertDialogCancel,
|
|
107
|
+
Mr as AlertDialogContent,
|
|
108
|
+
Rr as AlertDialogDescription,
|
|
109
|
+
vr as AlertDialogFooter,
|
|
110
|
+
wr as AlertDialogHeader,
|
|
111
|
+
Br as AlertDialogOverlay,
|
|
112
|
+
Fr as AlertDialogPortal,
|
|
113
|
+
Ur as AlertDialogTitle,
|
|
114
|
+
br as AlertDialogTrigger,
|
|
115
|
+
Ar as AlertTitle,
|
|
116
|
+
Er as Avatar,
|
|
117
|
+
Lr as AvatarFallback,
|
|
118
|
+
Nr as AvatarImage,
|
|
119
|
+
yr as Badge,
|
|
120
|
+
K as Button,
|
|
121
|
+
Vr as Card,
|
|
122
|
+
zr as CardAction,
|
|
123
|
+
_r as CardContent,
|
|
124
|
+
Wr as CardDescription,
|
|
125
|
+
Yr as CardFooter,
|
|
126
|
+
qr as CardHeader,
|
|
127
|
+
Kr as CardTitle,
|
|
128
|
+
jr as Carousel,
|
|
129
|
+
Jr as CarouselContent,
|
|
130
|
+
Xr as CarouselItem,
|
|
131
|
+
Zr as CarouselNext,
|
|
132
|
+
$r as CarouselPrevious,
|
|
133
|
+
ee as Checkbox,
|
|
134
|
+
sa as ContentCreateUserErrorCode,
|
|
135
|
+
ur as ContentWrapper,
|
|
134
136
|
o as DATA_NAVIGATION_TYPE_ATTRIBUTE,
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
137
|
+
te as Dialog,
|
|
138
|
+
ae as DialogClose,
|
|
139
|
+
ie as DialogContent,
|
|
140
|
+
pe as DialogDescription,
|
|
141
|
+
ne as DialogFooter,
|
|
142
|
+
me as DialogHeader,
|
|
143
|
+
se as DialogOverlay,
|
|
144
|
+
le as DialogPortal,
|
|
145
|
+
ue as DialogTitle,
|
|
146
|
+
fe as DialogTrigger,
|
|
147
|
+
ce as Drawer,
|
|
148
|
+
de as DrawerClose,
|
|
149
|
+
Ce as DrawerContent,
|
|
150
|
+
ge as DrawerDescription,
|
|
151
|
+
Se as DrawerFooter,
|
|
152
|
+
De as DrawerHeader,
|
|
153
|
+
Ae as DrawerOverlay,
|
|
154
|
+
Pe as DrawerPortal,
|
|
155
|
+
he as DrawerTitle,
|
|
156
|
+
Te as DrawerTrigger,
|
|
157
|
+
G as FavoriteButton,
|
|
158
|
+
j as IconButton,
|
|
159
|
+
X as Image,
|
|
160
|
+
V as ImageContentWrapper,
|
|
161
|
+
Me as Input,
|
|
162
|
+
ve as Label,
|
|
163
|
+
ir as List,
|
|
164
|
+
er as LongPressDetector,
|
|
165
|
+
P as MerchantCard,
|
|
166
|
+
h as MerchantCardContainer,
|
|
167
|
+
T as MerchantCardHeader,
|
|
168
|
+
I as MerchantCardInfo,
|
|
169
|
+
M as MerchantCardName,
|
|
170
|
+
R as MerchantCardRating,
|
|
171
|
+
F as MerchantCardSkeleton,
|
|
172
|
+
Wt as MiniEntityNotFoundError,
|
|
173
|
+
Yt as MiniError,
|
|
174
|
+
qt as MiniNetworkError,
|
|
173
175
|
i as MinisContainer,
|
|
174
|
-
|
|
175
|
-
|
|
176
|
+
la as MinisContentStatus,
|
|
177
|
+
_ as MinisRouter,
|
|
176
178
|
t as NAVIGATION_TYPES,
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
179
|
+
s as ProductCard,
|
|
180
|
+
l as ProductCardBadge,
|
|
181
|
+
u as ProductCardContainer,
|
|
182
|
+
f as ProductCardFavoriteButton,
|
|
183
|
+
x as ProductCardImage,
|
|
184
|
+
c as ProductCardImageContainer,
|
|
185
|
+
d as ProductCardInfo,
|
|
186
|
+
C as ProductCardPrice,
|
|
187
|
+
w as ProductCardSkeleton,
|
|
188
|
+
g as ProductCardTitle,
|
|
189
|
+
D as ProductLink,
|
|
190
|
+
Be as Progress,
|
|
191
|
+
b as QuantitySelector,
|
|
192
|
+
Ue as RadioGroup,
|
|
193
|
+
be as RadioGroupItem,
|
|
194
|
+
Ee as ResizableHandle,
|
|
195
|
+
Le as ResizablePanel,
|
|
196
|
+
Ne as ResizablePanelGroup,
|
|
197
|
+
ye as ScrollArea,
|
|
198
|
+
Ge as ScrollBar,
|
|
199
|
+
E as Search,
|
|
200
|
+
L as SearchInput,
|
|
201
|
+
N as SearchProvider,
|
|
202
|
+
O as SearchResultsList,
|
|
203
|
+
Ve as Select,
|
|
204
|
+
ze as SelectContent,
|
|
205
|
+
_e as SelectGroup,
|
|
206
|
+
We as SelectItem,
|
|
207
|
+
Ye as SelectLabel,
|
|
208
|
+
qe as SelectScrollDownButton,
|
|
209
|
+
Ke as SelectScrollUpButton,
|
|
210
|
+
Qe as SelectSeparator,
|
|
211
|
+
je as SelectTrigger,
|
|
212
|
+
Je as SelectValue,
|
|
213
|
+
Ze as Separator,
|
|
214
|
+
ro as Sheet,
|
|
215
|
+
eo as SheetClose,
|
|
216
|
+
oo as SheetContent,
|
|
217
|
+
to as SheetDescription,
|
|
218
|
+
ao as SheetFooter,
|
|
219
|
+
io as SheetHeader,
|
|
220
|
+
po as SheetTitle,
|
|
221
|
+
no as SheetTrigger,
|
|
222
|
+
uo as Skeleton,
|
|
223
|
+
fa as Social,
|
|
224
|
+
sr as TextInput,
|
|
225
|
+
so as Toaster,
|
|
226
|
+
$ as Touchable,
|
|
227
|
+
Y as TransitionLink,
|
|
228
|
+
pa as UserState,
|
|
229
|
+
na as UserTokenGenerateUserErrorCode,
|
|
230
|
+
nr as VideoPlayer,
|
|
231
|
+
Gr as badgeVariants,
|
|
232
|
+
jt as extractBrandTheme,
|
|
233
|
+
oa as fileToDataUri,
|
|
234
|
+
Kt as formatError,
|
|
235
|
+
Jt as formatReviewCount,
|
|
236
|
+
Xt as getFeaturedImages,
|
|
237
|
+
ta as getResizedImageUrl,
|
|
238
|
+
aa as getThumbhashDataURL,
|
|
239
|
+
Zt as normalizeRating,
|
|
240
|
+
ra as parseUrl,
|
|
241
|
+
ot as useAsyncStorage,
|
|
242
|
+
Fo as useBuyerAttributes,
|
|
243
|
+
lt as useCloseMini,
|
|
244
|
+
ht as useCreateImageContent,
|
|
245
|
+
rt as useCuratedProducts,
|
|
246
|
+
Ro as useCurrentUser,
|
|
247
|
+
ft as useDeeplink,
|
|
248
|
+
Rt as useErrorScreen,
|
|
249
|
+
It as useErrorToast,
|
|
250
|
+
ho as useFollowedShops,
|
|
251
|
+
Io as useFollowedShopsActions,
|
|
252
|
+
bo as useGenerateUserToken,
|
|
253
|
+
Ft as useImagePicker,
|
|
254
|
+
pt as useImageUpload,
|
|
255
|
+
bt as useKeyboardAvoidingView,
|
|
256
|
+
ct as useNavigateWithTransition,
|
|
257
|
+
zt as useOnAppStateChange,
|
|
258
|
+
yt as useOnMiniBlur,
|
|
259
|
+
Ht as useOnMiniClose,
|
|
260
|
+
Nt as useOnMiniFocus,
|
|
261
|
+
wo as useOrders,
|
|
262
|
+
Zo as usePopularProducts,
|
|
263
|
+
Ho as useProduct,
|
|
264
|
+
yo as useProductList,
|
|
265
|
+
Eo as useProductListActions,
|
|
266
|
+
No as useProductLists,
|
|
267
|
+
qo as useProductMedia,
|
|
268
|
+
Qo as useProductSearch,
|
|
269
|
+
Wo as useProductVariants,
|
|
270
|
+
zo as useProducts,
|
|
271
|
+
xo as useRecentProducts,
|
|
272
|
+
Co as useRecentShops,
|
|
273
|
+
Jo as useRecommendedProducts,
|
|
274
|
+
At as useRecommendedShops,
|
|
275
|
+
Et as useRequestPermissions,
|
|
276
|
+
So as useSavedProducts,
|
|
277
|
+
Ao as useSavedProductsActions,
|
|
278
|
+
at as useSecureStorage,
|
|
279
|
+
wt as useShare,
|
|
280
|
+
Ct as useShop,
|
|
281
|
+
St as useShopCartActions,
|
|
282
|
+
mt as useShopNavigation
|
|
281
283
|
};
|
|
282
284
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|