@wistia/ui 0.18.14-beta.0ffff1cc.bde9434 → 0.18.14-beta.1aa3954d.d75667d

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.18.14-beta.0ffff1cc.bde9434
3
+ * @license @wistia/ui v0.18.14-beta.1aa3954d.d75667d
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -73,6 +73,7 @@ __export(index_exports, {
73
73
  ComboboxOption: () => ComboboxOption,
74
74
  ContextMenu: () => ContextMenu,
75
75
  ContrastControls: () => ContrastControls,
76
+ CustomizableThemeWrapper: () => CustomizableThemeWrapper,
76
77
  DataCard: () => DataCard,
77
78
  DataCardHoverArrow: () => DataCardHoverArrow,
78
79
  DataCardTrend: () => DataCardTrend,
@@ -18826,6 +18827,26 @@ var SplitButton = ({
18826
18827
  ] });
18827
18828
  };
18828
18829
  SplitButton.displayName = "SplitButton_UI";
18830
+
18831
+ // src/components/CustomizableThemeWrapper/CustomizableThemeWrapper.tsx
18832
+ var import_styled_components132 = require("styled-components");
18833
+ var import_jsx_runtime340 = require("react/jsx-runtime");
18834
+ var StyledCustomizableThemeWrapper = import_styled_components132.styled.div(
18835
+ (props) => props.$overrides
18836
+ );
18837
+ var CustomizableThemeWrapper = ({
18838
+ children,
18839
+ overrides,
18840
+ ...props
18841
+ }) => /* @__PURE__ */ (0, import_jsx_runtime340.jsx)(
18842
+ StyledCustomizableThemeWrapper,
18843
+ {
18844
+ ...props,
18845
+ $overrides: overrides,
18846
+ children
18847
+ }
18848
+ );
18849
+ CustomizableThemeWrapper.displayName = "CustomizableThemeWrapper_UI";
18829
18850
  // Annotate the CommonJS export names for ESM import in node:
18830
18851
  0 && (module.exports = {
18831
18852
  ActionButton,
@@ -18862,6 +18883,7 @@ SplitButton.displayName = "SplitButton_UI";
18862
18883
  ComboboxOption,
18863
18884
  ContextMenu,
18864
18885
  ContrastControls,
18886
+ CustomizableThemeWrapper,
18865
18887
  DataCard,
18866
18888
  DataCardHoverArrow,
18867
18889
  DataCardTrend,