@wistia/ui 0.18.1-beta.341b7714.c1c1bd7 → 0.18.2-beta.4003271.cf839cf
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/index.cjs +50 -56
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +50 -56
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.18.
|
|
3
|
+
* @license @wistia/ui v0.18.2-beta.4003271.cf839cf
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -17724,7 +17724,7 @@ var StyledThumbnailBadge = import_styled_components123.styled.div`
|
|
|
17724
17724
|
align-items: center;
|
|
17725
17725
|
background-color: rgb(0 0 0 / 50%);
|
|
17726
17726
|
border-radius: var(--wui-border-radius-01);
|
|
17727
|
-
bottom: var(--wui-
|
|
17727
|
+
bottom: var(--wui-thumbnail-badge-offset);
|
|
17728
17728
|
color: var(--wui-color-text-on-fill);
|
|
17729
17729
|
display: flex;
|
|
17730
17730
|
font-size: var(--wui-typography-body-4-size);
|
|
@@ -17732,7 +17732,7 @@ var StyledThumbnailBadge = import_styled_components123.styled.div`
|
|
|
17732
17732
|
gap: var(--wui-space-01);
|
|
17733
17733
|
padding: 0 var(--wui-space-01);
|
|
17734
17734
|
position: absolute;
|
|
17735
|
-
right: var(--wui-
|
|
17735
|
+
right: var(--wui-thumbnail-badge-offset);
|
|
17736
17736
|
z-index: 1;
|
|
17737
17737
|
|
|
17738
17738
|
svg {
|
|
@@ -18065,7 +18065,15 @@ var ThumbnailImage = ({ thumbnailImageType, thumbnailUrl }) => {
|
|
|
18065
18065
|
}
|
|
18066
18066
|
);
|
|
18067
18067
|
};
|
|
18068
|
+
var StyledThumbnailContainer = import_styled_components126.styled.div`
|
|
18069
|
+
container-type: size;
|
|
18070
|
+
aspect-ratio: ${({ $aspectRatio }) => getAspectRatioValue($aspectRatio)};
|
|
18071
|
+
width: ${({ $width }) => $width};
|
|
18072
|
+
display: flex;
|
|
18073
|
+
overflow: hidden;
|
|
18074
|
+
`;
|
|
18068
18075
|
var StyledThumbnail = import_styled_components126.styled.div`
|
|
18076
|
+
--wui-thumbnail-badge-offset: var(--wui-space-01);
|
|
18069
18077
|
background-image: ${({ $backgroundUrl }) => (0, import_type_guards74.isNotNil)($backgroundUrl) ? `url('${$backgroundUrl}')` : void 0};
|
|
18070
18078
|
${({ $backgroundUrl, $gradientBackground }) => (
|
|
18071
18079
|
// if we don't have $backgroundUrl show a gradient
|
|
@@ -18073,22 +18081,19 @@ var StyledThumbnail = import_styled_components126.styled.div`
|
|
|
18073
18081
|
)};
|
|
18074
18082
|
background-position: center center;
|
|
18075
18083
|
background-size: cover;
|
|
18076
|
-
|
|
18084
|
+
|
|
18077
18085
|
display: flex;
|
|
18086
|
+
width: 100%;
|
|
18078
18087
|
overflow: hidden;
|
|
18079
18088
|
position: relative;
|
|
18080
|
-
|
|
18081
|
-
|
|
18089
|
+
display: flex;
|
|
18090
|
+
border-radius: clamp(var(--wui-border-radius-01), 8cqh, var(--wui-border-radius-05));
|
|
18082
18091
|
|
|
18083
|
-
|
|
18084
|
-
|
|
18085
|
-
border-radius: ${({ $aspectRatio }) => {
|
|
18086
|
-
if ($aspectRatio === "square") {
|
|
18087
|
-
return "8%";
|
|
18088
|
-
}
|
|
18089
|
-
return `calc(8% * (9 / 16)) / 8%`;
|
|
18090
|
-
}};
|
|
18092
|
+
@container (min-width: 200px) {
|
|
18093
|
+
--wui-thumbnail-badge-offset: var(--wui-space-02);
|
|
18091
18094
|
}
|
|
18095
|
+
|
|
18096
|
+
${({ $isScrubbable }) => $isScrubbable && "cursor: pointer;"}
|
|
18092
18097
|
`;
|
|
18093
18098
|
var StoryboardRenderer = ({
|
|
18094
18099
|
storyboard,
|
|
@@ -18206,24 +18211,30 @@ var Thumbnail = (0, import_react100.forwardRef)(
|
|
|
18206
18211
|
} else {
|
|
18207
18212
|
thumbnailContent = null;
|
|
18208
18213
|
}
|
|
18209
|
-
return /* @__PURE__ */ (0, import_jsx_runtime327.
|
|
18210
|
-
|
|
18214
|
+
return /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(
|
|
18215
|
+
StyledThumbnailContainer,
|
|
18211
18216
|
{
|
|
18212
18217
|
ref,
|
|
18213
|
-
...props,
|
|
18214
18218
|
$aspectRatio: aspectRatio,
|
|
18215
|
-
$backgroundUrl: backgroundUrl,
|
|
18216
|
-
$gradientBackground: gradientBackground,
|
|
18217
|
-
$isScrubbable: isScrubbable,
|
|
18218
18219
|
$width: width,
|
|
18219
|
-
|
|
18220
|
-
|
|
18221
|
-
|
|
18222
|
-
|
|
18223
|
-
|
|
18224
|
-
|
|
18225
|
-
|
|
18226
|
-
|
|
18220
|
+
"data-thumbnail-container": true,
|
|
18221
|
+
...props,
|
|
18222
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime327.jsxs)(
|
|
18223
|
+
StyledThumbnail,
|
|
18224
|
+
{
|
|
18225
|
+
$backgroundUrl: backgroundUrl,
|
|
18226
|
+
$gradientBackground: gradientBackground,
|
|
18227
|
+
$isScrubbable: isScrubbable,
|
|
18228
|
+
onBlur: handleMouseOut,
|
|
18229
|
+
onMouseMove: handleMouseMove,
|
|
18230
|
+
onMouseOut: handleMouseOut,
|
|
18231
|
+
role: "presentation",
|
|
18232
|
+
children: [
|
|
18233
|
+
(0, import_type_guards74.isNotNil)(children) ? children : null,
|
|
18234
|
+
thumbnailContent
|
|
18235
|
+
]
|
|
18236
|
+
}
|
|
18237
|
+
)
|
|
18227
18238
|
}
|
|
18228
18239
|
);
|
|
18229
18240
|
}
|
|
@@ -18238,72 +18249,55 @@ var import_jsx_runtime328 = (
|
|
|
18238
18249
|
// ThumbnailCollage will fallback to a Thumbnail with a gradient background if no children are provided
|
|
18239
18250
|
require("react/jsx-runtime")
|
|
18240
18251
|
);
|
|
18252
|
+
var ThumbnailCollageContainer = import_styled_components127.styled.div`
|
|
18253
|
+
container-type: size;
|
|
18254
|
+
width: 100%;
|
|
18255
|
+
aspect-ratio: 16 / 9;
|
|
18256
|
+
display: flex;
|
|
18257
|
+
`;
|
|
18241
18258
|
var StyledThumbnailCollage = import_styled_components127.styled.div`
|
|
18242
18259
|
display: grid;
|
|
18243
18260
|
gap: var(--wui-space-01);
|
|
18244
18261
|
width: 100%;
|
|
18245
18262
|
grid-template-columns: 3fr 2fr;
|
|
18246
18263
|
grid-template-rows: 1fr 1fr;
|
|
18247
|
-
aspect-ratio: 16 / 9;
|
|
18248
18264
|
|
|
18249
18265
|
&:has(:nth-child(1)) {
|
|
18250
|
-
--wui-collage-thumbnail-first-border-radius: calc(8% * (9 / 16)) / 8%;
|
|
18251
|
-
|
|
18252
18266
|
grid-template-areas:
|
|
18253
18267
|
'a a'
|
|
18254
18268
|
'a a';
|
|
18255
18269
|
}
|
|
18256
18270
|
|
|
18257
18271
|
&:has(:nth-child(2)) {
|
|
18258
|
-
--wui-collage-thumbnail-first-border-radius: 7.5% / 8%;
|
|
18259
|
-
--wui-collage-thumbnail-second-border-radius: 11.5% / 8%;
|
|
18260
|
-
|
|
18261
18272
|
grid-template-areas:
|
|
18262
18273
|
'a b'
|
|
18263
18274
|
'a b';
|
|
18264
18275
|
}
|
|
18265
18276
|
|
|
18266
18277
|
&:has(:nth-child(3)) {
|
|
18267
|
-
--wui-collage-thumbnail-first-border-radius: 7.5% / 8%;
|
|
18268
|
-
--wui-collage-thumbnail-second-border-radius: 11.5% / 16%;
|
|
18269
|
-
--wui-collage-thumbnail-third-border-radius: 11.5% / 16%;
|
|
18270
|
-
|
|
18271
18278
|
grid-template-areas:
|
|
18272
18279
|
'a b'
|
|
18273
18280
|
'a c';
|
|
18274
18281
|
}
|
|
18275
18282
|
|
|
18276
18283
|
> :nth-child(1) {
|
|
18277
|
-
--wui-collage-thumbnail-border-radius: var(--wui-collage-thumbnail-first-border-radius);
|
|
18278
|
-
|
|
18279
18284
|
grid-area: a;
|
|
18280
18285
|
}
|
|
18281
18286
|
|
|
18282
18287
|
> :nth-child(2) {
|
|
18283
|
-
--wui-collage-thumbnail-border-radius: var(--wui-collage-thumbnail-second-border-radius);
|
|
18284
|
-
|
|
18285
18288
|
grid-area: b;
|
|
18286
18289
|
}
|
|
18287
18290
|
|
|
18288
18291
|
> :nth-child(3) {
|
|
18289
|
-
--wui-collage-thumbnail-border-radius: var(--wui-collage-thumbnail-third-border-radius);
|
|
18290
|
-
|
|
18291
18292
|
grid-area: c;
|
|
18292
18293
|
}
|
|
18293
18294
|
|
|
18294
|
-
|
|
18295
|
+
[data-thumbnail-container] {
|
|
18296
|
+
//allows for the border radius to be based off the collage's dimensions
|
|
18297
|
+
container-type: unset;
|
|
18295
18298
|
aspect-ratio: unset;
|
|
18296
18299
|
height: 100%;
|
|
18297
18300
|
width: 100%;
|
|
18298
|
-
border-radius: var(--wui-collage-thumbnail-border-radius);
|
|
18299
|
-
|
|
18300
|
-
img {
|
|
18301
|
-
border-radius: var(--wui-collage-thumbnail-border-radius);
|
|
18302
|
-
}
|
|
18303
|
-
|
|
18304
|
-
> :not(img) {
|
|
18305
|
-
display: none;
|
|
18306
|
-
}
|
|
18307
18301
|
}
|
|
18308
18302
|
`;
|
|
18309
18303
|
var ThumbnailCollage = ({
|
|
@@ -18328,7 +18322,7 @@ var ThumbnailCollage = ({
|
|
|
18328
18322
|
"fallback"
|
|
18329
18323
|
)
|
|
18330
18324
|
];
|
|
18331
|
-
return /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(
|
|
18325
|
+
return /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(ThumbnailCollageContainer, { children: /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(
|
|
18332
18326
|
StyledThumbnailCollage,
|
|
18333
18327
|
{
|
|
18334
18328
|
$gradientBackground: gradientBackground,
|
|
@@ -18336,7 +18330,7 @@ var ThumbnailCollage = ({
|
|
|
18336
18330
|
...props,
|
|
18337
18331
|
children: thumbnails
|
|
18338
18332
|
}
|
|
18339
|
-
);
|
|
18333
|
+
) });
|
|
18340
18334
|
};
|
|
18341
18335
|
|
|
18342
18336
|
// src/components/WistiaLogo/WistiaLogo.tsx
|