@wistia/vhs 4.0.0-beta.64c2197f.dba10ff → 4.0.0-beta.71b676f3.95c7760

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 CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/vhs v4.0.0-beta.64c2197f.dba10ff
3
+ * @license @wistia/vhs v4.0.0-beta.71b676f3.95c7760
4
4
  *
5
5
  * Copyright (c) 2021-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -3840,7 +3840,7 @@ var normalize = import_styled_components7.css`
3840
3840
  [type='button'],
3841
3841
  [type='reset'],
3842
3842
  [type='submit'] {
3843
- appearance: button;
3843
+ appearance: auto;
3844
3844
  }
3845
3845
 
3846
3846
  /**
@@ -3950,7 +3950,7 @@ var normalize = import_styled_components7.css`
3950
3950
  */
3951
3951
 
3952
3952
  ::-webkit-file-upload-button {
3953
- appearance: button; /* 1 */
3953
+ appearance: auto; /* 1 */
3954
3954
  font: inherit; /* 2 */
3955
3955
  }
3956
3956
 
@@ -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: rect(1px, 1px, 1px, 1px); /* deprecated but remains as fallback */
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: 'inline-block';
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 && nextPosition.type === "skip") {
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
- grid-gap: ${({ theme: theme2 }) => theme2.spacing.space01};
13818
+ gap: ${({ theme: theme2 }) => theme2.spacing.space01};
13820
13819
  height: 100%;
13821
13820
  `;
13822
13821
  var CollageImage2 = import_styled_components80.styled.div`