@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 +10 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +10 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.18.
|
|
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
|
*
|
|
@@ -1834,7 +1834,7 @@ var colorTokens = css11`
|
|
|
1834
1834
|
${colorAliasTokens}
|
|
1835
1835
|
`;
|
|
1836
1836
|
var designTokens = css11`
|
|
1837
|
-
:
|
|
1837
|
+
:where([data-wui-theme]) {
|
|
1838
1838
|
${borderRadiusTokens}
|
|
1839
1839
|
${colorTokens}
|
|
1840
1840
|
${elevationTokens}
|
|
@@ -1973,7 +1973,14 @@ var UIProvider = ({ children }) => {
|
|
|
1973
1973
|
}
|
|
1974
1974
|
return /* @__PURE__ */ jsx3(UIProviderNestingContext.Provider, { value: true, children: /* @__PURE__ */ jsx3(AriaLiveProvider, { children: /* @__PURE__ */ jsxs(TooltipProvider, { children: [
|
|
1975
1975
|
/* @__PURE__ */ jsx3(GlobalStyle, {}),
|
|
1976
|
-
|
|
1976
|
+
/* @__PURE__ */ jsx3(
|
|
1977
|
+
"div",
|
|
1978
|
+
{
|
|
1979
|
+
"data-wui-theme": "true",
|
|
1980
|
+
style: { display: "contents" },
|
|
1981
|
+
children
|
|
1982
|
+
}
|
|
1983
|
+
),
|
|
1977
1984
|
/* @__PURE__ */ jsx3(ToastProvider, {})
|
|
1978
1985
|
] }) }) });
|
|
1979
1986
|
};
|