@wistia/ui 0.10.12-beta.cde8f0ef.b15a063 → 0.10.12

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 CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.10.12-beta.cde8f0ef.b15a063
3
+ * @license @wistia/ui v0.10.12
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -12641,7 +12641,9 @@ var SelectedItemStyleProvider = ({
12641
12641
  height: `${selectedItemMeasurements.offsetHeight}px`,
12642
12642
  transform: `translateX(${selectedItemMeasurements.offsetLeft}px) translateY(-50%)`,
12643
12643
  width: `${selectedItemMeasurements.offsetWidth}px`
12644
- } : void 0,
12644
+ } : {
12645
+ transform: "translateY(-50%)"
12646
+ },
12645
12647
  [selectedItemMeasurements]
12646
12648
  );
12647
12649
  const contextValue = (0, import_react61.useMemo)(
@@ -13548,7 +13550,7 @@ var import_jsx_runtime275 = require("react/jsx-runtime");
13548
13550
  var SelectedTabIndicator = () => {
13549
13551
  const { selectedItemIndicatorStyle } = useSelectedItemStyle();
13550
13552
  const selectedValue = useTabsValue();
13551
- if (selectedValue == null || !selectedItemIndicatorStyle) {
13553
+ if (selectedValue == null) {
13552
13554
  return null;
13553
13555
  }
13554
13556
  return /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(TabsSelectedItemIndicatorDiv, { style: selectedItemIndicatorStyle });