@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.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.0.20
3
+ * @license @wistia/ui v0.0.21
4
4
  *
5
5
  * Copyright (c) 2024-2024, Wistia, Inc. and its affiliates.
6
6
  *
@@ -3284,11 +3284,8 @@ var FavoriteOutlineIcon = (props) => /* @__PURE__ */ jsx66(
3284
3284
  children: /* @__PURE__ */ jsx66(
3285
3285
  "path",
3286
3286
  {
3287
- d: "M12 2.33321L14.9866 8.38519L21.6666 9.35586L16.8333 14.0678L17.9746 20.7198L12 17.5798L6.02532 20.7198L7.16665 14.0678L2.33333 9.35586L9.01331 8.38519L12 2.33321Z",
3288
- stroke: "#64646A",
3289
- strokeLinecap: "round",
3290
- strokeLinejoin: "round",
3291
- strokeWidth: "1.99999"
3287
+ 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",
3288
+ fill: "currentColor"
3292
3289
  }
3293
3290
  )
3294
3291
  }
@@ -5851,7 +5848,7 @@ var Checkbox = forwardRef4(
5851
5848
  ...otherProps
5852
5849
  }, ref) => {
5853
5850
  const generatedId = useId();
5854
- const computedId = isNonEmptyString2(id) ? id : `vhs-checkbox-${generatedId}`;
5851
+ const computedId = isNonEmptyString2(id) ? id : `ui-checkbox-${generatedId}`;
5855
5852
  return /* @__PURE__ */ jsxs6(StyledCheckboxWrapper, { children: [
5856
5853
  /* @__PURE__ */ jsx166(
5857
5854
  StyledCheckboxRoot,
@@ -6962,7 +6959,7 @@ var Radio = forwardRef10(
6962
6959
  ...otherProps
6963
6960
  }, ref) => {
6964
6961
  const generatedId = useId2();
6965
- const computedId = isNonEmptyString3(id) ? id : `vhs-radio-${generatedId}`;
6962
+ const computedId = isNonEmptyString3(id) ? id : `ui-radio-${generatedId}`;
6966
6963
  return /* @__PURE__ */ jsxs12(
6967
6964
  StyledRadioWrapper,
6968
6965
  {
@@ -6976,7 +6973,7 @@ var Radio = forwardRef10(
6976
6973
  "aria-checked": checked,
6977
6974
  checked,
6978
6975
  disabled,
6979
- id,
6976
+ id: computedId,
6980
6977
  name,
6981
6978
  onChange,
6982
6979
  type: "radio",