@lanaco/lnc-react-ui 4.0.25 → 4.0.26
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/Kanban.cjs +2 -2
- package/dist/Kanban.js +81 -83
- package/dist/index-BlV3tdJ8.cjs +87 -0
- package/dist/index-DGl-lSfF.js +122 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +100 -92
- package/dist/index10.cjs +64 -91
- package/dist/index10.js +104 -161
- package/dist/index11.cjs +62 -112
- package/dist/index11.js +101 -1510
- package/dist/index12.cjs +194 -0
- package/dist/index12.js +312 -0
- package/dist/index13.cjs +98 -0
- package/dist/index13.js +221 -0
- package/dist/index14.cjs +161 -0
- package/dist/index14.js +254 -0
- package/dist/index15.cjs +135 -0
- package/dist/index15.js +1534 -0
- package/dist/index3.cjs +19 -56
- package/dist/index3.js +72 -113
- package/dist/index4.cjs +54 -34
- package/dist/index4.js +112 -77
- package/dist/index5.cjs +33 -66
- package/dist/index5.js +80 -124
- package/dist/index6.cjs +60 -44
- package/dist/index6.js +119 -79
- package/dist/index7.cjs +26 -43
- package/dist/index7.js +60 -94
- package/dist/index8.cjs +56 -124
- package/dist/index8.js +110 -194
- package/dist/index9.cjs +127 -67
- package/dist/index9.js +193 -123
- package/dist/useEffectOnce-DFrzfNzT.cjs +1 -0
- package/dist/useEffectOnce-guOKBPuL.js +7 -0
- package/package.json +6 -2
- package/vite.config.js +16 -0
package/dist/index10.cjs
CHANGED
|
@@ -1,78 +1,49 @@
|
|
|
1
|
-
"use strict";const i=require("react/jsx-runtime"),
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
"use strict";const i=require("react/jsx-runtime"),p=require("react"),c=require("./emotion-styled.browser.esm-Cbp_XsK4.cjs"),g=require("./consts-dNz9tpt4.cjs"),b=require("./useDetectMobile-rBe0FiP2.cjs"),f=require("./style-C3OB0uad.cjs"),a=require("./utils-CE6bljYe.cjs"),j=c.newStyled.div`
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 22.5rem;
|
|
4
|
+
min-height: 22.5rem;
|
|
5
|
+
max-height: 22.5rem;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
|
|
8
|
+
0px 1px 2px 0px rgba(0, 0, 0, 0.06);
|
|
9
|
+
border: 1px solid var(--gray-95008, #14161a14);
|
|
10
|
+
border-radius: 0.75rem;
|
|
11
|
+
margin-bottom: 0.5rem;
|
|
5
12
|
|
|
6
|
-
&
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
13
|
+
& img {
|
|
14
|
+
width: 100%;
|
|
15
|
+
height: 100%;
|
|
16
|
+
object-fit: cover;
|
|
10
17
|
}
|
|
18
|
+
`,v=c.newStyled.div`
|
|
19
|
+
display: grid;
|
|
20
|
+
grid-template-columns: ${o=>`repeat(${o.limit}, minmax(0, 1fr))`};
|
|
21
|
+
gap: 1.25rem;
|
|
11
22
|
|
|
12
|
-
@media (max-width: ${
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
grid-column: 1 / 3;
|
|
17
|
-
max-width: unset;
|
|
18
|
-
margin: unset;
|
|
19
|
-
}
|
|
23
|
+
@media (max-width: ${g.MOBILE_SIZE_PX+"px"}) {
|
|
24
|
+
display: flex;
|
|
25
|
+
gap: 1rem;
|
|
26
|
+
overflow-x: auto;
|
|
20
27
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
width: unset;
|
|
28
|
+
-webkit-overflow-scrolling: touch;
|
|
29
|
+
::-webkit-scrollbar {
|
|
30
|
+
-webkit-appearance: none;
|
|
25
31
|
}
|
|
32
|
+
-ms-overflow-style: none;
|
|
33
|
+
/* Internet Explorer 10+ */
|
|
34
|
+
scrollbar-width: none;
|
|
35
|
+
/* Firefox */
|
|
26
36
|
|
|
27
|
-
|
|
28
|
-
|
|
37
|
+
&::-webkit-scrollbar {
|
|
38
|
+
display: none;
|
|
39
|
+
/* Safari and Chrome */
|
|
29
40
|
}
|
|
30
41
|
}
|
|
31
|
-
|
|
32
|
-
background-color: var(--gray-200, #dddfe4);
|
|
33
|
-
border-radius: 0.75rem;
|
|
34
|
-
min-width: 11.625rem;
|
|
35
|
-
min-height: 11.625rem;
|
|
36
|
-
max-width: 11.625rem;
|
|
37
|
-
max-height: 11.625rem;
|
|
38
|
-
${c.linearGradientAnimation("-90deg")}
|
|
39
|
-
`;const S=g.newStyled.div`
|
|
42
|
+
`,y=c.newStyled.div`
|
|
40
43
|
display: flex;
|
|
41
44
|
flex-direction: column;
|
|
42
|
-
|
|
43
|
-
position: relative;
|
|
44
|
-
border-radius: 0.75rem;
|
|
45
|
-
overflow: hidden;
|
|
45
|
+
gap: 0.5rem;
|
|
46
46
|
cursor: pointer;
|
|
47
|
-
background: linear-gradient(
|
|
48
|
-
178deg,
|
|
49
|
-
rgba(0, 0, 0, 0) 1.5%,
|
|
50
|
-
rgba(0, 0, 0, 0.16) 8.95%,
|
|
51
|
-
#000 98.39%
|
|
52
|
-
);
|
|
53
|
-
|
|
54
|
-
& .text-block {
|
|
55
|
-
padding: 0.75rem;
|
|
56
|
-
z-index: 1;
|
|
57
|
-
display: flex;
|
|
58
|
-
flex-direction: column;
|
|
59
|
-
gap: 0.5rem;
|
|
60
|
-
position: absolute;
|
|
61
|
-
bottom: 0rem;
|
|
62
|
-
left: 0rem;
|
|
63
|
-
}
|
|
64
|
-
& .img-wrapper {
|
|
65
|
-
position: absolute;
|
|
66
|
-
top: 0;
|
|
67
|
-
left: 0;
|
|
68
|
-
z-index: 0;
|
|
69
|
-
background: linear-gradient(
|
|
70
|
-
178deg,
|
|
71
|
-
rgba(0, 0, 0, 0) 1.5%,
|
|
72
|
-
rgba(0, 0, 0, 0.16) 8.95%,
|
|
73
|
-
#000 98.39%
|
|
74
|
-
);
|
|
75
|
-
}
|
|
76
47
|
|
|
77
48
|
& img {
|
|
78
49
|
width: 100%;
|
|
@@ -81,37 +52,39 @@
|
|
|
81
52
|
border-radius: 0.75rem;
|
|
82
53
|
}
|
|
83
54
|
|
|
84
|
-
& .
|
|
85
|
-
|
|
55
|
+
& .card-title {
|
|
56
|
+
font-size: 0.875rem;
|
|
57
|
+
font-weight: 600;
|
|
58
|
+
${a.truncateTextInRows(2)}
|
|
86
59
|
}
|
|
87
60
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
font-weight: 500;
|
|
93
|
-
padding: 0 0.38rem;
|
|
94
|
-
min-height: 1.25rem;
|
|
95
|
-
max-height: 1.25rem;
|
|
96
|
-
width: fit-content;
|
|
97
|
-
display: flex;
|
|
98
|
-
align-items: center;
|
|
99
|
-
justify-content: center;
|
|
100
|
-
border-radius: 62.4375rem;
|
|
101
|
-
z-index: 1;
|
|
102
|
-
background-color: var(--white, #fff);
|
|
103
|
-
color: var(--gray-950, #14161A);
|
|
61
|
+
&:hover {
|
|
62
|
+
& .card-title {
|
|
63
|
+
color: var(--primary-500, #F59E0B);
|
|
64
|
+
}
|
|
104
65
|
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
color:
|
|
108
|
-
|
|
66
|
+
|
|
67
|
+
& .skeleton-img {
|
|
68
|
+
background-color: ${a.linearGradientAnimation("-90deg")};
|
|
69
|
+
border-radius: 0.75rem;
|
|
70
|
+
border: 1px solid white;
|
|
109
71
|
}
|
|
110
72
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
73
|
+
& .skeleton-title {
|
|
74
|
+
background-color: ${a.linearGradientAnimation("-90deg")};
|
|
75
|
+
width: 100%;
|
|
76
|
+
height: 1.25rem;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@media (max-width: ${g.MOBILE_SIZE_PX+"px"}) {
|
|
80
|
+
& img {
|
|
81
|
+
width: 8.875rem;
|
|
82
|
+
height: 8.875rem;
|
|
83
|
+
min-width: 8.875rem;
|
|
84
|
+
min-height: 8.875rem;
|
|
85
|
+
min-width: 8.875rem;
|
|
86
|
+
min-height: 8.875rem;
|
|
87
|
+
object-fit: cover;
|
|
115
88
|
}
|
|
116
89
|
}
|
|
117
|
-
`,h=
|
|
90
|
+
`,h=p.forwardRef((o,m)=>{const{uuid:d,title:r,image:n,sellerUuid:u,onSelectCard:t=()=>{},imageComponent:s}=o;return i.jsxs(y,{className:"product-card",onClick:t,children:[a.isDefined(s)?s:i.jsx("img",{src:n}),i.jsx("div",{className:"card-title",children:r})]})}),S=p.forwardRef((o,m)=>{const{icon:d,items:r,limit:n=4,bannerImage:u,onSelectCard:t=()=>{},title:s="Season inspiration"}=o,w=b.useDetectMobile();return i.jsxs(f.RegulatTitleSectionWrapper,{ref:m,children:[i.jsx("div",{className:"regular-title",children:i.jsxs("div",{className:"regular-title-text",children:[a.isDefinedNotEmptyString(d)&&i.jsx("i",{className:d}),i.jsx("span",{children:s})]})}),i.jsx(j,{className:"products-banner",children:i.jsx("img",{src:u})}),i.jsx(v,{limit:n,children:w===!0?r==null?void 0:r.map((e,l)=>i.jsx(h,{title:e==null?void 0:e.title,image:e==null?void 0:e.image,sellerUuid:e==null?void 0:e.sellerUuid,uuid:e==null?void 0:e.uuid,onSelectCard:()=>t==null?void 0:t(e==null?void 0:e.uuid)},l)):r==null?void 0:r.slice(0,n).map((e,l)=>i.jsx(h,{title:e==null?void 0:e.title,image:e==null?void 0:e.image,sellerUuid:e==null?void 0:e.sellerUuid,uuid:e==null?void 0:e.uuid,onSelectCard:()=>t==null?void 0:t(e==null?void 0:e.uuid)},l))})]})});module.exports=S;
|
package/dist/index10.js
CHANGED
|
@@ -1,87 +1,56 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import { n as
|
|
4
|
-
import { M as
|
|
5
|
-
import { u as
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { jsxs as m, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as g } from "react";
|
|
3
|
+
import { n as s } from "./emotion-styled.browser.esm-BiK8DcgW.js";
|
|
4
|
+
import { M as f } from "./consts-DNVz1x1I.js";
|
|
5
|
+
import { u as w } from "./useDetectMobile-BookNOsk.js";
|
|
6
|
+
import { R as v } from "./style-Ch-xOasu.js";
|
|
7
|
+
import { t as k, m as h, l as y, k as N } from "./utils-DtEdJZWa.js";
|
|
8
|
+
const S = s.div`
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 22.5rem;
|
|
11
|
+
min-height: 22.5rem;
|
|
12
|
+
max-height: 22.5rem;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
|
|
15
|
+
0px 1px 2px 0px rgba(0, 0, 0, 0.06);
|
|
16
|
+
border: 1px solid var(--gray-95008, #14161a14);
|
|
17
|
+
border-radius: 0.75rem;
|
|
18
|
+
margin-bottom: 0.5rem;
|
|
12
19
|
|
|
13
|
-
&
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
20
|
+
& img {
|
|
21
|
+
width: 100%;
|
|
22
|
+
height: 100%;
|
|
23
|
+
object-fit: cover;
|
|
17
24
|
}
|
|
25
|
+
`, $ = s.div`
|
|
26
|
+
display: grid;
|
|
27
|
+
grid-template-columns: ${(a) => `repeat(${a.limit}, minmax(0, 1fr))`};
|
|
28
|
+
gap: 1.25rem;
|
|
18
29
|
|
|
19
|
-
@media (max-width: ${
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
grid-column: 1 / 3;
|
|
24
|
-
max-width: unset;
|
|
25
|
-
margin: unset;
|
|
26
|
-
}
|
|
30
|
+
@media (max-width: ${f + "px"}) {
|
|
31
|
+
display: flex;
|
|
32
|
+
gap: 1rem;
|
|
33
|
+
overflow-x: auto;
|
|
27
34
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
width: unset;
|
|
35
|
+
-webkit-overflow-scrolling: touch;
|
|
36
|
+
::-webkit-scrollbar {
|
|
37
|
+
-webkit-appearance: none;
|
|
32
38
|
}
|
|
39
|
+
-ms-overflow-style: none;
|
|
40
|
+
/* Internet Explorer 10+ */
|
|
41
|
+
scrollbar-width: none;
|
|
42
|
+
/* Firefox */
|
|
33
43
|
|
|
34
|
-
|
|
35
|
-
|
|
44
|
+
&::-webkit-scrollbar {
|
|
45
|
+
display: none;
|
|
46
|
+
/* Safari and Chrome */
|
|
36
47
|
}
|
|
37
48
|
}
|
|
38
|
-
|
|
39
|
-
g.div`
|
|
40
|
-
background-color: var(--gray-200, #dddfe4);
|
|
41
|
-
border-radius: 0.75rem;
|
|
42
|
-
min-width: 11.625rem;
|
|
43
|
-
min-height: 11.625rem;
|
|
44
|
-
max-width: 11.625rem;
|
|
45
|
-
max-height: 11.625rem;
|
|
46
|
-
${k("-90deg")}
|
|
47
|
-
`;
|
|
48
|
-
const U = g.div`
|
|
49
|
+
`, j = s.div`
|
|
49
50
|
display: flex;
|
|
50
51
|
flex-direction: column;
|
|
51
|
-
|
|
52
|
-
position: relative;
|
|
53
|
-
border-radius: 0.75rem;
|
|
54
|
-
overflow: hidden;
|
|
52
|
+
gap: 0.5rem;
|
|
55
53
|
cursor: pointer;
|
|
56
|
-
background: linear-gradient(
|
|
57
|
-
178deg,
|
|
58
|
-
rgba(0, 0, 0, 0) 1.5%,
|
|
59
|
-
rgba(0, 0, 0, 0.16) 8.95%,
|
|
60
|
-
#000 98.39%
|
|
61
|
-
);
|
|
62
|
-
|
|
63
|
-
& .text-block {
|
|
64
|
-
padding: 0.75rem;
|
|
65
|
-
z-index: 1;
|
|
66
|
-
display: flex;
|
|
67
|
-
flex-direction: column;
|
|
68
|
-
gap: 0.5rem;
|
|
69
|
-
position: absolute;
|
|
70
|
-
bottom: 0rem;
|
|
71
|
-
left: 0rem;
|
|
72
|
-
}
|
|
73
|
-
& .img-wrapper {
|
|
74
|
-
position: absolute;
|
|
75
|
-
top: 0;
|
|
76
|
-
left: 0;
|
|
77
|
-
z-index: 0;
|
|
78
|
-
background: linear-gradient(
|
|
79
|
-
178deg,
|
|
80
|
-
rgba(0, 0, 0, 0) 1.5%,
|
|
81
|
-
rgba(0, 0, 0, 0.16) 8.95%,
|
|
82
|
-
#000 98.39%
|
|
83
|
-
);
|
|
84
|
-
}
|
|
85
54
|
|
|
86
55
|
& img {
|
|
87
56
|
width: 100%;
|
|
@@ -90,120 +59,94 @@ const U = g.div`
|
|
|
90
59
|
border-radius: 0.75rem;
|
|
91
60
|
}
|
|
92
61
|
|
|
93
|
-
& .
|
|
94
|
-
|
|
62
|
+
& .card-title {
|
|
63
|
+
font-size: 0.875rem;
|
|
64
|
+
font-weight: 600;
|
|
65
|
+
${k(2)}
|
|
95
66
|
}
|
|
96
67
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
align-items: center;
|
|
108
|
-
justify-content: center;
|
|
109
|
-
border-radius: 62.4375rem;
|
|
110
|
-
z-index: 1;
|
|
111
|
-
background-color: var(--white, #fff);
|
|
112
|
-
color: var(--gray-950, #14161A);
|
|
68
|
+
&:hover {
|
|
69
|
+
& .card-title {
|
|
70
|
+
color: var(--primary-500, #F59E0B);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
& .skeleton-img {
|
|
75
|
+
background-color: ${h("-90deg")};
|
|
76
|
+
border-radius: 0.75rem;
|
|
77
|
+
border: 1px solid white;
|
|
113
78
|
}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
color:
|
|
117
|
-
|
|
79
|
+
|
|
80
|
+
& .skeleton-title {
|
|
81
|
+
background-color: ${h("-90deg")};
|
|
82
|
+
width: 100%;
|
|
83
|
+
height: 1.25rem;
|
|
118
84
|
}
|
|
119
85
|
|
|
120
|
-
|
|
121
|
-
&
|
|
122
|
-
|
|
123
|
-
|
|
86
|
+
@media (max-width: ${f + "px"}) {
|
|
87
|
+
& img {
|
|
88
|
+
width: 8.875rem;
|
|
89
|
+
height: 8.875rem;
|
|
90
|
+
min-width: 8.875rem;
|
|
91
|
+
min-height: 8.875rem;
|
|
92
|
+
min-width: 8.875rem;
|
|
93
|
+
min-height: 8.875rem;
|
|
94
|
+
object-fit: cover;
|
|
124
95
|
}
|
|
125
96
|
}
|
|
126
|
-
`,
|
|
97
|
+
`, u = g((a, c) => {
|
|
127
98
|
const {
|
|
128
|
-
uuid:
|
|
129
|
-
title:
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
isFree: i,
|
|
134
|
-
image: u,
|
|
135
|
-
sellerUuid: r,
|
|
136
|
-
onSelectCard: p = () => {
|
|
99
|
+
uuid: l,
|
|
100
|
+
title: i,
|
|
101
|
+
image: o,
|
|
102
|
+
sellerUuid: p,
|
|
103
|
+
onSelectCard: t = () => {
|
|
137
104
|
},
|
|
138
|
-
imageComponent:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
z(t) ? t : /* @__PURE__ */ a("img", { src: u }),
|
|
144
|
-
/* @__PURE__ */ l("div", { className: "text-block", children: [
|
|
145
|
-
/* @__PURE__ */ a("div", { className: "title-simple-product-card", children: c }),
|
|
146
|
-
/* @__PURE__ */ l("div", { className: "price-chip", children: [
|
|
147
|
-
d && n && `${N(d)} ${S(n)}`,
|
|
148
|
-
s && e,
|
|
149
|
-
i && o
|
|
150
|
-
] })
|
|
151
|
-
] })
|
|
105
|
+
imageComponent: d
|
|
106
|
+
} = a;
|
|
107
|
+
return /* @__PURE__ */ m(j, { className: "product-card", onClick: t, children: [
|
|
108
|
+
y(d) ? d : /* @__PURE__ */ r("img", { src: o }),
|
|
109
|
+
/* @__PURE__ */ r("div", { className: "card-title", children: i })
|
|
152
110
|
] });
|
|
153
|
-
}),
|
|
154
|
-
var t;
|
|
111
|
+
}), P = g((a, c) => {
|
|
155
112
|
const {
|
|
156
|
-
|
|
157
|
-
subtitle: c,
|
|
158
|
-
description: d,
|
|
159
|
-
buttonText: n,
|
|
160
|
-
buttonLink: s,
|
|
113
|
+
icon: l,
|
|
161
114
|
items: i,
|
|
162
|
-
|
|
115
|
+
limit: o = 4,
|
|
116
|
+
bannerImage: p,
|
|
117
|
+
onSelectCard: t = () => {
|
|
163
118
|
},
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
buttonText: n,
|
|
175
|
-
buttonLink: s,
|
|
176
|
-
onButtonAction: u,
|
|
177
|
-
className: "text-block-v1"
|
|
178
|
-
}
|
|
179
|
-
),
|
|
180
|
-
p === !0 ? (t = i == null ? void 0 : i.slice(0, 4)) == null ? void 0 : t.map((e, o) => /* @__PURE__ */ a(
|
|
181
|
-
b,
|
|
119
|
+
title: d = "Season inspiration"
|
|
120
|
+
} = a, b = w();
|
|
121
|
+
return /* @__PURE__ */ m(v, { ref: c, children: [
|
|
122
|
+
/* @__PURE__ */ r("div", { className: "regular-title", children: /* @__PURE__ */ m("div", { className: "regular-title-text", children: [
|
|
123
|
+
N(l) && /* @__PURE__ */ r("i", { className: l }),
|
|
124
|
+
/* @__PURE__ */ r("span", { children: d })
|
|
125
|
+
] }) }),
|
|
126
|
+
/* @__PURE__ */ r(S, { className: "products-banner", children: /* @__PURE__ */ r("img", { src: p }) }),
|
|
127
|
+
/* @__PURE__ */ r($, { limit: o, children: b === !0 ? i == null ? void 0 : i.map((e, n) => /* @__PURE__ */ r(
|
|
128
|
+
u,
|
|
182
129
|
{
|
|
183
130
|
title: e == null ? void 0 : e.title,
|
|
184
|
-
price: e == null ? void 0 : e.price,
|
|
185
|
-
currency: e == null ? void 0 : e.currency,
|
|
186
131
|
image: e == null ? void 0 : e.image,
|
|
187
132
|
sellerUuid: e == null ? void 0 : e.sellerUuid,
|
|
188
133
|
uuid: e == null ? void 0 : e.uuid,
|
|
189
|
-
onSelectCard: () =>
|
|
134
|
+
onSelectCard: () => t == null ? void 0 : t(e == null ? void 0 : e.uuid)
|
|
190
135
|
},
|
|
191
|
-
|
|
192
|
-
)) : i == null ? void 0 : i.map((e,
|
|
193
|
-
|
|
136
|
+
n
|
|
137
|
+
)) : i == null ? void 0 : i.slice(0, o).map((e, n) => /* @__PURE__ */ r(
|
|
138
|
+
u,
|
|
194
139
|
{
|
|
195
140
|
title: e == null ? void 0 : e.title,
|
|
196
|
-
price: e == null ? void 0 : e.price,
|
|
197
|
-
currency: e == null ? void 0 : e.currency,
|
|
198
141
|
image: e == null ? void 0 : e.image,
|
|
199
142
|
sellerUuid: e == null ? void 0 : e.sellerUuid,
|
|
200
143
|
uuid: e == null ? void 0 : e.uuid,
|
|
201
|
-
onSelectCard: () =>
|
|
144
|
+
onSelectCard: () => t == null ? void 0 : t(e == null ? void 0 : e.uuid)
|
|
202
145
|
},
|
|
203
|
-
|
|
204
|
-
))
|
|
146
|
+
n
|
|
147
|
+
)) })
|
|
205
148
|
] });
|
|
206
149
|
});
|
|
207
150
|
export {
|
|
208
|
-
|
|
151
|
+
P as default
|
|
209
152
|
};
|