@wistia/ui 0.4.10-beta.ec177e4f.e232e9c → 0.4.10
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 +45 -48
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +212 -113
- package/dist/index.d.ts +212 -113
- package/dist/index.mjs +82 -85
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.4.10
|
|
3
|
+
* @license @wistia/ui v0.4.10
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -6151,52 +6151,49 @@ var wrapChildren = (children) => {
|
|
|
6151
6151
|
}
|
|
6152
6152
|
return null;
|
|
6153
6153
|
};
|
|
6154
|
-
var Box = (
|
|
6155
|
-
|
|
6156
|
-
|
|
6157
|
-
|
|
6158
|
-
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
|
|
6163
|
-
|
|
6164
|
-
|
|
6165
|
-
|
|
6166
|
-
|
|
6167
|
-
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
|
|
6197
|
-
);
|
|
6198
|
-
}
|
|
6199
|
-
);
|
|
6154
|
+
var Box = ({
|
|
6155
|
+
alignContent = "stretch",
|
|
6156
|
+
alignItems = "flex-start",
|
|
6157
|
+
alignSelf,
|
|
6158
|
+
basis,
|
|
6159
|
+
children,
|
|
6160
|
+
direction = "row",
|
|
6161
|
+
fill = false,
|
|
6162
|
+
fillViewport = false,
|
|
6163
|
+
gap,
|
|
6164
|
+
grow,
|
|
6165
|
+
hasBoxParent = false,
|
|
6166
|
+
// eslint-disable-line @typescript-eslint/no-unused-vars
|
|
6167
|
+
inline = false,
|
|
6168
|
+
justifyContent = "flex-start",
|
|
6169
|
+
order,
|
|
6170
|
+
shrink,
|
|
6171
|
+
wrapItems = false,
|
|
6172
|
+
...otherProps
|
|
6173
|
+
}) => {
|
|
6174
|
+
return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
|
|
6175
|
+
BoxComponent,
|
|
6176
|
+
{
|
|
6177
|
+
$alignContent: alignContent,
|
|
6178
|
+
$alignItems: alignItems,
|
|
6179
|
+
$alignSelf: alignSelf,
|
|
6180
|
+
$basis: basis,
|
|
6181
|
+
$fillBox: fill,
|
|
6182
|
+
$fillViewport: fillViewport,
|
|
6183
|
+
$flexDirection: direction,
|
|
6184
|
+
$gap: gap,
|
|
6185
|
+
$grow: grow,
|
|
6186
|
+
$inline: inline,
|
|
6187
|
+
$justifyContent: justifyContent,
|
|
6188
|
+
$order: order,
|
|
6189
|
+
$shrink: shrink,
|
|
6190
|
+
$wrapItems: wrapItems,
|
|
6191
|
+
as: "div",
|
|
6192
|
+
...otherProps,
|
|
6193
|
+
children: wrapChildren(children)
|
|
6194
|
+
}
|
|
6195
|
+
);
|
|
6196
|
+
};
|
|
6200
6197
|
Box.displayName = "Box";
|
|
6201
6198
|
|
|
6202
6199
|
// src/components/Breadcrumbs/Breadcrumbs.tsx
|
|
@@ -8204,7 +8201,6 @@ var ModalContent = (0, import_react36.forwardRef)(
|
|
|
8204
8201
|
ref,
|
|
8205
8202
|
$fullHeight: fullHeight,
|
|
8206
8203
|
$width: width,
|
|
8207
|
-
"aria-describedby": void 0,
|
|
8208
8204
|
...otherProps,
|
|
8209
8205
|
children
|
|
8210
8206
|
}
|
|
@@ -8300,6 +8296,7 @@ var Modal = (0, import_react38.forwardRef)(
|
|
|
8300
8296
|
ModalContent,
|
|
8301
8297
|
{
|
|
8302
8298
|
ref,
|
|
8299
|
+
"aria-describedby": void 0,
|
|
8303
8300
|
fullHeight,
|
|
8304
8301
|
onOpenAutoFocus: (event) => {
|
|
8305
8302
|
if ((0, import_type_guards28.isNotNil)(initialFocusRef) && initialFocusRef.current) {
|