@wistia/ui 0.18.4 → 0.18.5-beta.14857308.2486ee1
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 +6 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +14 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -4138,7 +4138,7 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<'div'>, 'children'> & {
|
|
|
4138
4138
|
/**
|
|
4139
4139
|
* The URL of the thumbnail image to display
|
|
4140
4140
|
*/
|
|
4141
|
-
thumbnailUrl: string | null;
|
|
4141
|
+
thumbnailUrl: string | null | undefined;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* Children to render inside the thumbnail; must be a `ThumbnailBadge` component
|
|
4144
4144
|
*/
|
|
@@ -4178,7 +4178,7 @@ declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.Detaile
|
|
|
4178
4178
|
/**
|
|
4179
4179
|
* The URL of the thumbnail image to display
|
|
4180
4180
|
*/
|
|
4181
|
-
thumbnailUrl: string | null;
|
|
4181
|
+
thumbnailUrl: string | null | undefined;
|
|
4182
4182
|
/**
|
|
4183
4183
|
* Children to render inside the thumbnail; must be a `ThumbnailBadge` component
|
|
4184
4184
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -4138,7 +4138,7 @@ type ThumbnailProps = Omit<ComponentPropsWithoutRef<'div'>, 'children'> & {
|
|
|
4138
4138
|
/**
|
|
4139
4139
|
* The URL of the thumbnail image to display
|
|
4140
4140
|
*/
|
|
4141
|
-
thumbnailUrl: string | null;
|
|
4141
|
+
thumbnailUrl: string | null | undefined;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* Children to render inside the thumbnail; must be a `ThumbnailBadge` component
|
|
4144
4144
|
*/
|
|
@@ -4178,7 +4178,7 @@ declare const Thumbnail: react.ForwardRefExoticComponent<Omit<Omit<react.Detaile
|
|
|
4178
4178
|
/**
|
|
4179
4179
|
* The URL of the thumbnail image to display
|
|
4180
4180
|
*/
|
|
4181
|
-
thumbnailUrl: string | null;
|
|
4181
|
+
thumbnailUrl: string | null | undefined;
|
|
4182
4182
|
/**
|
|
4183
4183
|
* Children to render inside the thumbnail; must be a `ThumbnailBadge` component
|
|
4184
4184
|
*/
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.18.
|
|
3
|
+
* @license @wistia/ui v0.18.5-beta.14857308.2486ee1
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -17699,7 +17699,14 @@ ThumbnailBadge.displayName = "ThumbnailBadge_UI";
|
|
|
17699
17699
|
// src/components/Thumbnail/Thumbnail.tsx
|
|
17700
17700
|
import { forwardRef as forwardRef37, useState as useState26, useRef as useRef24, useCallback as useCallback20, useMemo as useMemo17 } from "react";
|
|
17701
17701
|
import { styled as styled107 } from "styled-components";
|
|
17702
|
-
import {
|
|
17702
|
+
import {
|
|
17703
|
+
isNil as isNil19,
|
|
17704
|
+
isNotNil as isNotNil43,
|
|
17705
|
+
isUndefined as isUndefined7,
|
|
17706
|
+
isEmptyString as isEmptyString2,
|
|
17707
|
+
isString as isString4,
|
|
17708
|
+
isNonEmptyString as isNonEmptyString10
|
|
17709
|
+
} from "@wistia/type-guards";
|
|
17703
17710
|
|
|
17704
17711
|
// src/private/helpers/getBackgroundGradient/getBackgroundGradient.ts
|
|
17705
17712
|
import { isNotNil as isNotNil41 } from "@wistia/type-guards";
|
|
@@ -18072,6 +18079,9 @@ var getRelativeMousePosition = (elem, mouseEvent) => {
|
|
|
18072
18079
|
left: relativeLeft
|
|
18073
18080
|
};
|
|
18074
18081
|
};
|
|
18082
|
+
var hasValidThumbnailUrl = (thumbnailUrl) => {
|
|
18083
|
+
return isNotNil43(thumbnailUrl) && isNonEmptyString10(thumbnailUrl);
|
|
18084
|
+
};
|
|
18075
18085
|
var Thumbnail = forwardRef37(
|
|
18076
18086
|
({
|
|
18077
18087
|
gradientBackground = "defaultMidOne",
|
|
@@ -18090,7 +18100,7 @@ var Thumbnail = forwardRef37(
|
|
|
18090
18100
|
const storyboardElementRef = useRef24(null);
|
|
18091
18101
|
const [cursorPosition, setCursorPosition] = useState26(null);
|
|
18092
18102
|
const backgroundUrl = useMemo17(
|
|
18093
|
-
() => thumbnailImageType === "square" &&
|
|
18103
|
+
() => thumbnailImageType === "square" && hasValidThumbnailUrl(thumbnailUrl) ? thumbnailUrl : void 0,
|
|
18094
18104
|
[thumbnailImageType, thumbnailUrl]
|
|
18095
18105
|
);
|
|
18096
18106
|
const isScrubbable = isNotNil43(storyboard);
|
|
@@ -18141,7 +18151,7 @@ var Thumbnail = forwardRef37(
|
|
|
18141
18151
|
width
|
|
18142
18152
|
}
|
|
18143
18153
|
);
|
|
18144
|
-
} else if (
|
|
18154
|
+
} else if (hasValidThumbnailUrl(thumbnailUrl)) {
|
|
18145
18155
|
thumbnailContent = /* @__PURE__ */ jsx326(
|
|
18146
18156
|
ThumbnailImage,
|
|
18147
18157
|
{
|