@wistia/ui 0.18.16-beta.f43fc62c.7fe692f → 0.18.17-beta.2be58098.c00c4ab

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.16-beta.f43fc62c.7fe692f
3
+ * @license @wistia/ui v0.18.17-beta.2be58098.c00c4ab
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -2025,7 +2025,7 @@ var colorTokens = import_styled_components11.css`
2025
2025
  ${colorAliasTokens}
2026
2026
  `;
2027
2027
  var designTokens = import_styled_components11.css`
2028
- :root {
2028
+ :where([data-wui-theme]) {
2029
2029
  ${borderRadiusTokens}
2030
2030
  ${colorTokens}
2031
2031
  ${elevationTokens}
@@ -2164,7 +2164,14 @@ var UIProvider = ({ children }) => {
2164
2164
  }
2165
2165
  return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(UIProviderNestingContext.Provider, { value: true, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(AriaLiveProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_react_tooltip.Provider, { children: [
2166
2166
  /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(GlobalStyle, {}),
2167
- children,
2167
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
2168
+ "div",
2169
+ {
2170
+ "data-wui-theme": "true",
2171
+ style: { display: "contents" },
2172
+ children
2173
+ }
2174
+ ),
2168
2175
  /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(ToastProvider, {})
2169
2176
  ] }) }) });
2170
2177
  };