@wistia/ui 0.18.14-beta.0862a865.317e0d6 → 0.18.14-beta.0d2630cd.e97d40a
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 +24 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +15 -1
- package/dist/index.d.ts +15 -1
- package/dist/index.mjs +23 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.18.14-beta.
|
|
3
|
+
* @license @wistia/ui v0.18.14-beta.0d2630cd.e97d40a
|
|
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,
|
|
@@ -11805,6 +11806,7 @@ var StyledSwitchWrapper = import_styled_components62.styled.div`
|
|
|
11805
11806
|
|
|
11806
11807
|
display: flex;
|
|
11807
11808
|
margin: 0;
|
|
11809
|
+
position: relative;
|
|
11808
11810
|
|
|
11809
11811
|
/* TODO this solves a problem but potentially causes and a11y issue */
|
|
11810
11812
|
user-select: none;
|
|
@@ -18826,6 +18828,26 @@ var SplitButton = ({
|
|
|
18826
18828
|
] });
|
|
18827
18829
|
};
|
|
18828
18830
|
SplitButton.displayName = "SplitButton_UI";
|
|
18831
|
+
|
|
18832
|
+
// src/components/CustomizableThemeWrapper/CustomizableThemeWrapper.tsx
|
|
18833
|
+
var import_styled_components132 = require("styled-components");
|
|
18834
|
+
var import_jsx_runtime340 = require("react/jsx-runtime");
|
|
18835
|
+
var StyledCustomizableThemeWrapper = import_styled_components132.styled.div(
|
|
18836
|
+
(props) => props.$overrides
|
|
18837
|
+
);
|
|
18838
|
+
var CustomizableThemeWrapper = ({
|
|
18839
|
+
children,
|
|
18840
|
+
overrides,
|
|
18841
|
+
...props
|
|
18842
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime340.jsx)(
|
|
18843
|
+
StyledCustomizableThemeWrapper,
|
|
18844
|
+
{
|
|
18845
|
+
...props,
|
|
18846
|
+
$overrides: overrides,
|
|
18847
|
+
children
|
|
18848
|
+
}
|
|
18849
|
+
);
|
|
18850
|
+
CustomizableThemeWrapper.displayName = "CustomizableThemeWrapper_UI";
|
|
18829
18851
|
// Annotate the CommonJS export names for ESM import in node:
|
|
18830
18852
|
0 && (module.exports = {
|
|
18831
18853
|
ActionButton,
|
|
@@ -18862,6 +18884,7 @@ SplitButton.displayName = "SplitButton_UI";
|
|
|
18862
18884
|
ComboboxOption,
|
|
18863
18885
|
ContextMenu,
|
|
18864
18886
|
ContrastControls,
|
|
18887
|
+
CustomizableThemeWrapper,
|
|
18865
18888
|
DataCard,
|
|
18866
18889
|
DataCardHoverArrow,
|
|
18867
18890
|
DataCardTrend,
|