@wistia/ui 0.18.5-beta.8179c5b3.6de4794 → 0.18.5-beta.cae4b3e3.38e6983
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 +12 -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 +11 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -5
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.18.5-beta.
|
|
3
|
+
* @license @wistia/ui v0.18.5-beta.cae4b3e3.38e6983
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -160,6 +160,7 @@ __export(index_exports, {
|
|
|
160
160
|
TabsList: () => TabsList,
|
|
161
161
|
TabsTrigger: () => TabsTrigger,
|
|
162
162
|
Tag: () => Tag,
|
|
163
|
+
Test: () => Test,
|
|
163
164
|
Text: () => Text,
|
|
164
165
|
Thumbnail: () => Thumbnail,
|
|
165
166
|
ThumbnailBadge: () => ThumbnailBadge,
|
|
@@ -18611,6 +18612,15 @@ var SplitButton = ({
|
|
|
18611
18612
|
] });
|
|
18612
18613
|
};
|
|
18613
18614
|
SplitButton.displayName = "SplitButton_UI";
|
|
18615
|
+
|
|
18616
|
+
// src/components/Test/Test.tsx
|
|
18617
|
+
var import_styled_components131 = require("styled-components");
|
|
18618
|
+
var import_jsx_runtime332 = require("react/jsx-runtime");
|
|
18619
|
+
var StyledTest = import_styled_components131.styled.div`
|
|
18620
|
+
/* add styles here */
|
|
18621
|
+
`;
|
|
18622
|
+
var Test = ({ children, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime332.jsx)(StyledTest, { ...props, children });
|
|
18623
|
+
Test.displayName = "Test_UI";
|
|
18614
18624
|
// Annotate the CommonJS export names for ESM import in node:
|
|
18615
18625
|
0 && (module.exports = {
|
|
18616
18626
|
ActionButton,
|
|
@@ -18734,6 +18744,7 @@ SplitButton.displayName = "SplitButton_UI";
|
|
|
18734
18744
|
TabsList,
|
|
18735
18745
|
TabsTrigger,
|
|
18736
18746
|
Tag,
|
|
18747
|
+
Test,
|
|
18737
18748
|
Text,
|
|
18738
18749
|
Thumbnail,
|
|
18739
18750
|
ThumbnailBadge,
|