@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,69 +1,71 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import * as
|
|
3
|
-
import { Slot as
|
|
1
|
+
import { jsxs as h, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import * as s from "react";
|
|
3
|
+
import { Slot as j, Slottable as c } from "@radix-ui/react-slot";
|
|
4
4
|
import "class-variance-authority";
|
|
5
|
-
import { cn as
|
|
6
|
-
import { Typography as
|
|
7
|
-
import { ButtonLoader as
|
|
5
|
+
import { cn as b } from "../../utils/cn.js";
|
|
6
|
+
import { Typography as v } from "../Typography/Typography.js";
|
|
7
|
+
import { ButtonLoader as w } from "./ButtonLoader.js";
|
|
8
8
|
import { buttonVariants as R } from "./buttonVariants.js";
|
|
9
|
-
const S =
|
|
9
|
+
const S = s.forwardRef(
|
|
10
10
|
({
|
|
11
11
|
className: y,
|
|
12
|
-
variant:
|
|
13
|
-
size:
|
|
14
|
-
fullWidth:
|
|
15
|
-
asChild:
|
|
16
|
-
icon:
|
|
17
|
-
iconPosition:
|
|
18
|
-
secondIcon:
|
|
12
|
+
variant: x,
|
|
13
|
+
size: o,
|
|
14
|
+
fullWidth: N,
|
|
15
|
+
asChild: e = !1,
|
|
16
|
+
icon: m,
|
|
17
|
+
iconPosition: l = "start",
|
|
18
|
+
secondIcon: n,
|
|
19
19
|
ghost: d = !1,
|
|
20
20
|
danger: f = !1,
|
|
21
|
-
loading:
|
|
21
|
+
loading: p = !1,
|
|
22
22
|
children: t,
|
|
23
|
-
...
|
|
24
|
-
},
|
|
25
|
-
const
|
|
26
|
-
|
|
23
|
+
...g
|
|
24
|
+
}, B) => {
|
|
25
|
+
const E = e ? j : "button", i = o === "icon" || d, u = (V) => /* @__PURE__ */ a(
|
|
26
|
+
v,
|
|
27
27
|
{
|
|
28
28
|
variant: "cta",
|
|
29
|
-
size:
|
|
29
|
+
size: o === "sm" || o === "xs" ? "sm" : "base",
|
|
30
30
|
weight: "medium",
|
|
31
31
|
component: "span",
|
|
32
32
|
fixY: !0,
|
|
33
|
-
className:
|
|
34
|
-
"opacity-0":
|
|
33
|
+
className: b("transition-opacity", {
|
|
34
|
+
"opacity-0": p
|
|
35
35
|
}),
|
|
36
|
-
children:
|
|
36
|
+
children: V
|
|
37
37
|
}
|
|
38
|
-
),
|
|
38
|
+
), r = e && s.isValidElement(t) ? t.props.children : t, L = () => e ? s.isValidElement(t) ? /* @__PURE__ */ a(c, { children: s.cloneElement(
|
|
39
39
|
t,
|
|
40
40
|
void 0,
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
// Skip the label wrapper for icon-only children so the flex gap
|
|
42
|
+
// doesn't offset the icon.
|
|
43
|
+
r && u(r)
|
|
44
|
+
) }) : /* @__PURE__ */ a(c, { children: t }) : t && u(t);
|
|
45
|
+
return /* @__PURE__ */ h(
|
|
46
|
+
E,
|
|
45
47
|
{
|
|
46
|
-
className:
|
|
48
|
+
className: b(
|
|
47
49
|
R({
|
|
48
|
-
variant:
|
|
49
|
-
size:
|
|
50
|
-
fullWidth:
|
|
51
|
-
iconOnly:
|
|
50
|
+
variant: x,
|
|
51
|
+
size: o,
|
|
52
|
+
fullWidth: N,
|
|
53
|
+
iconOnly: o === "icon" || !r,
|
|
52
54
|
ghost: i,
|
|
53
55
|
danger: f,
|
|
54
|
-
loading:
|
|
56
|
+
loading: p,
|
|
55
57
|
className: y
|
|
56
58
|
})
|
|
57
59
|
),
|
|
58
|
-
ref:
|
|
60
|
+
ref: B,
|
|
59
61
|
"data-ghost": i,
|
|
60
62
|
"data-danger": f,
|
|
61
|
-
...
|
|
63
|
+
...g,
|
|
62
64
|
children: [
|
|
63
|
-
|
|
64
|
-
(
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
p && /* @__PURE__ */ a("span", { className: "absolute", children: /* @__PURE__ */ a(w, {}) }),
|
|
66
|
+
(n || l === "start") && m,
|
|
67
|
+
L(),
|
|
68
|
+
n || l === "end" && m
|
|
67
69
|
]
|
|
68
70
|
}
|
|
69
71
|
);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.stories.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.stories.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAW3D,OAAO,EAAE,MAAM,EAAoB,MAAM,UAAU,CAAA;AAoBnD,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,MAAM,CAqF7B,CAAA;AAED,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAA;AAEpC,eAAO,MAAM,OAAO,EAAE,KAarB,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAetB,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,KAe7B,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAoCtB,CAAA;AAED,eAAO,MAAM,SAAS,EAAE,KAgBvB,CAAA;AAED,eAAO,MAAM,WAAW,EAAE,KAyCzB,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAkDtB,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KAmF/B,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,KA8D1B,CAAA;AAED,eAAO,MAAM,cAAc,EAAE,KAgB5B,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,KAgB3B,CAAA;AAcD,eAAO,MAAM,gBAAgB,EAAE,
|
|
1
|
+
{"version":3,"file":"Button.stories.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.stories.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAW3D,OAAO,EAAE,MAAM,EAAoB,MAAM,UAAU,CAAA;AAoBnD,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,MAAM,CAqF7B,CAAA;AAED,eAAe,IAAI,CAAA;AACnB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAA;AAEpC,eAAO,MAAM,OAAO,EAAE,KAarB,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAetB,CAAA;AAED,eAAO,MAAM,eAAe,EAAE,KAe7B,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAoCtB,CAAA;AAED,eAAO,MAAM,SAAS,EAAE,KAgBvB,CAAA;AAED,eAAO,MAAM,WAAW,EAAE,KAyCzB,CAAA;AAED,eAAO,MAAM,QAAQ,EAAE,KAkDtB,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KAmF/B,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,KA8D1B,CAAA;AAED,eAAO,MAAM,cAAc,EAAE,KAgB5B,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,KAgB3B,CAAA;AAcD,eAAO,MAAM,gBAAgB,EAAE,KAqM9B,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KAgC/B,CAAA"}
|
|
@@ -66,6 +66,10 @@ export interface CarouselProps {
|
|
|
66
66
|
* Embla plugins forwarded as the second argument to `useEmblaCarousel`
|
|
67
67
|
* (autoplay, classnames, fade, etc.).
|
|
68
68
|
*
|
|
69
|
+
* For a self-running carousel, prefer the {@link CarouselProps.autoplay}
|
|
70
|
+
* prop — it appends this same plugin with sensible pause/resume defaults.
|
|
71
|
+
* Reach for `plugins` directly when you need Embla's full option set.
|
|
72
|
+
*
|
|
69
73
|
* @example
|
|
70
74
|
* import Autoplay from 'embla-carousel-autoplay'
|
|
71
75
|
* <Carousel plugins={[Autoplay({ delay: 4000 })]}>...</Carousel>
|
|
@@ -73,6 +77,40 @@ export interface CarouselProps {
|
|
|
73
77
|
* @see CarouselPlugin
|
|
74
78
|
*/
|
|
75
79
|
plugins?: CarouselPlugin;
|
|
80
|
+
/**
|
|
81
|
+
* Advances to the next slide on a timer, with no user input. A convenience
|
|
82
|
+
* layer over {@link CarouselProps.plugins} — it appends Embla's official
|
|
83
|
+
* `Autoplay` plugin, so consumer-supplied plugins keep working alongside it.
|
|
84
|
+
*
|
|
85
|
+
* Pause/resume behaviour:
|
|
86
|
+
* - Pauses while the pointer hovers the carousel, resumes on leave (mouse
|
|
87
|
+
* only — a touch tap does not count as hovering).
|
|
88
|
+
* - Pauses on pointer down and resumes once the slide settles; a tap that
|
|
89
|
+
* never moves the track resumes too.
|
|
90
|
+
*
|
|
91
|
+
* Does nothing when the user's `prefers-reduced-motion: reduce` setting is
|
|
92
|
+
* active, when there is only one slide, or when `plugins` already contains
|
|
93
|
+
* an `Autoplay` instance (yours wins — a second one is never stacked).
|
|
94
|
+
*
|
|
95
|
+
* With `options={{ loop: true }}` the last slide wraps seamlessly to the
|
|
96
|
+
* first; without it, the carousel rewinds to the first slide instead.
|
|
97
|
+
*
|
|
98
|
+
* @default false
|
|
99
|
+
*
|
|
100
|
+
* @example
|
|
101
|
+
* <Carousel autoplay options={{ loop: true }}>...</Carousel>
|
|
102
|
+
*/
|
|
103
|
+
autoplay?: boolean;
|
|
104
|
+
/**
|
|
105
|
+
* Milliseconds a slide stays on screen before {@link CarouselProps.autoplay}
|
|
106
|
+
* advances to the next one. Ignored when `autoplay` is `false`.
|
|
107
|
+
*
|
|
108
|
+
* @default 5000
|
|
109
|
+
*
|
|
110
|
+
* @example
|
|
111
|
+
* <Carousel autoplay autoplayDelay={3000}>...</Carousel>
|
|
112
|
+
*/
|
|
113
|
+
autoplayDelay?: number;
|
|
76
114
|
/**
|
|
77
115
|
* Controls scroll direction. Also drives keyboard navigation
|
|
78
116
|
* (←/→ for horizontal, ↑/↓ for vertical).
|
|
@@ -92,7 +130,66 @@ export interface CarouselProps {
|
|
|
92
130
|
*/
|
|
93
131
|
setApi?: (api: CarouselApi) => void;
|
|
94
132
|
}
|
|
95
|
-
|
|
133
|
+
/**
|
|
134
|
+
* Carousel state and controls shared with every descendant, and the return
|
|
135
|
+
* value of {@link useCarousel}. Alongside the members below it carries the
|
|
136
|
+
* root's own {@link CarouselProps} (`options`, `orientation`, `plugins`).
|
|
137
|
+
*/
|
|
138
|
+
export interface CarouselContextValue extends CarouselProps {
|
|
139
|
+
/**
|
|
140
|
+
* Ref callback for the scrolling viewport, applied by `CarouselContent`.
|
|
141
|
+
* Only needed when replacing `CarouselContent` with your own element.
|
|
142
|
+
*/
|
|
143
|
+
carouselRef: ReturnType<typeof useEmblaCarousel>[0];
|
|
144
|
+
/**
|
|
145
|
+
* Imperative Embla API, or `undefined` until the carousel has mounted.
|
|
146
|
+
*
|
|
147
|
+
* @see CarouselApi
|
|
148
|
+
*/
|
|
149
|
+
api: CarouselApi;
|
|
150
|
+
/** Scrolls to the previous slide. No-op at the start without `loop`. */
|
|
151
|
+
scrollPrev: () => void;
|
|
152
|
+
/** Scrolls to the next slide. No-op at the end without `loop`. */
|
|
153
|
+
scrollNext: () => void;
|
|
154
|
+
/** Whether a previous slide exists to scroll to. */
|
|
155
|
+
canScrollPrev: boolean;
|
|
156
|
+
/** Whether a next slide exists to scroll to. */
|
|
157
|
+
canScrollNext: boolean;
|
|
158
|
+
/** Index of the active slide (0-based). */
|
|
159
|
+
selectedIndex: number;
|
|
160
|
+
/** Scrolls to a slide by index (0-based). */
|
|
161
|
+
scrollTo: (index: number) => void;
|
|
162
|
+
/** Number of scroll snap points — i.e. navigable positions, not slides. */
|
|
163
|
+
slidesCount: number;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Reads the state and controls of the nearest `Carousel` ancestor. Use it to
|
|
167
|
+
* build custom controls — a slide counter, a progress bar, a bespoke dot
|
|
168
|
+
* strip — without threading the Embla API through `setApi` yourself.
|
|
169
|
+
*
|
|
170
|
+
* Throws when called outside a `<Carousel>`.
|
|
171
|
+
*
|
|
172
|
+
* @example
|
|
173
|
+
* const SlideCounter = () => {
|
|
174
|
+
* const { selectedIndex, slidesCount } = useCarousel()
|
|
175
|
+
* return <span>{selectedIndex + 1} / {slidesCount}</span>
|
|
176
|
+
* }
|
|
177
|
+
*
|
|
178
|
+
* <Carousel>
|
|
179
|
+
* <CarouselContent>...</CarouselContent>
|
|
180
|
+
* <SlideCounter />
|
|
181
|
+
* </Carousel>
|
|
182
|
+
*
|
|
183
|
+
* @see CarouselContextValue
|
|
184
|
+
*/
|
|
185
|
+
declare const useCarousel: () => CarouselContextValue;
|
|
186
|
+
/**
|
|
187
|
+
* Full prop set accepted by the Carousel root element — {@link CarouselProps}
|
|
188
|
+
* plus all standard `<div>` attributes.
|
|
189
|
+
*/
|
|
190
|
+
export interface CarouselRootProps extends React.HTMLAttributes<HTMLDivElement>, CarouselProps {
|
|
191
|
+
}
|
|
192
|
+
declare const Carousel: React.ForwardRefExoticComponent<CarouselRootProps & React.RefAttributes<HTMLDivElement>>;
|
|
96
193
|
/**
|
|
97
194
|
* Props for the CarouselContent component. Wraps the scrolling track and
|
|
98
195
|
* lays out its `CarouselItem` children along the active orientation axis.
|
|
@@ -172,5 +269,5 @@ export interface CarouselDotsProps {
|
|
|
172
269
|
buttonAriaLabel?: string;
|
|
173
270
|
}
|
|
174
271
|
declare const CarouselDots: React.FC<CarouselDotsProps>;
|
|
175
|
-
export { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, CarouselDots, };
|
|
272
|
+
export { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, CarouselDots, useCarousel, };
|
|
176
273
|
//# sourceMappingURL=Carousel.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Carousel.d.ts","sourceRoot":"","sources":["../../../src/components/Carousel/Carousel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"Carousel.d.ts","sourceRoot":"","sources":["../../../src/components/Carousel/Carousel.tsx"],"names":[],"mappings":"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"}
|