@wistia/vhs 4.0.0-beta.d710dfe1.cec52d4 → 4.0.0-beta.d9e3dd7c.d6acc83

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.d710dfe1.cec52d4
3
+ * @license @wistia/vhs v4.0.0-beta.d9e3dd7c.d6acc83
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;
@@ -6756,7 +6755,9 @@ var disabledStyle3 = import_styled_components30.css`
6756
6755
  var errorHoverStyle = import_styled_components30.css`
6757
6756
  border-color: transparent;
6758
6757
  `;
6759
- var errorFocusedStyle = import_styled_components30.css``;
6758
+ var errorFocusedStyle = import_styled_components30.css`
6759
+ outline: none;
6760
+ `;
6760
6761
  var errorStyle = import_styled_components30.css`
6761
6762
  background-color: ${({ theme: theme2 }) => theme2.color.error100};
6762
6763
  border: 1px solid ${({ theme: theme2 }) => theme2.color.error500};
@@ -9365,7 +9366,7 @@ var import_slate_react = require("slate-react");
9365
9366
  var import_styled_components48 = require("styled-components");
9366
9367
  var import_jsx_runtime169 = require("react/jsx-runtime");
9367
9368
  var Wrapper = import_styled_components48.styled.span`
9368
- display: 'inline-block';
9369
+ display: inline-block;
9369
9370
  user-select: none;
9370
9371
  `;
9371
9372
  var Image = import_styled_components48.styled.img`
@@ -12728,7 +12729,7 @@ var setCursorPosition = (ref, start, end) => {
12728
12729
  var getSelectionFromMove = (selection, move, positions) => {
12729
12730
  const currentIndex = positions.findIndex((pos) => pos.start === selection[0]);
12730
12731
  let nextPosition = positions[currentIndex + move];
12731
- if (nextPosition && nextPosition.type === "skip") {
12732
+ if (nextPosition?.type === "skip") {
12732
12733
  nextPosition = positions[currentIndex + move * 2];
12733
12734
  }
12734
12735
  if (nextPosition) {
@@ -13816,7 +13817,7 @@ var ThumbnailCollageContainer = import_styled_components80.styled.div`
13816
13817
  grid-template-columns: 3fr 2fr;
13817
13818
  grid-template-rows: 1fr 1fr;
13818
13819
  width: 100%;
13819
- grid-gap: ${({ theme: theme2 }) => theme2.spacing.space01};
13820
+ gap: ${({ theme: theme2 }) => theme2.spacing.space01};
13820
13821
  height: 100%;
13821
13822
  `;
13822
13823
  var CollageImage2 = import_styled_components80.styled.div`