@wistia/vhs 4.0.0-beta.0facbc0d.b39958a → 4.0.0-beta.144ba507.317e0d6

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.d.mts CHANGED
@@ -2,7 +2,7 @@ import * as styled_components from 'styled-components';
2
2
  import { css, DefaultTheme } from 'styled-components';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as react from 'react';
5
- import { JSX, ReactNode, ComponentPropsWithoutRef, Dispatch, SetStateAction, RefObject, MutableRefObject, MouseEvent, ComponentPropsWithRef, ChangeEvent, ElementType, FocusEvent, HTMLInputTypeAttribute, KeyboardEvent as KeyboardEvent$1, ReactElement, ComponentType, PropsWithChildren } from 'react';
5
+ import { JSX, ReactNode, ComponentPropsWithoutRef, Dispatch, SetStateAction, RefObject, MutableRefObject, MouseEvent, ComponentPropsWithRef, ChangeEvent, ElementType, Ref, ComponentClass, ComponentProps, FocusEvent, HTMLInputTypeAttribute, KeyboardEvent as KeyboardEvent$1, ReactElement, ComponentType, PropsWithChildren } from 'react';
6
6
  import { FormikProps, FormikHelpers, FormikErrors, Field } from 'formik';
7
7
  export { useFormikContext } from 'formik';
8
8
  import { DropdownMenuProps, DropdownMenuContentProps, DropdownMenuItemProps, DropdownMenuCheckboxItemProps, DropdownMenuRadioItemProps } from '@radix-ui/react-dropdown-menu';
@@ -547,7 +547,7 @@ type Rect = {
547
547
  x: number;
548
548
  y: number;
549
549
  };
550
- declare const useElementObserver: <T extends HTMLElement>() => [RefObject<T>, Rect];
550
+ declare const useElementObserver: <T extends HTMLElement>() => [RefObject<T | null>, Rect];
551
551
 
552
552
  type AddEventListenerType = (type: string, listener: (evt: Event) => void, options?: AddEventListenerOptions | boolean) => void;
553
553
  type RemoveEventListenerType = (type: string, listener: (evt: Event) => void, options?: AddEventListenerOptions | boolean) => void;
@@ -555,7 +555,7 @@ declare const useEvent: <T extends Event>(eventName: Parameters<AddEventListener
555
555
 
556
556
  type UseFocusTrapOptions = {
557
557
  disableAriaHider?: boolean;
558
- focusSelector?: HTMLElement | RefObject<HTMLElement> | string | null | undefined;
558
+ focusSelector?: HTMLElement | RefObject<HTMLElement | null> | string | null | undefined;
559
559
  };
560
560
  declare const useFocusTrap: (active?: boolean, options?: UseFocusTrapOptions) => (node: HTMLElement | null | undefined) => void;
561
561
 
@@ -1786,7 +1786,7 @@ type FormProps = {
1786
1786
  /**
1787
1787
  * Ref to access the form's state and API
1788
1788
  */
1789
- innerRef?: React.Ref<FormState>;
1789
+ innerRef?: Ref<FormState>;
1790
1790
  /**
1791
1791
  * On-submit callback
1792
1792
  */
@@ -1886,7 +1886,7 @@ type FormFieldProps = Omit<ComponentPropsWithRef<'input'>, 'placeholder'> & {
1886
1886
  /**
1887
1887
  * A custom component that acts as a field and that needs access to Formik fields
1888
1888
  */
1889
- customComponent?: React.ComponentClass<CustomComponentClass> | ((arg?: React.ComponentProps<typeof Field>) => ReactNode) | ((arg?: Record<string, unknown>) => ReactNode) | undefined;
1889
+ customComponent?: ComponentClass<CustomComponentClass> | ((arg?: ComponentProps<typeof Field>) => ReactNode) | ((arg?: Record<string, unknown>) => ReactNode) | undefined;
1890
1890
  /**
1891
1891
  * Should the radio buttons be displayed vertically as a column or horizontally as a row
1892
1892
  */
@@ -2532,7 +2532,7 @@ type ModalProps = ComponentPropsWithoutRef<'div'> & {
2532
2532
  /**
2533
2533
  * Ref to the element that should receive focus when the modal opens
2534
2534
  */
2535
- initialFocusRef?: RefObject<HTMLElement>;
2535
+ initialFocusRef?: RefObject<HTMLElement | null>;
2536
2536
  /**
2537
2537
  * Whether or not the modal is open, and should be rendered
2538
2538
  */
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as styled_components from 'styled-components';
2
2
  import { css, DefaultTheme } from 'styled-components';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as react from 'react';
5
- import { JSX, ReactNode, ComponentPropsWithoutRef, Dispatch, SetStateAction, RefObject, MutableRefObject, MouseEvent, ComponentPropsWithRef, ChangeEvent, ElementType, FocusEvent, HTMLInputTypeAttribute, KeyboardEvent as KeyboardEvent$1, ReactElement, ComponentType, PropsWithChildren } from 'react';
5
+ import { JSX, ReactNode, ComponentPropsWithoutRef, Dispatch, SetStateAction, RefObject, MutableRefObject, MouseEvent, ComponentPropsWithRef, ChangeEvent, ElementType, Ref, ComponentClass, ComponentProps, FocusEvent, HTMLInputTypeAttribute, KeyboardEvent as KeyboardEvent$1, ReactElement, ComponentType, PropsWithChildren } from 'react';
6
6
  import { FormikProps, FormikHelpers, FormikErrors, Field } from 'formik';
7
7
  export { useFormikContext } from 'formik';
8
8
  import { DropdownMenuProps, DropdownMenuContentProps, DropdownMenuItemProps, DropdownMenuCheckboxItemProps, DropdownMenuRadioItemProps } from '@radix-ui/react-dropdown-menu';
@@ -547,7 +547,7 @@ type Rect = {
547
547
  x: number;
548
548
  y: number;
549
549
  };
550
- declare const useElementObserver: <T extends HTMLElement>() => [RefObject<T>, Rect];
550
+ declare const useElementObserver: <T extends HTMLElement>() => [RefObject<T | null>, Rect];
551
551
 
552
552
  type AddEventListenerType = (type: string, listener: (evt: Event) => void, options?: AddEventListenerOptions | boolean) => void;
553
553
  type RemoveEventListenerType = (type: string, listener: (evt: Event) => void, options?: AddEventListenerOptions | boolean) => void;
@@ -555,7 +555,7 @@ declare const useEvent: <T extends Event>(eventName: Parameters<AddEventListener
555
555
 
556
556
  type UseFocusTrapOptions = {
557
557
  disableAriaHider?: boolean;
558
- focusSelector?: HTMLElement | RefObject<HTMLElement> | string | null | undefined;
558
+ focusSelector?: HTMLElement | RefObject<HTMLElement | null> | string | null | undefined;
559
559
  };
560
560
  declare const useFocusTrap: (active?: boolean, options?: UseFocusTrapOptions) => (node: HTMLElement | null | undefined) => void;
561
561
 
@@ -1786,7 +1786,7 @@ type FormProps = {
1786
1786
  /**
1787
1787
  * Ref to access the form's state and API
1788
1788
  */
1789
- innerRef?: React.Ref<FormState>;
1789
+ innerRef?: Ref<FormState>;
1790
1790
  /**
1791
1791
  * On-submit callback
1792
1792
  */
@@ -1886,7 +1886,7 @@ type FormFieldProps = Omit<ComponentPropsWithRef<'input'>, 'placeholder'> & {
1886
1886
  /**
1887
1887
  * A custom component that acts as a field and that needs access to Formik fields
1888
1888
  */
1889
- customComponent?: React.ComponentClass<CustomComponentClass> | ((arg?: React.ComponentProps<typeof Field>) => ReactNode) | ((arg?: Record<string, unknown>) => ReactNode) | undefined;
1889
+ customComponent?: ComponentClass<CustomComponentClass> | ((arg?: ComponentProps<typeof Field>) => ReactNode) | ((arg?: Record<string, unknown>) => ReactNode) | undefined;
1890
1890
  /**
1891
1891
  * Should the radio buttons be displayed vertically as a column or horizontally as a row
1892
1892
  */
@@ -2532,7 +2532,7 @@ type ModalProps = ComponentPropsWithoutRef<'div'> & {
2532
2532
  /**
2533
2533
  * Ref to the element that should receive focus when the modal opens
2534
2534
  */
2535
- initialFocusRef?: RefObject<HTMLElement>;
2535
+ initialFocusRef?: RefObject<HTMLElement | null>;
2536
2536
  /**
2537
2537
  * Whether or not the modal is open, and should be rendered
2538
2538
  */
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/vhs v4.0.0-beta.0facbc0d.b39958a
3
+ * @license @wistia/vhs v4.0.0-beta.144ba507.317e0d6
4
4
  *
5
5
  * Copyright (c) 2021-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -3707,7 +3707,7 @@ var normalize = css3`
3707
3707
  [type='button'],
3708
3708
  [type='reset'],
3709
3709
  [type='submit'] {
3710
- appearance: button;
3710
+ appearance: auto;
3711
3711
  }
3712
3712
 
3713
3713
  /**
@@ -3817,7 +3817,7 @@ var normalize = css3`
3817
3817
  */
3818
3818
 
3819
3819
  ::-webkit-file-upload-button {
3820
- appearance: button; /* 1 */
3820
+ appearance: auto; /* 1 */
3821
3821
  font: inherit; /* 2 */
3822
3822
  }
3823
3823
 
@@ -3937,7 +3937,7 @@ import { useCallback as useCallback5 } from "react";
3937
3937
  import { useEffect as useEffect2, useRef as useRef2, useState as useState5 } from "react";
3938
3938
  var useTimedToggle = (initialValue) => {
3939
3939
  const [value, setValue] = useState5(false);
3940
- const timeoutRef = useRef2();
3940
+ const timeoutRef = useRef2(void 0);
3941
3941
  const initialValueRef = useRef2(initialValue);
3942
3942
  const toggleValue = (timeout2) => {
3943
3943
  clearTimeout(timeoutRef.current);
@@ -4010,8 +4010,8 @@ var isEventTargetSupported = (eventTarget) => (
4010
4010
  Boolean(typeof eventTarget === "object" && eventTarget?.addEventListener)
4011
4011
  );
4012
4012
  var useEvent = (eventName, eventHandler, eventTarget = window, eventOptions = {}) => {
4013
- const savedEventHandler = useRef4();
4014
- const savedEventOptions = useRef4();
4013
+ const savedEventHandler = useRef4(void 0);
4014
+ const savedEventOptions = useRef4(void 0);
4015
4015
  useEffect3(() => {
4016
4016
  savedEventHandler.current = eventHandler;
4017
4017
  }, [eventHandler]);
@@ -4448,7 +4448,7 @@ var usePreventScroll = (locked) => {
4448
4448
  // src/hooks/usePreviousValue/usePreviousValue.ts
4449
4449
  import { useEffect as useEffect7, useRef as useRef7 } from "react";
4450
4450
  var usePreviousValue = (value) => {
4451
- const ref = useRef7();
4451
+ const ref = useRef7(void 0);
4452
4452
  useEffect7(() => {
4453
4453
  ref.current = value;
4454
4454
  });
@@ -4545,7 +4545,7 @@ var ModalBaseContent = ({
4545
4545
  const wasJustShown = usePreviousValue(isShown);
4546
4546
  const hide = () => setIsShownAttempted(false);
4547
4547
  const show = useCallback8(() => setIsShownAttempted(true), []);
4548
- const toggleButtonRef = useRef8();
4548
+ const toggleButtonRef = useRef8(void 0);
4549
4549
  const modalEl = document.createElement("div");
4550
4550
  modalEl.classList.add("Modal");
4551
4551
  if (isNotUndefined2(className)) {
@@ -4976,8 +4976,7 @@ import { isNotNil as isNotNil7 } from "@wistia/type-guards";
4976
4976
  import { jsx as jsx126 } from "react/jsx-runtime";
4977
4977
  var screenReaderOnlyStyle = css7`
4978
4978
  border: 0;
4979
- clip: rect(1px, 1px, 1px, 1px); /* deprecated but remains as fallback */
4980
- clip-path: inset(50%); /* modern but less support */
4979
+ clip-path: inset(50%);
4981
4980
  height: 1px;
4982
4981
  overflow: hidden;
4983
4982
  padding: 0;
@@ -6623,7 +6622,9 @@ var disabledStyle3 = css13`
6623
6622
  var errorHoverStyle = css13`
6624
6623
  border-color: transparent;
6625
6624
  `;
6626
- var errorFocusedStyle = css13``;
6625
+ var errorFocusedStyle = css13`
6626
+ outline: none;
6627
+ `;
6627
6628
  var errorStyle = css13`
6628
6629
  background-color: ${({ theme: theme2 }) => theme2.color.error100};
6629
6630
  border: 1px solid ${({ theme: theme2 }) => theme2.color.error500};
@@ -7555,7 +7556,7 @@ import { useEffect as useEffect13 } from "react";
7555
7556
  import { useCallback as useCallback10, useEffect as useEffect12, useRef as useRef10 } from "react";
7556
7557
  var useTimeoutFunc = (func, timeout2 = 0) => {
7557
7558
  const readyRef = useRef10(false);
7558
- const timeoutRef = useRef10();
7559
+ const timeoutRef = useRef10(void 0);
7559
7560
  const callbackRef = useRef10(func);
7560
7561
  const isReady = useCallback10(() => readyRef.current, []);
7561
7562
  const set = useCallback10(() => {
@@ -9232,7 +9233,7 @@ import { useSelected, useFocused } from "slate-react";
9232
9233
  import { styled as styled39, css as css21 } from "styled-components";
9233
9234
  import { jsx as jsx170, jsxs as jsxs28 } from "react/jsx-runtime";
9234
9235
  var Wrapper = styled39.span`
9235
- display: 'inline-block';
9236
+ display: inline-block;
9236
9237
  user-select: none;
9237
9238
  `;
9238
9239
  var Image = styled39.img`
@@ -11307,7 +11308,7 @@ var Menu2 = forwardRef16(
11307
11308
  onClose,
11308
11309
  ...otherProps
11309
11310
  }, ref) => {
11310
- const menuRef = useRef12();
11311
+ const menuRef = useRef12(void 0);
11311
11312
  const onClickOutsideFn = isNotNil32(onClickOutside) ? onClickOutside : () => {
11312
11313
  };
11313
11314
  useOnClickOutside(menuRef, onClickOutsideFn);
@@ -12633,7 +12634,7 @@ var setCursorPosition = (ref, start, end) => {
12633
12634
  var getSelectionFromMove = (selection, move, positions) => {
12634
12635
  const currentIndex = positions.findIndex((pos) => pos.start === selection[0]);
12635
12636
  let nextPosition = positions[currentIndex + move];
12636
- if (nextPosition && nextPosition.type === "skip") {
12637
+ if (nextPosition?.type === "skip") {
12637
12638
  nextPosition = positions[currentIndex + move * 2];
12638
12639
  }
12639
12640
  if (nextPosition) {
@@ -13728,7 +13729,7 @@ var ThumbnailCollageContainer = styled71.div`
13728
13729
  grid-template-columns: 3fr 2fr;
13729
13730
  grid-template-rows: 1fr 1fr;
13730
13731
  width: 100%;
13731
- grid-gap: ${({ theme: theme2 }) => theme2.spacing.space01};
13732
+ gap: ${({ theme: theme2 }) => theme2.spacing.space01};
13732
13733
  height: 100%;
13733
13734
  `;
13734
13735
  var CollageImage2 = styled71.div`