@wistia/ui 0.21.2-beta.527f4090.c8c7b4e → 0.21.2-beta.d6f13bc7.7286c8a
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.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.21.2-beta.
|
|
3
|
+
* @license @wistia/ui v0.21.2-beta.d6f13bc7.7286c8a
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2026, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -16411,11 +16411,11 @@ var ListComponent = styled78.ul`
|
|
|
16411
16411
|
list-style-position: outside;
|
|
16412
16412
|
margin: 0 0 var(--wui-space-01);
|
|
16413
16413
|
padding: 0 0 0 var(--wui-space-04);
|
|
16414
|
-
${({ variant }) => variant === "unbulleted" && unbulletedStyle};
|
|
16415
|
-
${({ variant }) => variant === "spaces" && spacesStyle};
|
|
16416
|
-
${({ variant }) => variant === "commas" && commasStyle};
|
|
16417
|
-
${({ variant }) => variant === "slashes" && slashesStyle};
|
|
16418
|
-
${({ variant }) => variant === "breadcrumbs" && breadcrumbsStyle};
|
|
16414
|
+
${({ $variant }) => $variant === "unbulleted" && unbulletedStyle};
|
|
16415
|
+
${({ $variant }) => $variant === "spaces" && spacesStyle};
|
|
16416
|
+
${({ $variant }) => $variant === "commas" && commasStyle};
|
|
16417
|
+
${({ $variant }) => $variant === "slashes" && slashesStyle};
|
|
16418
|
+
${({ $variant }) => $variant === "breadcrumbs" && breadcrumbsStyle};
|
|
16419
16419
|
|
|
16420
16420
|
> li:last-child {
|
|
16421
16421
|
margin-bottom: 0;
|
|
@@ -16438,7 +16438,7 @@ var renderListComponent = (listItems, variant, { ...otherProps }) => {
|
|
|
16438
16438
|
ListComponent,
|
|
16439
16439
|
{
|
|
16440
16440
|
as: elementType,
|
|
16441
|
-
variant,
|
|
16441
|
+
$variant: variant,
|
|
16442
16442
|
...otherProps,
|
|
16443
16443
|
children: listItems
|
|
16444
16444
|
}
|