@vkzstudio/muza-ui 1.5.2 → 1.7.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/dist/components/ArticleCard/ArticleCard.d.ts.map +1 -1
- package/dist/components/ArticleCard/ArticleCard.js +161 -170
- package/dist/components/Button/Button.d.ts.map +1 -1
- package/dist/components/Button/Button.js +42 -40
- package/dist/components/Button/Button.stories.d.ts.map +1 -1
- package/dist/components/Carousel/Carousel.d.ts +99 -2
- package/dist/components/Carousel/Carousel.d.ts.map +1 -1
- package/dist/components/Carousel/Carousel.js +208 -151
- package/dist/components/Carousel/Carousel.stories.d.ts +2 -0
- package/dist/components/Carousel/Carousel.stories.d.ts.map +1 -1
- package/dist/components/Carousel/index.js +3 -2
- package/dist/components/CarouselSection/CarouselSection.examples.d.ts +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.d.ts +22 -3
- package/dist/components/DropdownMenu/DropdownMenu.d.ts.map +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.js +131 -105
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts +3 -2
- package/dist/components/DropdownMenu/DropdownMenu.stories.d.ts.map +1 -1
- package/dist/components/MarketNav/MarketNav.examples.d.ts.map +1 -1
- package/dist/components/MultiSelect/MultiSelect.d.ts.map +1 -1
- package/dist/components/MultiSelect/MultiSelect.js +28 -29
- package/dist/components/OfferCard/OfferCard.d.ts +45 -17
- package/dist/components/OfferCard/OfferCard.d.ts.map +1 -1
- package/dist/components/OfferCard/OfferCard.js +180 -266
- package/dist/components/OfferCard/OfferCard.stories.d.ts +5 -2
- package/dist/components/OfferCard/OfferCard.stories.d.ts.map +1 -1
- package/dist/components/PartnerCard/PartnerCard.d.ts +90 -26
- package/dist/components/PartnerCard/PartnerCard.d.ts.map +1 -1
- package/dist/components/PartnerCard/PartnerCard.js +323 -264
- package/dist/components/PartnerCard/PartnerCard.stories.d.ts +6 -0
- package/dist/components/PartnerCard/PartnerCard.stories.d.ts.map +1 -1
- package/dist/components/PriceTag/PriceTag.d.ts +37 -0
- package/dist/components/PriceTag/PriceTag.d.ts.map +1 -0
- package/dist/components/PriceTag/PriceTag.js +43 -0
- package/dist/components/PriceTag/PriceTag.stories.d.ts +8 -0
- package/dist/components/PriceTag/PriceTag.stories.d.ts.map +1 -0
- package/dist/components/PriceTag/index.d.ts +2 -0
- package/dist/components/PriceTag/index.d.ts.map +1 -0
- package/dist/components/PriceTag/index.js +5 -0
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/components/Select/Select.js +74 -100
- package/dist/components/Select/Select.stories.d.ts.map +1 -1
- package/dist/components/Select/SelectTrigger.d.ts +54 -0
- package/dist/components/Select/SelectTrigger.d.ts.map +1 -0
- package/dist/components/Select/SelectTrigger.js +57 -0
- package/dist/components/Select/SelectTrigger.stories.d.ts +11 -0
- package/dist/components/Select/SelectTrigger.stories.d.ts.map +1 -0
- package/dist/components/Select/index.d.ts +2 -0
- package/dist/components/Select/index.d.ts.map +1 -1
- package/dist/components/Select/index.js +6 -2
- package/dist/components/Select/utils.d.ts +10 -1
- package/dist/components/Select/utils.d.ts.map +1 -1
- package/dist/components/Select/utils.js +3 -5
- package/dist/components/Tooltip/Tooltip.d.ts +18 -7
- package/dist/components/Tooltip/Tooltip.d.ts.map +1 -1
- package/dist/components/Tooltip/Tooltip.js +116 -68
- package/dist/components/Tooltip/Tooltip.stories.d.ts +1 -0
- package/dist/components/Tooltip/Tooltip.stories.d.ts.map +1 -1
- package/dist/components/UniversalFooter/UniversalFooter.js +1 -1
- package/dist/components/VoucherCard/VoucherCard.d.ts +24 -1
- package/dist/components/VoucherCard/VoucherCard.d.ts.map +1 -1
- package/dist/components/VoucherCard/VoucherCard.js +68 -76
- package/dist/components/VoucherCard/VoucherCard.stories.d.ts +1 -0
- package/dist/components/VoucherCard/VoucherCard.stories.d.ts.map +1 -1
- package/dist/components/WebCheckoutNav/WebCheckoutNav.examples.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/internal/CardCompactShell.d.ts +80 -0
- package/dist/components/internal/CardCompactShell.d.ts.map +1 -0
- package/dist/components/internal/CardCompactShell.js +148 -0
- package/dist/components/internal/CardImageSlot.d.ts +56 -0
- package/dist/components/internal/CardImageSlot.d.ts.map +1 -0
- package/dist/components/internal/CardImageSlot.js +85 -0
- package/dist/index.js +356 -348
- package/dist/muza-ui.css +1 -1
- package/dist/styles/token-sizes.css +16 -4
- package/dist/utils/cn.d.ts.map +1 -1
- package/dist/utils/cn.js +6 -3
- package/dist/utils/disabledLinkProps.d.ts +8 -1
- package/dist/utils/disabledLinkProps.d.ts.map +1 -1
- package/dist/utils/disabledLinkProps.js +0 -1
- package/llms-full.md +133 -2
- package/llms.txt +2 -0
- package/package.json +3 -1
|
@@ -1,36 +1,56 @@
|
|
|
1
|
-
import { jsx as e, jsxs as r, Fragment as
|
|
2
|
-
import * as
|
|
3
|
-
import { Slot as
|
|
4
|
-
import { cva as
|
|
5
|
-
import { useMuzaTranslationContext as
|
|
1
|
+
import { jsx as e, jsxs as r, Fragment as S } from "react/jsx-runtime";
|
|
2
|
+
import * as z from "react";
|
|
3
|
+
import { Slot as we } from "@radix-ui/react-slot";
|
|
4
|
+
import { cva as le } from "class-variance-authority";
|
|
5
|
+
import { useMuzaTranslationContext as Ne } from "../../translations/TranslationContext.js";
|
|
6
6
|
import { cn as n } from "../../utils/cn.js";
|
|
7
|
-
import { disabledLinkProps as
|
|
8
|
-
import { Button as
|
|
9
|
-
import { CategoryIcon as
|
|
10
|
-
import { DotDivider as
|
|
7
|
+
import { disabledLinkProps as te } from "../../utils/disabledLinkProps.js";
|
|
8
|
+
import { Button as ke } from "../Button/Button.js";
|
|
9
|
+
import { CategoryIcon as Ce } from "../CategoryIcon/CategoryIcon.js";
|
|
10
|
+
import { DotDivider as se } from "../DotDivider/DotDivider.js";
|
|
11
11
|
import { Flex as m } from "../Flex/Flex.js";
|
|
12
|
-
import { HeartButton as
|
|
13
|
-
import { MapBold as
|
|
14
|
-
import { Rating as
|
|
15
|
-
import { Skeleton as
|
|
16
|
-
import { Tag as
|
|
17
|
-
import { Typography as
|
|
18
|
-
|
|
12
|
+
import { HeartButton as ye } from "../HeartButton/HeartButton.js";
|
|
13
|
+
import { MapBold as ze } from "@solar-icons/react-perf";
|
|
14
|
+
import { Rating as Te } from "../Rating/Rating.js";
|
|
15
|
+
import { Skeleton as c } from "../Skeleton/Skeleton.js";
|
|
16
|
+
import { Tag as I } from "../Tag/Tag.js";
|
|
17
|
+
import { Typography as x } from "../Typography/Typography.js";
|
|
18
|
+
import { cardCompactFillClass as ie, cardCompactContainerClass as Le, CardCompactShell as Re, CardCompactSkeleton as Se } from "../internal/CardCompactShell.js";
|
|
19
|
+
import { CardImageSlot as K, hasImageContent as Pe } from "../internal/CardImageSlot.js";
|
|
20
|
+
const Ve = le(
|
|
19
21
|
"group relative inline-flex border border-solid transition-colors focus-visible:outline-none data-[disabled=true]:pointer-events-none",
|
|
20
22
|
{
|
|
21
23
|
variants: {
|
|
22
24
|
variant: {
|
|
25
|
+
compact: Le,
|
|
23
26
|
search: "w-full flex-row gap-comp-partner-card-search-gap border-transparent",
|
|
24
27
|
heroLarge: "h-full w-full flex-col justify-end gap-comp-partner-card-hero-large-gap overflow-hidden rounded-comp-partner-card-hero-large-radius border-transparent p-comp-partner-card-hero-large-p focus-visible:border-stroke-brand-focused",
|
|
25
28
|
heroSmall: "h-full w-full flex-col justify-end gap-comp-partner-card-hero-sm-gap overflow-hidden rounded-comp-partner-card-hero-sm-radius border-transparent p-comp-partner-card-hero-sm-p focus-visible:border-stroke-brand-focused",
|
|
26
29
|
listView: "w-full flex-row gap-comp-partner-card-list-view-gap border-transparent"
|
|
30
|
+
},
|
|
31
|
+
isTinted: {
|
|
32
|
+
true: "",
|
|
33
|
+
false: ""
|
|
27
34
|
}
|
|
28
35
|
},
|
|
29
|
-
|
|
36
|
+
compoundVariants: [
|
|
37
|
+
{
|
|
38
|
+
variant: "compact",
|
|
39
|
+
isTinted: !1,
|
|
40
|
+
class: ie.default
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
variant: "compact",
|
|
44
|
+
isTinted: !0,
|
|
45
|
+
class: ie.tinted
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
defaultVariants: { variant: "search", isTinted: !1 }
|
|
30
49
|
}
|
|
31
|
-
),
|
|
50
|
+
), Ie = le("", {
|
|
32
51
|
variants: {
|
|
33
52
|
variant: {
|
|
53
|
+
compact: "text-text-dark-primary-def group-has-[a:focus-visible]:text-text-brand-focused group-has-[a:hover]:text-text-brand-hover group-data-[disabled=true]:text-text-dark-disabled",
|
|
34
54
|
search: "text-text-dark-primary-def group-has-[a:focus-visible]:text-text-brand-focused group-has-[a:hover]:text-text-brand-hover group-data-[disabled=true]:text-text-dark-disabled",
|
|
35
55
|
heroLarge: "text-text-invert-fixed group-data-[disabled=true]:text-text-dark-disabled",
|
|
36
56
|
heroSmall: "text-text-invert-fixed group-data-[disabled=true]:text-text-dark-disabled",
|
|
@@ -38,10 +58,10 @@ const xe = Z(
|
|
|
38
58
|
}
|
|
39
59
|
},
|
|
40
60
|
defaultVariants: { variant: "search" }
|
|
41
|
-
}),
|
|
42
|
-
/* @__PURE__ */ e(
|
|
61
|
+
}), P = ({ rating: s, ratingCount: a, disabled: d }) => /* @__PURE__ */ r(m, { align: "center", gap: "xs", children: [
|
|
62
|
+
/* @__PURE__ */ e(Te, { value: s, allowHalf: !0, disabled: d }),
|
|
43
63
|
a != null && /* @__PURE__ */ r(
|
|
44
|
-
|
|
64
|
+
x,
|
|
45
65
|
{
|
|
46
66
|
component: "span",
|
|
47
67
|
variant: "body",
|
|
@@ -49,7 +69,7 @@ const xe = Z(
|
|
|
49
69
|
weight: "regular",
|
|
50
70
|
fixY: !0,
|
|
51
71
|
className: n(
|
|
52
|
-
|
|
72
|
+
d ? "text-text-dark-disabled" : "text-text-dark-primary-def"
|
|
53
73
|
),
|
|
54
74
|
children: [
|
|
55
75
|
"(",
|
|
@@ -59,51 +79,51 @@ const xe = Z(
|
|
|
59
79
|
}
|
|
60
80
|
)
|
|
61
81
|
] });
|
|
62
|
-
|
|
63
|
-
const
|
|
64
|
-
categoryIcon:
|
|
82
|
+
P.displayName = "PartnerCard.RatingRow";
|
|
83
|
+
const V = ({
|
|
84
|
+
categoryIcon: s,
|
|
65
85
|
categoryColor: a,
|
|
66
|
-
tags:
|
|
67
|
-
maxNumberOfVisibleTags:
|
|
86
|
+
tags: d,
|
|
87
|
+
maxNumberOfVisibleTags: i,
|
|
68
88
|
wrap: h = !0,
|
|
69
|
-
className:
|
|
89
|
+
className: u
|
|
70
90
|
}) => {
|
|
71
|
-
const
|
|
91
|
+
const g = d.slice(0, i), l = d.length - g.length;
|
|
72
92
|
return /* @__PURE__ */ r(
|
|
73
93
|
m,
|
|
74
94
|
{
|
|
75
95
|
align: "center",
|
|
76
96
|
gap: "2xs",
|
|
77
97
|
wrap: h ? "wrap" : "nowrap",
|
|
78
|
-
className: n("min-w-0 overflow-hidden",
|
|
98
|
+
className: n("min-w-0 overflow-hidden", u),
|
|
79
99
|
children: [
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
100
|
+
s && a && /* @__PURE__ */ e(Ce, { color: a, icon: s }),
|
|
101
|
+
g.map((o, v) => /* @__PURE__ */ e(
|
|
102
|
+
I,
|
|
83
103
|
{
|
|
84
104
|
variant: "outlined",
|
|
85
105
|
size: "small",
|
|
86
106
|
className: "min-w-[50px] shrink overflow-hidden",
|
|
87
|
-
children:
|
|
107
|
+
children: o
|
|
88
108
|
},
|
|
89
|
-
|
|
109
|
+
v
|
|
90
110
|
)),
|
|
91
|
-
|
|
111
|
+
l > 0 && /* @__PURE__ */ r(I, { variant: "outlined", size: "small", className: "shrink-0", children: [
|
|
92
112
|
"+",
|
|
93
|
-
|
|
113
|
+
l
|
|
94
114
|
] }, "more")
|
|
95
115
|
]
|
|
96
116
|
}
|
|
97
117
|
);
|
|
98
118
|
};
|
|
99
|
-
|
|
100
|
-
const
|
|
101
|
-
category:
|
|
119
|
+
V.displayName = "PartnerCard.TagsRow";
|
|
120
|
+
const oe = ({
|
|
121
|
+
category: s,
|
|
102
122
|
tags: a,
|
|
103
|
-
maxNumberOfVisibleTags:
|
|
123
|
+
maxNumberOfVisibleTags: d
|
|
104
124
|
}) => {
|
|
105
|
-
const
|
|
106
|
-
return
|
|
125
|
+
const i = { variant: "invert" }, h = s ? [s, ...a] : a, u = h.slice(0, d), g = h.length - u.length;
|
|
126
|
+
return u.length === 0 ? null : /* @__PURE__ */ r(
|
|
107
127
|
m,
|
|
108
128
|
{
|
|
109
129
|
align: "center",
|
|
@@ -111,57 +131,66 @@ const ee = ({
|
|
|
111
131
|
wrap: "wrap",
|
|
112
132
|
className: "relative z-10 self-start",
|
|
113
133
|
children: [
|
|
114
|
-
|
|
115
|
-
|
|
134
|
+
u.map((l, o) => /* @__PURE__ */ e(I, { ...i, size: "default", children: l }, o)),
|
|
135
|
+
g > 0 && /* @__PURE__ */ r(I, { ...i, size: "default", children: [
|
|
116
136
|
"+",
|
|
117
|
-
|
|
137
|
+
g
|
|
118
138
|
] }, "more")
|
|
119
139
|
]
|
|
120
140
|
}
|
|
121
141
|
);
|
|
122
142
|
};
|
|
123
|
-
|
|
124
|
-
const
|
|
125
|
-
variant:
|
|
143
|
+
oe.displayName = "PartnerCard.HeroTagsRow";
|
|
144
|
+
const ne = ({
|
|
145
|
+
variant: s = "search",
|
|
126
146
|
color: a = "default",
|
|
147
|
+
isTinted: d = !1,
|
|
127
148
|
className: i,
|
|
128
|
-
...
|
|
129
|
-
}) =>
|
|
149
|
+
...h
|
|
150
|
+
}) => s === "compact" ? /* @__PURE__ */ e(
|
|
151
|
+
Se,
|
|
152
|
+
{
|
|
153
|
+
color: a,
|
|
154
|
+
isTinted: d,
|
|
155
|
+
className: i,
|
|
156
|
+
...h
|
|
157
|
+
}
|
|
158
|
+
) : s === "heroLarge" || s === "heroSmall" ? /* @__PURE__ */ e(
|
|
130
159
|
"div",
|
|
131
160
|
{
|
|
132
161
|
className: n(
|
|
133
162
|
"relative h-full w-full overflow-hidden",
|
|
134
|
-
|
|
163
|
+
s === "heroLarge" ? "rounded-comp-partner-card-hero-large-radius" : "rounded-comp-partner-card-hero-sm-radius",
|
|
135
164
|
i
|
|
136
165
|
),
|
|
137
|
-
...
|
|
166
|
+
...h,
|
|
138
167
|
children: /* @__PURE__ */ e(
|
|
139
|
-
|
|
168
|
+
c,
|
|
140
169
|
{
|
|
141
170
|
color: a,
|
|
142
171
|
className: "absolute inset-0 size-full rounded-none"
|
|
143
172
|
}
|
|
144
173
|
)
|
|
145
174
|
}
|
|
146
|
-
) :
|
|
175
|
+
) : s === "listView" ? /* @__PURE__ */ r(
|
|
147
176
|
"div",
|
|
148
177
|
{
|
|
149
178
|
className: n(
|
|
150
179
|
"inline-flex w-full flex-row gap-comp-partner-card-list-view-gap",
|
|
151
180
|
i
|
|
152
181
|
),
|
|
153
|
-
...
|
|
182
|
+
...h,
|
|
154
183
|
children: [
|
|
155
184
|
/* @__PURE__ */ r("div", { className: "relative h-comp-partner-card-list-view-h-img w-comp-partner-card-list-view-w-img shrink-0 overflow-hidden rounded-comp-partner-card-list-view-radius-img", children: [
|
|
156
185
|
/* @__PURE__ */ e(
|
|
157
|
-
|
|
186
|
+
c,
|
|
158
187
|
{
|
|
159
188
|
color: a,
|
|
160
189
|
className: "absolute inset-0 size-full rounded-none"
|
|
161
190
|
}
|
|
162
191
|
),
|
|
163
192
|
/* @__PURE__ */ e("div", { className: "absolute top-comp-partner-card-list-view-p-img left-comp-partner-card-list-view-p-img", children: /* @__PURE__ */ e(
|
|
164
|
-
|
|
193
|
+
c,
|
|
165
194
|
{
|
|
166
195
|
color: a,
|
|
167
196
|
className: "size-comp-button-h-xs rounded-full"
|
|
@@ -169,10 +198,10 @@ const ae = ({
|
|
|
169
198
|
) })
|
|
170
199
|
] }),
|
|
171
200
|
/* @__PURE__ */ r(m, { direction: "column", flex: 1, className: "min-w-0 gap-sm", children: [
|
|
172
|
-
/* @__PURE__ */ e(
|
|
173
|
-
/* @__PURE__ */ e(
|
|
201
|
+
/* @__PURE__ */ e(c, { color: a, className: "h-5 w-full max-w-60" }),
|
|
202
|
+
/* @__PURE__ */ e(c, { color: a, className: "h-4 w-40" }),
|
|
174
203
|
/* @__PURE__ */ e(
|
|
175
|
-
|
|
204
|
+
c,
|
|
176
205
|
{
|
|
177
206
|
color: a,
|
|
178
207
|
className: "h-6 w-32 rounded-comp-tag-radius"
|
|
@@ -188,18 +217,18 @@ const ae = ({
|
|
|
188
217
|
"inline-flex w-full flex-row gap-comp-partner-card-search-gap",
|
|
189
218
|
i
|
|
190
219
|
),
|
|
191
|
-
...
|
|
220
|
+
...h,
|
|
192
221
|
children: [
|
|
193
222
|
/* @__PURE__ */ r("div", { className: "relative h-comp-partner-card-search-h-img w-comp-partner-card-search-w-img shrink-0 overflow-hidden rounded-comp-partner-card-search-radius-img", children: [
|
|
194
223
|
/* @__PURE__ */ e(
|
|
195
|
-
|
|
224
|
+
c,
|
|
196
225
|
{
|
|
197
226
|
color: a,
|
|
198
227
|
className: "absolute inset-0 size-full rounded-none"
|
|
199
228
|
}
|
|
200
229
|
),
|
|
201
230
|
/* @__PURE__ */ e("div", { className: "absolute top-comp-partner-card-search-p-img left-comp-partner-card-search-p-img", children: /* @__PURE__ */ e(
|
|
202
|
-
|
|
231
|
+
c,
|
|
203
232
|
{
|
|
204
233
|
color: a,
|
|
205
234
|
className: "size-comp-button-h-xs rounded-full"
|
|
@@ -213,12 +242,12 @@ const ae = ({
|
|
|
213
242
|
flex: 1,
|
|
214
243
|
className: "min-w-0 gap-comp-partner-card-search-gap-text",
|
|
215
244
|
children: [
|
|
216
|
-
/* @__PURE__ */ e(
|
|
217
|
-
/* @__PURE__ */ e(
|
|
218
|
-
/* @__PURE__ */ e(
|
|
219
|
-
/* @__PURE__ */ e(
|
|
245
|
+
/* @__PURE__ */ e(c, { color: a, className: "h-5 w-full" }),
|
|
246
|
+
/* @__PURE__ */ e(c, { color: a, className: "h-4 w-32" }),
|
|
247
|
+
/* @__PURE__ */ e(c, { color: a, className: "h-4 w-40" }),
|
|
248
|
+
/* @__PURE__ */ e(c, { color: a, className: "h-4 w-48" }),
|
|
220
249
|
/* @__PURE__ */ e(
|
|
221
|
-
|
|
250
|
+
c,
|
|
222
251
|
{
|
|
223
252
|
color: a,
|
|
224
253
|
className: "mt-xs h-8 w-24 self-start rounded-full"
|
|
@@ -230,198 +259,227 @@ const ae = ({
|
|
|
230
259
|
]
|
|
231
260
|
}
|
|
232
261
|
);
|
|
233
|
-
|
|
234
|
-
const
|
|
235
|
-
|
|
236
|
-
alt: a,
|
|
237
|
-
wrapperClassName: i,
|
|
238
|
-
children: l
|
|
239
|
-
}) => /* @__PURE__ */ r("div", { className: i, children: [
|
|
240
|
-
/* @__PURE__ */ e(
|
|
241
|
-
"div",
|
|
242
|
-
{
|
|
243
|
-
className: n(
|
|
244
|
-
"absolute inset-0 overflow-hidden",
|
|
245
|
-
"[&>img]:size-full [&>img]:object-cover",
|
|
246
|
-
"transition-transform duration-300 ease-out group-hover:scale-110",
|
|
247
|
-
"group-data-[disabled=true]:opacity-50",
|
|
248
|
-
"group-data-[disabled=true]:grayscale",
|
|
249
|
-
"group-data-[disabled=true]:group-hover:scale-100"
|
|
250
|
-
),
|
|
251
|
-
children: typeof t == "string" ? /* @__PURE__ */ e("img", { src: t, alt: a }) : t
|
|
252
|
-
}
|
|
253
|
-
),
|
|
254
|
-
l
|
|
255
|
-
] });
|
|
256
|
-
V.displayName = "PartnerCard.ImageSlot";
|
|
257
|
-
const re = w.forwardRef(
|
|
258
|
-
(t, a) => {
|
|
262
|
+
ne.displayName = "PartnerCard.Skeleton";
|
|
263
|
+
const de = z.forwardRef(
|
|
264
|
+
(s, a) => {
|
|
259
265
|
const {
|
|
260
|
-
name:
|
|
261
|
-
image:
|
|
266
|
+
name: d,
|
|
267
|
+
image: i,
|
|
262
268
|
imageAlt: h,
|
|
263
|
-
|
|
269
|
+
placeholderIcon: u,
|
|
270
|
+
placeholderColor: g,
|
|
271
|
+
address: l,
|
|
264
272
|
distance: o,
|
|
265
|
-
rating:
|
|
266
|
-
ratingCount:
|
|
267
|
-
category:
|
|
268
|
-
categoryIcon:
|
|
269
|
-
categoryColor:
|
|
270
|
-
tags:
|
|
273
|
+
rating: v,
|
|
274
|
+
ratingCount: A,
|
|
275
|
+
category: Q,
|
|
276
|
+
categoryIcon: b,
|
|
277
|
+
categoryColor: w,
|
|
278
|
+
tags: N = [],
|
|
271
279
|
maxNumberOfVisibleTags: j = 3,
|
|
272
|
-
logo:
|
|
273
|
-
logoAlt:
|
|
274
|
-
favorite:
|
|
275
|
-
defaultFavorite:
|
|
276
|
-
onFavoriteChange:
|
|
277
|
-
favoriteAriaLabel:
|
|
278
|
-
showFavorite:
|
|
279
|
-
onMapClick:
|
|
280
|
-
mapLabel:
|
|
280
|
+
logo: k,
|
|
281
|
+
logoAlt: ce,
|
|
282
|
+
favorite: me,
|
|
283
|
+
defaultFavorite: U,
|
|
284
|
+
onFavoriteChange: T,
|
|
285
|
+
favoriteAriaLabel: pe,
|
|
286
|
+
showFavorite: B = !0,
|
|
287
|
+
onMapClick: F,
|
|
288
|
+
mapLabel: he,
|
|
281
289
|
variant: p = "search",
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
+
isTinted: ue = !1,
|
|
291
|
+
disabled: t = !1,
|
|
292
|
+
asChild: X = !1,
|
|
293
|
+
href: Z,
|
|
294
|
+
className: ge,
|
|
295
|
+
children: C,
|
|
296
|
+
...E
|
|
297
|
+
} = s, { translations: fe } = Ne(), ve = he ?? fe.partnerCard.mapButton, H = p === "heroLarge" || p === "heroSmall", Y = p === "listView", xe = p === "compact", L = h ?? (H ? "" : d), ee = ce ?? `${d} logo`, M = Pe(i), W = {
|
|
298
|
+
placeholderIcon: u ?? b,
|
|
299
|
+
placeholderColor: g ?? w,
|
|
300
|
+
componentName: "PartnerCard"
|
|
301
|
+
}, be = Ie({ variant: p }), y = v != null, ae = (p === "search" || Y) && (!!(b && w) || N.length > 0), D = n(
|
|
302
|
+
Ve({ variant: p, isTinted: ue }),
|
|
303
|
+
ge
|
|
304
|
+
), re = 'outline-none after:absolute after:inset-0 after:rounded-[inherit] after:content-[""] focus-visible:outline-none', O = /* @__PURE__ */ e(
|
|
305
|
+
x,
|
|
290
306
|
{
|
|
291
307
|
component: "h3",
|
|
292
308
|
variant: "title",
|
|
293
309
|
size: p === "heroLarge" ? "lg" : "base",
|
|
294
|
-
weight:
|
|
295
|
-
className: n(p === "heroLarge" ? "line-clamp-2 max-w-comp-partner-card-hero-large-text-max-w" : p === "search" ||
|
|
296
|
-
children:
|
|
310
|
+
weight: H ? "regular" : "medium",
|
|
311
|
+
className: n(p === "heroLarge" ? "line-clamp-2 max-w-comp-partner-card-hero-large-text-max-w" : p === "search" || Y ? "line-clamp-1" : "line-clamp-2", be),
|
|
312
|
+
children: d
|
|
297
313
|
}
|
|
298
|
-
),
|
|
299
|
-
|
|
314
|
+
), q = X && z.isValidElement(C) ? z.cloneElement(
|
|
315
|
+
C,
|
|
300
316
|
{
|
|
301
|
-
className: n(
|
|
302
|
-
...
|
|
317
|
+
className: n(re, C.props.className),
|
|
318
|
+
...t ? te : null
|
|
303
319
|
},
|
|
304
|
-
|
|
305
|
-
) : /* @__PURE__ */ e("a", { href:
|
|
306
|
-
|
|
320
|
+
O
|
|
321
|
+
) : /* @__PURE__ */ e("a", { href: t ? void 0 : Z, className: re, children: O }), _ = B && /* @__PURE__ */ e(
|
|
322
|
+
ye,
|
|
323
|
+
{
|
|
324
|
+
active: me,
|
|
325
|
+
defaultActive: U,
|
|
326
|
+
onClick: T !== void 0 || U !== void 0 ? (R, J) => T == null ? void 0 : T(J) : void 0,
|
|
327
|
+
"aria-label": pe,
|
|
328
|
+
disabled: t,
|
|
329
|
+
className: n(
|
|
330
|
+
"relative z-10",
|
|
331
|
+
// Without a photo behind it the default invert (white) heart would
|
|
332
|
+
// be invisible on the light placeholder tint, so switch to the
|
|
333
|
+
// primary-ghost colour ramp.
|
|
334
|
+
!M && [
|
|
335
|
+
"text-comp-button-primary-ghost-text-def hover:text-comp-button-primary-ghost-text-hover focus-visible:text-comp-button-primary-ghost-text-focused",
|
|
336
|
+
"disabled:text-comp-button-primary-ghost-text-disabled data-[disabled=true]:text-comp-button-primary-ghost-text-disabled"
|
|
337
|
+
]
|
|
338
|
+
)
|
|
339
|
+
}
|
|
340
|
+
), $ = l && /* @__PURE__ */ e(
|
|
341
|
+
x,
|
|
342
|
+
{
|
|
343
|
+
component: "span",
|
|
344
|
+
variant: "body",
|
|
345
|
+
size: "sm",
|
|
346
|
+
weight: "regular",
|
|
347
|
+
fixY: !0,
|
|
348
|
+
className: n(
|
|
349
|
+
"line-clamp-1 min-w-0",
|
|
350
|
+
t ? "text-text-dark-disabled" : "text-text-dark-secondary group-has-[a:focus-visible]:text-text-brand-focused"
|
|
351
|
+
),
|
|
352
|
+
children: l
|
|
353
|
+
}
|
|
354
|
+
), G = o && /* @__PURE__ */ e(
|
|
355
|
+
x,
|
|
307
356
|
{
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
"
|
|
312
|
-
|
|
313
|
-
className:
|
|
357
|
+
component: "span",
|
|
358
|
+
variant: "body",
|
|
359
|
+
size: "sm",
|
|
360
|
+
weight: "medium",
|
|
361
|
+
fixY: !0,
|
|
362
|
+
className: n(
|
|
363
|
+
"shrink-0",
|
|
364
|
+
t ? "text-text-dark-disabled" : "text-text-dark-primary-def group-has-[a:focus-visible]:text-text-brand-focused"
|
|
365
|
+
),
|
|
366
|
+
children: o
|
|
314
367
|
}
|
|
315
368
|
);
|
|
316
|
-
let
|
|
317
|
-
if (
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
{
|
|
321
|
-
rating: u,
|
|
322
|
-
ratingCount: x,
|
|
323
|
-
disabled: s
|
|
324
|
-
}
|
|
325
|
-
), W = $ && /* @__PURE__ */ e(
|
|
326
|
-
S,
|
|
369
|
+
let f = null;
|
|
370
|
+
if (xe)
|
|
371
|
+
f = /* @__PURE__ */ r(
|
|
372
|
+
Re,
|
|
327
373
|
{
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
374
|
+
image: i,
|
|
375
|
+
imageAlt: L,
|
|
376
|
+
...W,
|
|
377
|
+
category: Q,
|
|
378
|
+
heartButton: _,
|
|
379
|
+
logo: k,
|
|
380
|
+
logoAlt: ee,
|
|
381
|
+
disabled: t,
|
|
382
|
+
children: [
|
|
383
|
+
q,
|
|
384
|
+
y && /* @__PURE__ */ e(
|
|
385
|
+
P,
|
|
386
|
+
{
|
|
387
|
+
rating: v,
|
|
388
|
+
ratingCount: A,
|
|
389
|
+
disabled: t
|
|
390
|
+
}
|
|
391
|
+
),
|
|
392
|
+
(o || l) && /* @__PURE__ */ r(m, { align: "center", gap: "sm", className: "mt-auto min-w-0", children: [
|
|
393
|
+
G,
|
|
394
|
+
o && l && /* @__PURE__ */ e(se, {}),
|
|
395
|
+
$
|
|
396
|
+
] })
|
|
397
|
+
]
|
|
333
398
|
}
|
|
334
|
-
)
|
|
335
|
-
|
|
399
|
+
);
|
|
400
|
+
else if (Y) {
|
|
401
|
+
const R = y && /* @__PURE__ */ e(
|
|
402
|
+
P,
|
|
336
403
|
{
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
weight: "regular",
|
|
341
|
-
fixY: !0,
|
|
342
|
-
className: n(
|
|
343
|
-
"line-clamp-1 min-w-0",
|
|
344
|
-
s ? "text-text-dark-disabled" : "text-text-dark-secondary group-has-[a:focus-visible]:text-text-brand-focused"
|
|
345
|
-
),
|
|
346
|
-
children: c
|
|
404
|
+
rating: v,
|
|
405
|
+
ratingCount: A,
|
|
406
|
+
disabled: t
|
|
347
407
|
}
|
|
348
|
-
),
|
|
349
|
-
|
|
408
|
+
), J = ae && /* @__PURE__ */ e(
|
|
409
|
+
V,
|
|
350
410
|
{
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
className: n(
|
|
357
|
-
"shrink-0",
|
|
358
|
-
s ? "text-text-dark-disabled" : "text-text-dark-primary-def group-has-[a:focus-visible]:text-text-brand-focused"
|
|
359
|
-
),
|
|
360
|
-
children: o
|
|
411
|
+
categoryIcon: b,
|
|
412
|
+
categoryColor: w,
|
|
413
|
+
tags: N,
|
|
414
|
+
maxNumberOfVisibleTags: j,
|
|
415
|
+
wrap: !1
|
|
361
416
|
}
|
|
362
417
|
);
|
|
363
|
-
|
|
418
|
+
f = /* @__PURE__ */ r(S, { children: [
|
|
364
419
|
/* @__PURE__ */ r(
|
|
365
|
-
|
|
420
|
+
K,
|
|
366
421
|
{
|
|
367
|
-
image:
|
|
368
|
-
alt:
|
|
422
|
+
image: i,
|
|
423
|
+
alt: L,
|
|
424
|
+
...W,
|
|
425
|
+
placeholderIconClassName: "[&>svg]:size-comp-partner-card-list-view-icon-size",
|
|
369
426
|
wrapperClassName: "relative aspect-square h-comp-partner-card-list-view-h-img w-comp-partner-card-list-view-w-img shrink-0 overflow-hidden rounded-comp-partner-card-list-view-radius-img",
|
|
370
427
|
children: [
|
|
371
|
-
/* @__PURE__ */ e(
|
|
428
|
+
M && /* @__PURE__ */ e(
|
|
372
429
|
"div",
|
|
373
430
|
{
|
|
374
431
|
"aria-hidden": "true",
|
|
375
432
|
className: "absolute inset-0 bg-gradient-to-b from-black/50 to-black/0 to-50%"
|
|
376
433
|
}
|
|
377
434
|
),
|
|
378
|
-
|
|
435
|
+
B && /* @__PURE__ */ e("div", { className: "absolute top-comp-partner-card-list-view-p-img left-comp-partner-card-list-view-p-img", children: _ })
|
|
379
436
|
]
|
|
380
437
|
}
|
|
381
438
|
),
|
|
382
439
|
/* @__PURE__ */ r(m, { direction: "column", flex: 1, className: "min-w-0 gap-sm", children: [
|
|
383
440
|
/* @__PURE__ */ r(m, { direction: "column", className: "min-w-0 gap-3xs md:gap-2xs", children: [
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
(o ||
|
|
441
|
+
q,
|
|
442
|
+
y && /* @__PURE__ */ e("div", { className: "md:hidden", children: R }),
|
|
443
|
+
(o || l) && /* @__PURE__ */ r(
|
|
387
444
|
m,
|
|
388
445
|
{
|
|
389
446
|
align: "center",
|
|
390
447
|
gap: "sm",
|
|
391
448
|
className: "hidden min-w-0 md:flex",
|
|
392
449
|
children: [
|
|
393
|
-
|
|
394
|
-
o &&
|
|
395
|
-
|
|
450
|
+
G,
|
|
451
|
+
o && l && /* @__PURE__ */ e(se, {}),
|
|
452
|
+
$
|
|
396
453
|
]
|
|
397
454
|
}
|
|
398
455
|
)
|
|
399
456
|
] }),
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
(
|
|
403
|
-
|
|
404
|
-
|
|
457
|
+
y && /* @__PURE__ */ e("div", { className: "hidden md:block", children: R }),
|
|
458
|
+
J,
|
|
459
|
+
(l || o) && /* @__PURE__ */ r(m, { direction: "column", className: "min-w-0 gap-2xs md:hidden", children: [
|
|
460
|
+
$,
|
|
461
|
+
G
|
|
405
462
|
] })
|
|
406
463
|
] })
|
|
407
464
|
] });
|
|
408
|
-
} else p === "search" ?
|
|
465
|
+
} else p === "search" ? f = /* @__PURE__ */ r(S, { children: [
|
|
409
466
|
/* @__PURE__ */ r(
|
|
410
|
-
|
|
467
|
+
K,
|
|
411
468
|
{
|
|
412
|
-
image:
|
|
413
|
-
alt:
|
|
469
|
+
image: i,
|
|
470
|
+
alt: L,
|
|
471
|
+
...W,
|
|
414
472
|
wrapperClassName: "relative shrink-0 overflow-hidden rounded-comp-partner-card-search-radius-img h-comp-partner-card-search-h-img w-comp-partner-card-search-w-img",
|
|
415
473
|
children: [
|
|
416
|
-
/* @__PURE__ */ e(
|
|
474
|
+
M && /* @__PURE__ */ e(
|
|
417
475
|
"div",
|
|
418
476
|
{
|
|
419
477
|
"aria-hidden": "true",
|
|
420
478
|
className: "absolute inset-0 bg-gradient-to-b from-black/50 to-black/0 to-50%"
|
|
421
479
|
}
|
|
422
480
|
),
|
|
423
|
-
|
|
424
|
-
|
|
481
|
+
k && /* @__PURE__ */ e("div", { className: "pointer-events-none absolute inset-0 flex items-center justify-center bg-surface-base-overlay", children: /* @__PURE__ */ e("div", { className: "size-comp-partner-card-search-logo-size overflow-hidden rounded-full border-(length:--spacing-comp-partner-card-search-logo-stroke) border-solid border-stroke-base-secondary group-data-[disabled=true]:grayscale [&>img]:size-full [&>img]:object-cover", children: typeof k == "string" ? /* @__PURE__ */ e("img", { src: k, alt: ee }) : k }) }),
|
|
482
|
+
B && /* @__PURE__ */ e("div", { className: "absolute top-comp-partner-card-search-p-img left-comp-partner-card-search-p-img", children: _ })
|
|
425
483
|
]
|
|
426
484
|
}
|
|
427
485
|
),
|
|
@@ -433,42 +491,42 @@ const re = w.forwardRef(
|
|
|
433
491
|
className: "min-w-0 gap-comp-partner-card-search-gap-text",
|
|
434
492
|
children: [
|
|
435
493
|
/* @__PURE__ */ r(m, { direction: "column", gap: "3xs", className: "min-w-0", children: [
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
494
|
+
q,
|
|
495
|
+
y && /* @__PURE__ */ e(
|
|
496
|
+
P,
|
|
439
497
|
{
|
|
440
|
-
rating:
|
|
441
|
-
ratingCount:
|
|
442
|
-
disabled:
|
|
498
|
+
rating: v,
|
|
499
|
+
ratingCount: A,
|
|
500
|
+
disabled: t
|
|
443
501
|
}
|
|
444
502
|
)
|
|
445
503
|
] }),
|
|
446
|
-
|
|
504
|
+
ae && /* @__PURE__ */ r(S, { children: [
|
|
447
505
|
/* @__PURE__ */ e(
|
|
448
|
-
|
|
506
|
+
V,
|
|
449
507
|
{
|
|
450
|
-
categoryIcon:
|
|
451
|
-
categoryColor:
|
|
452
|
-
tags:
|
|
508
|
+
categoryIcon: b,
|
|
509
|
+
categoryColor: w,
|
|
510
|
+
tags: N,
|
|
453
511
|
maxNumberOfVisibleTags: 1,
|
|
454
512
|
wrap: !1,
|
|
455
513
|
className: "md:hidden"
|
|
456
514
|
}
|
|
457
515
|
),
|
|
458
516
|
/* @__PURE__ */ e(
|
|
459
|
-
|
|
517
|
+
V,
|
|
460
518
|
{
|
|
461
|
-
categoryIcon:
|
|
462
|
-
categoryColor:
|
|
463
|
-
tags:
|
|
519
|
+
categoryIcon: b,
|
|
520
|
+
categoryColor: w,
|
|
521
|
+
tags: N,
|
|
464
522
|
maxNumberOfVisibleTags: j,
|
|
465
523
|
wrap: !0,
|
|
466
524
|
className: "hidden md:flex"
|
|
467
525
|
}
|
|
468
526
|
)
|
|
469
527
|
] }),
|
|
470
|
-
|
|
471
|
-
|
|
528
|
+
l && /* @__PURE__ */ e(
|
|
529
|
+
x,
|
|
472
530
|
{
|
|
473
531
|
component: "span",
|
|
474
532
|
variant: "body",
|
|
@@ -477,27 +535,27 @@ const re = w.forwardRef(
|
|
|
477
535
|
fixY: !0,
|
|
478
536
|
className: n(
|
|
479
537
|
"line-clamp-1",
|
|
480
|
-
|
|
538
|
+
t ? "text-text-dark-disabled" : "text-text-dark-secondary group-has-[a:focus-visible]:text-text-brand-focused"
|
|
481
539
|
),
|
|
482
|
-
children:
|
|
540
|
+
children: l
|
|
483
541
|
}
|
|
484
542
|
),
|
|
485
|
-
(
|
|
486
|
-
|
|
487
|
-
|
|
543
|
+
(F || o) && /* @__PURE__ */ r(m, { align: "center", gap: "lg", className: "mt-auto", children: [
|
|
544
|
+
F && /* @__PURE__ */ e(
|
|
545
|
+
ke,
|
|
488
546
|
{
|
|
489
547
|
variant: "secondary",
|
|
490
548
|
ghost: !0,
|
|
491
549
|
size: "xs",
|
|
492
|
-
icon: /* @__PURE__ */ e(
|
|
493
|
-
onClick:
|
|
494
|
-
disabled:
|
|
550
|
+
icon: /* @__PURE__ */ e(ze, {}),
|
|
551
|
+
onClick: F,
|
|
552
|
+
disabled: t,
|
|
495
553
|
className: "relative z-10",
|
|
496
|
-
children:
|
|
554
|
+
children: ve
|
|
497
555
|
}
|
|
498
556
|
),
|
|
499
557
|
o && /* @__PURE__ */ e(
|
|
500
|
-
|
|
558
|
+
x,
|
|
501
559
|
{
|
|
502
560
|
component: "span",
|
|
503
561
|
variant: "body",
|
|
@@ -505,7 +563,7 @@ const re = w.forwardRef(
|
|
|
505
563
|
weight: "regular",
|
|
506
564
|
fixY: !0,
|
|
507
565
|
className: n(
|
|
508
|
-
|
|
566
|
+
t ? "text-text-dark-disabled" : "text-text-dark-primary-def"
|
|
509
567
|
),
|
|
510
568
|
children: o
|
|
511
569
|
}
|
|
@@ -514,12 +572,13 @@ const re = w.forwardRef(
|
|
|
514
572
|
]
|
|
515
573
|
}
|
|
516
574
|
)
|
|
517
|
-
] }) :
|
|
575
|
+
] }) : f = /* @__PURE__ */ r(S, { children: [
|
|
518
576
|
/* @__PURE__ */ e(
|
|
519
|
-
|
|
577
|
+
K,
|
|
520
578
|
{
|
|
521
|
-
image:
|
|
522
|
-
alt:
|
|
579
|
+
image: i,
|
|
580
|
+
alt: L,
|
|
581
|
+
componentName: "PartnerCard",
|
|
523
582
|
wrapperClassName: n(
|
|
524
583
|
"absolute inset-0 overflow-hidden",
|
|
525
584
|
p === "heroLarge" ? "rounded-comp-partner-card-hero-large-radius" : "rounded-comp-partner-card-hero-sm-radius"
|
|
@@ -534,58 +593,58 @@ const re = w.forwardRef(
|
|
|
534
593
|
}
|
|
535
594
|
),
|
|
536
595
|
/* @__PURE__ */ e(
|
|
537
|
-
|
|
596
|
+
oe,
|
|
538
597
|
{
|
|
539
|
-
category:
|
|
540
|
-
tags:
|
|
598
|
+
category: Q,
|
|
599
|
+
tags: N,
|
|
541
600
|
maxNumberOfVisibleTags: j
|
|
542
601
|
}
|
|
543
602
|
),
|
|
544
|
-
/* @__PURE__ */ e("div", { className: "relative z-10", children:
|
|
603
|
+
/* @__PURE__ */ e("div", { className: "relative z-10", children: O })
|
|
545
604
|
] });
|
|
546
|
-
return
|
|
547
|
-
|
|
605
|
+
return H ? X && z.isValidElement(C) ? /* @__PURE__ */ e(
|
|
606
|
+
we,
|
|
548
607
|
{
|
|
549
608
|
ref: a,
|
|
550
|
-
className:
|
|
551
|
-
"data-disabled":
|
|
552
|
-
"aria-disabled":
|
|
553
|
-
...
|
|
554
|
-
children:
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
609
|
+
className: D,
|
|
610
|
+
"data-disabled": t || void 0,
|
|
611
|
+
"aria-disabled": t || void 0,
|
|
612
|
+
...E,
|
|
613
|
+
children: z.cloneElement(
|
|
614
|
+
C,
|
|
615
|
+
t ? te : void 0,
|
|
616
|
+
f
|
|
558
617
|
)
|
|
559
618
|
}
|
|
560
619
|
) : /* @__PURE__ */ e(
|
|
561
620
|
"a",
|
|
562
621
|
{
|
|
563
622
|
ref: a,
|
|
564
|
-
href:
|
|
565
|
-
className:
|
|
566
|
-
"data-disabled":
|
|
567
|
-
"aria-disabled":
|
|
568
|
-
...
|
|
569
|
-
children:
|
|
623
|
+
href: t ? void 0 : Z,
|
|
624
|
+
className: D,
|
|
625
|
+
"data-disabled": t || void 0,
|
|
626
|
+
"aria-disabled": t || void 0,
|
|
627
|
+
...E,
|
|
628
|
+
children: f
|
|
570
629
|
}
|
|
571
630
|
) : /* @__PURE__ */ e(
|
|
572
631
|
"div",
|
|
573
632
|
{
|
|
574
633
|
ref: a,
|
|
575
|
-
className:
|
|
576
|
-
"data-disabled":
|
|
577
|
-
"aria-disabled":
|
|
578
|
-
...
|
|
579
|
-
children:
|
|
634
|
+
className: D,
|
|
635
|
+
"data-disabled": t || void 0,
|
|
636
|
+
"aria-disabled": t || void 0,
|
|
637
|
+
...E,
|
|
638
|
+
children: f
|
|
580
639
|
}
|
|
581
640
|
);
|
|
582
641
|
}
|
|
583
642
|
);
|
|
584
|
-
|
|
585
|
-
const
|
|
586
|
-
|
|
643
|
+
de.displayName = "PartnerCard";
|
|
644
|
+
const Ae = de;
|
|
645
|
+
Ae.Skeleton = ne;
|
|
587
646
|
export {
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
647
|
+
Ae as PartnerCard,
|
|
648
|
+
Ie as partnerCardTitleVariants,
|
|
649
|
+
Ve as partnerCardVariants
|
|
591
650
|
};
|