@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,12 +1,13 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
declare const partnerCardVariants: (props?: ({
|
|
4
|
-
variant?: "search" | "heroLarge" | "heroSmall" | "listView" | null | undefined;
|
|
4
|
+
variant?: "search" | "compact" | "heroLarge" | "heroSmall" | "listView" | null | undefined;
|
|
5
|
+
isTinted?: boolean | null | undefined;
|
|
5
6
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
6
7
|
declare const partnerCardTitleVariants: (props?: ({
|
|
7
|
-
variant?: "search" | "heroLarge" | "heroSmall" | "listView" | null | undefined;
|
|
8
|
+
variant?: "search" | "compact" | "heroLarge" | "heroSmall" | "listView" | null | undefined;
|
|
8
9
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
9
|
-
type PartnerCardVariant = 'search' | 'heroLarge' | 'heroSmall' | 'listView';
|
|
10
|
+
type PartnerCardVariant = 'compact' | 'search' | 'heroLarge' | 'heroSmall' | 'listView';
|
|
10
11
|
/** Props for the `PartnerCard.Skeleton` subcomponent. */
|
|
11
12
|
export interface PartnerCardSkeletonProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
12
13
|
/**
|
|
@@ -23,16 +24,24 @@ export interface PartnerCardSkeletonProps extends Omit<React.HTMLAttributes<HTML
|
|
|
23
24
|
* @default 'default'
|
|
24
25
|
*/
|
|
25
26
|
color?: 'default' | 'light';
|
|
27
|
+
/**
|
|
28
|
+
* Mirrors `PartnerCard.isTinted` so the skeleton reserves the same tinted
|
|
29
|
+
* background when standing in for a tinted compact card. Has no effect on
|
|
30
|
+
* the other variants.
|
|
31
|
+
*
|
|
32
|
+
* @default false
|
|
33
|
+
*/
|
|
34
|
+
isTinted?: boolean;
|
|
26
35
|
}
|
|
27
36
|
declare const PartnerCardSkeleton: {
|
|
28
|
-
({ variant, color, className, ...props }: PartnerCardSkeletonProps): import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
({ variant, color, isTinted, className, ...props }: PartnerCardSkeletonProps): import("react/jsx-runtime").JSX.Element;
|
|
29
38
|
displayName: string;
|
|
30
39
|
};
|
|
31
40
|
/**
|
|
32
41
|
* Content props shared between the default-anchor and `asChild` shapes of
|
|
33
42
|
* PartnerCard.
|
|
34
43
|
*/
|
|
35
|
-
export interface PartnerCardBaseProps extends Omit<VariantProps<typeof partnerCardVariants>, 'variant'> {
|
|
44
|
+
export interface PartnerCardBaseProps extends Omit<VariantProps<typeof partnerCardVariants>, 'variant' | 'isTinted'> {
|
|
36
45
|
/** Partner / venue title — rendered inside the clickable link. */
|
|
37
46
|
name: string;
|
|
38
47
|
/**
|
|
@@ -40,8 +49,40 @@ export interface PartnerCardBaseProps extends Omit<VariantProps<typeof partnerCa
|
|
|
40
49
|
* custom React node such as a Next.js `<Image>` element. The wrapper
|
|
41
50
|
* handles sizing, rounded corners, overflow, and the disabled dim; any
|
|
42
51
|
* direct `<img>` child is auto-stretched to fill the wrapper.
|
|
52
|
+
*
|
|
53
|
+
* On `search` and `listView` you may omit it (or pass `undefined`) to
|
|
54
|
+
* render the placeholder instead — pair that with `placeholderIcon` and
|
|
55
|
+
* `placeholderColor`. The hero variants (`heroLarge`, `heroSmall`) are
|
|
56
|
+
* image-as-background cards and always require an image; they have no
|
|
57
|
+
* placeholder mode.
|
|
43
58
|
*/
|
|
44
|
-
image
|
|
59
|
+
image?: string | React.ReactNode;
|
|
60
|
+
/**
|
|
61
|
+
* Decorative icon rendered centred in the image area when `image` is
|
|
62
|
+
* absent. Sized by the card and coloured via `currentColor`, so pass a
|
|
63
|
+
* bare Solar icon element.
|
|
64
|
+
*
|
|
65
|
+
* Defaults to `categoryIcon`, so cards that already carry category data
|
|
66
|
+
* get a sensible placeholder without extra wiring. Ignored on the hero
|
|
67
|
+
* variants, which always render an image.
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* <PartnerCard
|
|
71
|
+
* name="Divadlo"
|
|
72
|
+
* href="/partners/divadlo"
|
|
73
|
+
* placeholderIcon={<MusicNoteBold />}
|
|
74
|
+
* placeholderColor="#e4329c"
|
|
75
|
+
* />
|
|
76
|
+
*/
|
|
77
|
+
placeholderIcon?: React.ReactNode;
|
|
78
|
+
/**
|
|
79
|
+
* Any CSS color string driving the placeholder. The image area is filled
|
|
80
|
+
* with the color at 20% alpha and the icon takes the full color. Defaults
|
|
81
|
+
* to `categoryColor`; omit both to fall back to the brand-tertiary tint
|
|
82
|
+
* with a tertiary-grey icon. Ignored on the hero variants, which always
|
|
83
|
+
* render an image.
|
|
84
|
+
*/
|
|
85
|
+
placeholderColor?: string;
|
|
45
86
|
/**
|
|
46
87
|
* Alt text for the built-in `<img>` (used when `image` is a string).
|
|
47
88
|
*
|
|
@@ -53,14 +94,15 @@ export interface PartnerCardBaseProps extends Omit<VariantProps<typeof partnerCa
|
|
|
53
94
|
*/
|
|
54
95
|
imageAlt?: string;
|
|
55
96
|
/**
|
|
56
|
-
* Address line rendered under the title on the `search`
|
|
57
|
-
* on the hero variants.
|
|
97
|
+
* Address line rendered under the title on the `search`, `listView` and
|
|
98
|
+
* `compact` variants. Ignored on the hero variants.
|
|
58
99
|
*/
|
|
59
100
|
address?: string;
|
|
60
101
|
/**
|
|
61
102
|
* Pre-formatted distance string (e.g. `"20 km"`) rendered next to the map
|
|
62
|
-
* button on the `search` variant
|
|
63
|
-
*
|
|
103
|
+
* button on the `search` variant, and inline before `address` (separated
|
|
104
|
+
* by a `DotDivider`) on `listView` and `compact`. Format the value on the
|
|
105
|
+
* consumer side. Ignored on the hero variants.
|
|
64
106
|
*/
|
|
65
107
|
distance?: string;
|
|
66
108
|
/**
|
|
@@ -72,30 +114,35 @@ export interface PartnerCardBaseProps extends Omit<VariantProps<typeof partnerCa
|
|
|
72
114
|
ratingCount?: number;
|
|
73
115
|
/**
|
|
74
116
|
* Single category label rendered as a glass-style chip on the hero
|
|
75
|
-
* variants (`heroLarge`, `heroSmall`)
|
|
76
|
-
*
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
*
|
|
117
|
+
* variants (`heroLarge`, `heroSmall`) and pinned to the top-left of the
|
|
118
|
+
* image on `compact` — the same slot `OfferCard` uses. When `tags` is also
|
|
119
|
+
* provided on a hero variant, `category` renders first followed by the
|
|
120
|
+
* entries of `tags`, capped together by `maxNumberOfVisibleTags` with a
|
|
121
|
+
* `+N` overflow chip. Ignored on `search` and `listView` — use
|
|
122
|
+
* `categoryIcon` + `tags` for those rows instead.
|
|
80
123
|
*/
|
|
81
124
|
category?: string;
|
|
82
125
|
/**
|
|
83
|
-
* Icon node rendered inside the colored `CategoryIcon` badge (search
|
|
84
|
-
*
|
|
126
|
+
* Icon node rendered inside the colored `CategoryIcon` badge (`search`
|
|
127
|
+
* and `listView`). Pair with `categoryColor`. Omit both to hide the badge.
|
|
128
|
+
* Also the default for `placeholderIcon`, so it still reaches `compact`
|
|
129
|
+
* cards rendered without an image.
|
|
85
130
|
*/
|
|
86
131
|
categoryIcon?: React.ReactNode;
|
|
87
132
|
/**
|
|
88
133
|
* Color used for the `CategoryIcon` badge background tint and icon
|
|
89
|
-
* foreground (search
|
|
134
|
+
* foreground (`search` and `listView`). Required when `categoryIcon` is
|
|
135
|
+
* set. Also the default for `placeholderColor`.
|
|
90
136
|
*/
|
|
91
137
|
categoryColor?: string;
|
|
92
138
|
/**
|
|
93
|
-
* Additional category / partner-type chips. On the `search`
|
|
94
|
-
* render next to the `CategoryIcon`; on the hero
|
|
95
|
-
* after `category` in the glass-style chip row.
|
|
96
|
-
* `+N` counter chip (mirrors the
|
|
97
|
-
* `search`, the visible count is
|
|
98
|
-
* (≤768px) — same behavior as
|
|
139
|
+
* Additional category / partner-type chips. On the `search` and
|
|
140
|
+
* `listView` variants they render next to the `CategoryIcon`; on the hero
|
|
141
|
+
* variants they render after `category` in the glass-style chip row.
|
|
142
|
+
* Overflow collapses into a `+N` counter chip (mirrors the
|
|
143
|
+
* `MultiSelect`/`ArticleCard` pattern). On `search`, the visible count is
|
|
144
|
+
* forced to 1 below the mobile breakpoint (≤768px) — same behavior as
|
|
145
|
+
* `ArticleCard`. Ignored on `compact`, whose shell has no tag row.
|
|
99
146
|
*/
|
|
100
147
|
tags?: string[];
|
|
101
148
|
/**
|
|
@@ -153,16 +200,23 @@ export interface PartnerCardBaseProps extends Omit<VariantProps<typeof partnerCa
|
|
|
153
200
|
/**
|
|
154
201
|
* Visual layout variant.
|
|
155
202
|
*
|
|
203
|
+
* - `compact` — vertical grid card with the image on top, built on the
|
|
204
|
+
* same internal shell as `OfferCard`'s `compact` variant so the two are
|
|
205
|
+
* pixel-identical side by side in a mixed grid. Uses `category` as the
|
|
206
|
+
* chip pinned over the image and renders `distance · address` as the
|
|
207
|
+
* bottom meta row. `tags`, `categoryIcon`, `onMapClick` and the
|
|
208
|
+
* `CategoryIcon` badge have no slot here.
|
|
156
209
|
* - `search` — horizontal image-left card for partner result lists.
|
|
157
210
|
* Reflows to a narrower image-left layout on mobile.
|
|
158
211
|
* - `heroLarge` — large image-as-background card with a glass-style
|
|
159
212
|
* category tag and overlaid title. Renders `h-full w-full` and fills
|
|
160
|
-
* whatever cell its parent grid hands it.
|
|
213
|
+
* whatever cell its parent grid hands it. `image` is required — there
|
|
214
|
+
* is no placeholder mode.
|
|
161
215
|
* - `heroSmall` — same archetype as `heroLarge` (image background, glass
|
|
162
216
|
* category tag, overlaid title) with tighter padding, smaller gap, and
|
|
163
217
|
* a smaller title — sized for the secondary tiles in a bento layout.
|
|
164
218
|
* Also renders `h-full w-full`, so the consumer's grid cell decides
|
|
165
|
-
* the dimensions.
|
|
219
|
+
* the dimensions. `image` is required here too.
|
|
166
220
|
* - `listView` — compact card with a square thumbnail on the left for
|
|
167
221
|
* tightly-packed result lists. The text column reflows at the `md`
|
|
168
222
|
* breakpoint (768px): on desktop, distance and address sit on a single
|
|
@@ -174,6 +228,16 @@ export interface PartnerCardBaseProps extends Omit<VariantProps<typeof partnerCa
|
|
|
174
228
|
* @default 'search'
|
|
175
229
|
*/
|
|
176
230
|
variant?: PartnerCardVariant;
|
|
231
|
+
/**
|
|
232
|
+
* Swaps the `compact` card's transparent fill for a tinted
|
|
233
|
+
* `--color-surface-base-secondary` background, used to highlight promoted
|
|
234
|
+
* entries in a grid. `OfferCard` takes the same prop and resolves it to
|
|
235
|
+
* the same tokens, so a promo band mixing offers and partners tints
|
|
236
|
+
* uniformly. Has no effect on the other variants.
|
|
237
|
+
*
|
|
238
|
+
* @default false
|
|
239
|
+
*/
|
|
240
|
+
isTinted?: boolean;
|
|
177
241
|
/**
|
|
178
242
|
* Disabled visual state. Dims the image and grays the text. The anchor's
|
|
179
243
|
* `href` is also stripped so the card is non-navigable; the embedded
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PartnerCard.d.ts","sourceRoot":"","sources":["../../../src/components/PartnerCard/PartnerCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,KAAK,YAAY,EAAO,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"PartnerCard.d.ts","sourceRoot":"","sources":["../../../src/components/PartnerCard/PartnerCard.tsx"],"names":[],"mappings":"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"}
|