@wistia/vhs 4.0.0-beta.bad9f076.862ba71 → 4.0.0-beta.bd62e6f9.aa62ddb
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 +5 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +5 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -18
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/vhs v4.0.0-beta.
|
|
3
|
+
* @license @wistia/vhs v4.0.0-beta.bd62e6f9.aa62ddb
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2021-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -5109,8 +5109,7 @@ var import_type_guards14 = require("@wistia/type-guards");
|
|
|
5109
5109
|
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
5110
5110
|
var screenReaderOnlyStyle = import_styled_components15.css`
|
|
5111
5111
|
border: 0;
|
|
5112
|
-
clip:
|
|
5113
|
-
clip-path: inset(50%); /* modern but less support */
|
|
5112
|
+
clip-path: inset(50%);
|
|
5114
5113
|
height: 1px;
|
|
5115
5114
|
overflow: hidden;
|
|
5116
5115
|
padding: 0;
|
|
@@ -9365,7 +9364,7 @@ var import_slate_react = require("slate-react");
|
|
|
9365
9364
|
var import_styled_components48 = require("styled-components");
|
|
9366
9365
|
var import_jsx_runtime169 = require("react/jsx-runtime");
|
|
9367
9366
|
var Wrapper = import_styled_components48.styled.span`
|
|
9368
|
-
display:
|
|
9367
|
+
display: inline-block;
|
|
9369
9368
|
user-select: none;
|
|
9370
9369
|
`;
|
|
9371
9370
|
var Image = import_styled_components48.styled.img`
|
|
@@ -12728,7 +12727,7 @@ var setCursorPosition = (ref, start, end) => {
|
|
|
12728
12727
|
var getSelectionFromMove = (selection, move, positions) => {
|
|
12729
12728
|
const currentIndex = positions.findIndex((pos) => pos.start === selection[0]);
|
|
12730
12729
|
let nextPosition = positions[currentIndex + move];
|
|
12731
|
-
if (nextPosition
|
|
12730
|
+
if (nextPosition?.type === "skip") {
|
|
12732
12731
|
nextPosition = positions[currentIndex + move * 2];
|
|
12733
12732
|
}
|
|
12734
12733
|
if (nextPosition) {
|
|
@@ -13816,7 +13815,7 @@ var ThumbnailCollageContainer = import_styled_components80.styled.div`
|
|
|
13816
13815
|
grid-template-columns: 3fr 2fr;
|
|
13817
13816
|
grid-template-rows: 1fr 1fr;
|
|
13818
13817
|
width: 100%;
|
|
13819
|
-
|
|
13818
|
+
gap: ${({ theme: theme2 }) => theme2.spacing.space01};
|
|
13820
13819
|
height: 100%;
|
|
13821
13820
|
`;
|
|
13822
13821
|
var CollageImage2 = import_styled_components80.styled.div`
|