@wistia/ui 0.0.20 → 0.0.21
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 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +6 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.0.
|
|
3
|
+
* @license @wistia/ui v0.0.21
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2024, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -3359,11 +3359,8 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ (0, import_jsx_runtime66.js
|
|
|
3359
3359
|
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3360
3360
|
"path",
|
|
3361
3361
|
{
|
|
3362
|
-
d: "M12
|
|
3363
|
-
|
|
3364
|
-
strokeLinecap: "round",
|
|
3365
|
-
strokeLinejoin: "round",
|
|
3366
|
-
strokeWidth: "1.99999"
|
|
3362
|
+
d: "M12 1.33321C12.3806 1.33321 12.7283 1.54931 12.8967 1.89066L15.6507 7.47119L21.8104 8.36625C22.1871 8.42098 22.5 8.68481 22.6177 9.0468C22.7353 9.4088 22.6372 9.80619 22.3647 10.0719L17.9078 14.4169L18.9602 20.5507C19.0246 20.9259 18.8704 21.305 18.5625 21.5288C18.2546 21.7525 17.8463 21.7821 17.5094 21.605L12 18.7095L6.49053 21.605C6.1536 21.7821 5.74536 21.7525 5.43745 21.5288C5.12954 21.305 4.97535 20.9259 5.03972 20.5507L6.09215 14.4169L1.63526 10.0719C1.36272 9.80619 1.26465 9.4088 1.38228 9.0468C1.49991 8.68481 1.81285 8.42098 2.18953 8.36625L8.34923 7.47119L11.1032 1.89066C11.2717 1.54931 11.6193 1.33321 12 1.33321ZM12 4.59286L9.91005 8.82773C9.76439 9.12289 9.48282 9.32746 9.15711 9.37479L4.4821 10.0541L7.86471 13.3518C8.10037 13.5816 8.2079 13.9126 8.15224 14.2369L7.35352 18.8921L11.5348 16.6946C11.826 16.5416 12.1739 16.5416 12.4652 16.6946L16.6464 18.8921L15.8477 14.2369C15.792 13.9126 15.8996 13.5816 16.1352 13.3518L19.5178 10.0541L14.8428 9.37479C14.5171 9.32746 14.2355 9.12289 14.0899 8.82773L12 4.59286Z",
|
|
3363
|
+
fill: "currentColor"
|
|
3367
3364
|
}
|
|
3368
3365
|
)
|
|
3369
3366
|
}
|
|
@@ -5926,7 +5923,7 @@ var Checkbox = (0, import_react11.forwardRef)(
|
|
|
5926
5923
|
...otherProps
|
|
5927
5924
|
}, ref) => {
|
|
5928
5925
|
const generatedId = (0, import_react11.useId)();
|
|
5929
|
-
const computedId = (0, import_type_guards15.isNonEmptyString)(id) ? id : `
|
|
5926
|
+
const computedId = (0, import_type_guards15.isNonEmptyString)(id) ? id : `ui-checkbox-${generatedId}`;
|
|
5930
5927
|
return /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(StyledCheckboxWrapper, { children: [
|
|
5931
5928
|
/* @__PURE__ */ (0, import_jsx_runtime166.jsx)(
|
|
5932
5929
|
StyledCheckboxRoot,
|
|
@@ -7011,7 +7008,7 @@ var Radio = (0, import_react18.forwardRef)(
|
|
|
7011
7008
|
...otherProps
|
|
7012
7009
|
}, ref) => {
|
|
7013
7010
|
const generatedId = (0, import_react18.useId)();
|
|
7014
|
-
const computedId = (0, import_type_guards19.isNonEmptyString)(id) ? id : `
|
|
7011
|
+
const computedId = (0, import_type_guards19.isNonEmptyString)(id) ? id : `ui-radio-${generatedId}`;
|
|
7015
7012
|
return /* @__PURE__ */ (0, import_jsx_runtime182.jsxs)(
|
|
7016
7013
|
StyledRadioWrapper,
|
|
7017
7014
|
{
|
|
@@ -7025,7 +7022,7 @@ var Radio = (0, import_react18.forwardRef)(
|
|
|
7025
7022
|
"aria-checked": checked,
|
|
7026
7023
|
checked,
|
|
7027
7024
|
disabled,
|
|
7028
|
-
id,
|
|
7025
|
+
id: computedId,
|
|
7029
7026
|
name,
|
|
7030
7027
|
onChange,
|
|
7031
7028
|
type: "radio",
|