@wistia/vhs 4.0.0-beta.7034eb93.0e6bb17 → 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 +79 -49
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +21 -4
- package/dist/index.d.ts +21 -4
- package/dist/index.mjs +75 -46
- package/dist/index.mjs.map +1 -1
- package/package.json +19 -19
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 } 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';
|
|
@@ -1786,7 +1786,7 @@ type FormProps = {
|
|
|
1786
1786
|
/**
|
|
1787
1787
|
* Ref to access the form's state and API
|
|
1788
1788
|
*/
|
|
1789
|
-
innerRef?:
|
|
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?:
|
|
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
|
*/
|
|
@@ -3064,6 +3064,23 @@ declare const Slider: {
|
|
|
3064
3064
|
displayName: string;
|
|
3065
3065
|
};
|
|
3066
3066
|
|
|
3067
|
+
type StackProps<T extends ElementType> = ComponentPropsWithoutRef<T> & PropsWithChildren & {
|
|
3068
|
+
/**
|
|
3069
|
+
* The gap between each item in the stack. Should be one of the spacing values from the theme
|
|
3070
|
+
*/
|
|
3071
|
+
gap?: keyof DefaultTheme['spacing'];
|
|
3072
|
+
/**
|
|
3073
|
+
* Vertical is equivalent to `flex-direction: column;`, horizontal is equivalent to `flex-direction: row;`.
|
|
3074
|
+
* The default behavior is `vertical`.
|
|
3075
|
+
*/
|
|
3076
|
+
direction?: 'horizontal' | 'vertical';
|
|
3077
|
+
/**
|
|
3078
|
+
* The element (e.g. div, span, p) or component to render as the root element.
|
|
3079
|
+
*/
|
|
3080
|
+
renderAs?: T | 'div';
|
|
3081
|
+
};
|
|
3082
|
+
declare const Stack: react.ForwardRefExoticComponent<Omit<StackProps<ElementType>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
3083
|
+
|
|
3067
3084
|
type SwitchProps = Omit<ComponentPropsWithoutRef<'button'>, 'onChange'> & {
|
|
3068
3085
|
/**
|
|
3069
3086
|
* Allows user to override default "on" color
|
|
@@ -3465,4 +3482,4 @@ declare const WistiaLogo: {
|
|
|
3465
3482
|
displayName: string;
|
|
3466
3483
|
};
|
|
3467
3484
|
|
|
3468
|
-
export { ActionModal, type ActionModalProps, Avatar, type AvatarInstanceType, type AvatarProps, Backdrop, type BackdropProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeColorScheme, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Button, ButtonGroup, type ButtonGroupProps, ButtonLink, type ButtonLinkProps, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, CheckboxMenuItem, type CheckboxMenuItemProps, type CheckboxProps, ClickArea, type ClickAreaProps, CloseButton, type CloseButtonProps, CollapsibleGroup, type CollapsibleGroupProps, Divider, type DividerProps, Ellipsis, type EllipsisProps, FileSelect, type FileSelectProps, Form, FormButtons, type FormButtonsProps, FormField, FormFieldError, type FormFieldErrorProps, type FormFieldProps, FormGlobalError, type FormProps, type FormState, FullScreenModal, type FullScreenModalProps, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, LabelDescription, type LabelDescriptionProps, type LabelProps, Link, LinkButton, type LinkButtonProps, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Menu, MenuButton, type MenuButtonProps, MenuItem, type MenuItemProps, MenuLabel, type MenuProps, Modal, ModalBase, type ModalBaseContentProps, ModalBody, ModalCloseButton, type ModalCloseButtonProps, ModalFooter, ModalHeader, type ModalProps, type NodeElementObject, type OnBeforeHideInterface, type OptionsType, Paper, type PaperProps, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, RadioMenuItem, type RadioMenuItemProps, type RadioProps, RangeSelector, type RangeSelectorProps, RichTextEditor, type RichTextEditorProps, ScreenReaderOnly, type ScreenReaderOnlyProps, Select, type SelectProps, Slider, type SliderProps, SubMenu, Switch, type SwitchProps, Text, type TextProps, Thumbnail, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Toast, type ToastProps, ToastProvider, type ToastVariants, Tooltip, type TooltipProps, Truncate, type TruncateProps, VHSProvider, type VHSProviderProps, type VHSTheme, WistiaLogo, type WistiaLogoProps, type WrapperProviderLinkType, copyToClipboard, datetimeHelpers, ellipsisFlexParentStyle, ellipsisStyle, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, mq, objectHelpers, rteDeserializeHTML, rteFormatTypes, rteSerializeToHTML, screenReaderOnlyStyle, stringHelpers, useBoolean, useClipboard, useElementObserver, useEvent, useFocusTrap, useForceUpdate, useIsHovered, useKey, useKeyPress, useKeyPressOnce, useLocalStorage, useMergedRefs, useMq, useOnClickOutside, usePreventScroll, usePreviousValue, useTheme, useThemeColor, useToast, useWindowSize };
|
|
3485
|
+
export { ActionModal, type ActionModalProps, Avatar, type AvatarInstanceType, type AvatarProps, Backdrop, type BackdropProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeColorScheme, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Button, ButtonGroup, type ButtonGroupProps, ButtonLink, type ButtonLinkProps, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, CheckboxMenuItem, type CheckboxMenuItemProps, type CheckboxProps, ClickArea, type ClickAreaProps, CloseButton, type CloseButtonProps, CollapsibleGroup, type CollapsibleGroupProps, Divider, type DividerProps, Ellipsis, type EllipsisProps, FileSelect, type FileSelectProps, Form, FormButtons, type FormButtonsProps, FormField, FormFieldError, type FormFieldErrorProps, type FormFieldProps, FormGlobalError, type FormProps, type FormState, FullScreenModal, type FullScreenModalProps, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, LabelDescription, type LabelDescriptionProps, type LabelProps, Link, LinkButton, type LinkButtonProps, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Menu, MenuButton, type MenuButtonProps, MenuItem, type MenuItemProps, MenuLabel, type MenuProps, Modal, ModalBase, type ModalBaseContentProps, ModalBody, ModalCloseButton, type ModalCloseButtonProps, ModalFooter, ModalHeader, type ModalProps, type NodeElementObject, type OnBeforeHideInterface, type OptionsType, Paper, type PaperProps, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, RadioMenuItem, type RadioMenuItemProps, type RadioProps, RangeSelector, type RangeSelectorProps, RichTextEditor, type RichTextEditorProps, ScreenReaderOnly, type ScreenReaderOnlyProps, Select, type SelectProps, Slider, type SliderProps, Stack, type StackProps, SubMenu, Switch, type SwitchProps, Text, type TextProps, Thumbnail, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Toast, type ToastProps, ToastProvider, type ToastVariants, Tooltip, type TooltipProps, Truncate, type TruncateProps, VHSProvider, type VHSProviderProps, type VHSTheme, WistiaLogo, type WistiaLogoProps, type WrapperProviderLinkType, copyToClipboard, datetimeHelpers, ellipsisFlexParentStyle, ellipsisStyle, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, mq, objectHelpers, rteDeserializeHTML, rteFormatTypes, rteSerializeToHTML, screenReaderOnlyStyle, stringHelpers, useBoolean, useClipboard, useElementObserver, useEvent, useFocusTrap, useForceUpdate, useIsHovered, useKey, useKeyPress, useKeyPressOnce, useLocalStorage, useMergedRefs, useMq, useOnClickOutside, usePreventScroll, usePreviousValue, useTheme, useThemeColor, useToast, useWindowSize };
|
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 } 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';
|
|
@@ -1786,7 +1786,7 @@ type FormProps = {
|
|
|
1786
1786
|
/**
|
|
1787
1787
|
* Ref to access the form's state and API
|
|
1788
1788
|
*/
|
|
1789
|
-
innerRef?:
|
|
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?:
|
|
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
|
*/
|
|
@@ -3064,6 +3064,23 @@ declare const Slider: {
|
|
|
3064
3064
|
displayName: string;
|
|
3065
3065
|
};
|
|
3066
3066
|
|
|
3067
|
+
type StackProps<T extends ElementType> = ComponentPropsWithoutRef<T> & PropsWithChildren & {
|
|
3068
|
+
/**
|
|
3069
|
+
* The gap between each item in the stack. Should be one of the spacing values from the theme
|
|
3070
|
+
*/
|
|
3071
|
+
gap?: keyof DefaultTheme['spacing'];
|
|
3072
|
+
/**
|
|
3073
|
+
* Vertical is equivalent to `flex-direction: column;`, horizontal is equivalent to `flex-direction: row;`.
|
|
3074
|
+
* The default behavior is `vertical`.
|
|
3075
|
+
*/
|
|
3076
|
+
direction?: 'horizontal' | 'vertical';
|
|
3077
|
+
/**
|
|
3078
|
+
* The element (e.g. div, span, p) or component to render as the root element.
|
|
3079
|
+
*/
|
|
3080
|
+
renderAs?: T | 'div';
|
|
3081
|
+
};
|
|
3082
|
+
declare const Stack: react.ForwardRefExoticComponent<Omit<StackProps<ElementType>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
3083
|
+
|
|
3067
3084
|
type SwitchProps = Omit<ComponentPropsWithoutRef<'button'>, 'onChange'> & {
|
|
3068
3085
|
/**
|
|
3069
3086
|
* Allows user to override default "on" color
|
|
@@ -3465,4 +3482,4 @@ declare const WistiaLogo: {
|
|
|
3465
3482
|
displayName: string;
|
|
3466
3483
|
};
|
|
3467
3484
|
|
|
3468
|
-
export { ActionModal, type ActionModalProps, Avatar, type AvatarInstanceType, type AvatarProps, Backdrop, type BackdropProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeColorScheme, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Button, ButtonGroup, type ButtonGroupProps, ButtonLink, type ButtonLinkProps, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, CheckboxMenuItem, type CheckboxMenuItemProps, type CheckboxProps, ClickArea, type ClickAreaProps, CloseButton, type CloseButtonProps, CollapsibleGroup, type CollapsibleGroupProps, Divider, type DividerProps, Ellipsis, type EllipsisProps, FileSelect, type FileSelectProps, Form, FormButtons, type FormButtonsProps, FormField, FormFieldError, type FormFieldErrorProps, type FormFieldProps, FormGlobalError, type FormProps, type FormState, FullScreenModal, type FullScreenModalProps, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, LabelDescription, type LabelDescriptionProps, type LabelProps, Link, LinkButton, type LinkButtonProps, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Menu, MenuButton, type MenuButtonProps, MenuItem, type MenuItemProps, MenuLabel, type MenuProps, Modal, ModalBase, type ModalBaseContentProps, ModalBody, ModalCloseButton, type ModalCloseButtonProps, ModalFooter, ModalHeader, type ModalProps, type NodeElementObject, type OnBeforeHideInterface, type OptionsType, Paper, type PaperProps, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, RadioMenuItem, type RadioMenuItemProps, type RadioProps, RangeSelector, type RangeSelectorProps, RichTextEditor, type RichTextEditorProps, ScreenReaderOnly, type ScreenReaderOnlyProps, Select, type SelectProps, Slider, type SliderProps, SubMenu, Switch, type SwitchProps, Text, type TextProps, Thumbnail, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Toast, type ToastProps, ToastProvider, type ToastVariants, Tooltip, type TooltipProps, Truncate, type TruncateProps, VHSProvider, type VHSProviderProps, type VHSTheme, WistiaLogo, type WistiaLogoProps, type WrapperProviderLinkType, copyToClipboard, datetimeHelpers, ellipsisFlexParentStyle, ellipsisStyle, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, mq, objectHelpers, rteDeserializeHTML, rteFormatTypes, rteSerializeToHTML, screenReaderOnlyStyle, stringHelpers, useBoolean, useClipboard, useElementObserver, useEvent, useFocusTrap, useForceUpdate, useIsHovered, useKey, useKeyPress, useKeyPressOnce, useLocalStorage, useMergedRefs, useMq, useOnClickOutside, usePreventScroll, usePreviousValue, useTheme, useThemeColor, useToast, useWindowSize };
|
|
3485
|
+
export { ActionModal, type ActionModalProps, Avatar, type AvatarInstanceType, type AvatarProps, Backdrop, type BackdropProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeColorScheme, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Button, ButtonGroup, type ButtonGroupProps, ButtonLink, type ButtonLinkProps, type ButtonProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, CheckboxMenuItem, type CheckboxMenuItemProps, type CheckboxProps, ClickArea, type ClickAreaProps, CloseButton, type CloseButtonProps, CollapsibleGroup, type CollapsibleGroupProps, Divider, type DividerProps, Ellipsis, type EllipsisProps, FileSelect, type FileSelectProps, Form, FormButtons, type FormButtonsProps, FormField, FormFieldError, type FormFieldErrorProps, type FormFieldProps, FormGlobalError, type FormProps, type FormState, FullScreenModal, type FullScreenModalProps, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, LabelDescription, type LabelDescriptionProps, type LabelProps, Link, LinkButton, type LinkButtonProps, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Menu, MenuButton, type MenuButtonProps, MenuItem, type MenuItemProps, MenuLabel, type MenuProps, Modal, ModalBase, type ModalBaseContentProps, ModalBody, ModalCloseButton, type ModalCloseButtonProps, ModalFooter, ModalHeader, type ModalProps, type NodeElementObject, type OnBeforeHideInterface, type OptionsType, Paper, type PaperProps, ProgressBar, type ProgressBarProps, Radio, RadioGroup, type RadioGroupProps, RadioMenuItem, type RadioMenuItemProps, type RadioProps, RangeSelector, type RangeSelectorProps, RichTextEditor, type RichTextEditorProps, ScreenReaderOnly, type ScreenReaderOnlyProps, Select, type SelectProps, Slider, type SliderProps, Stack, type StackProps, SubMenu, Switch, type SwitchProps, Text, type TextProps, Thumbnail, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Toast, type ToastProps, ToastProvider, type ToastVariants, Tooltip, type TooltipProps, Truncate, type TruncateProps, VHSProvider, type VHSProviderProps, type VHSTheme, WistiaLogo, type WistiaLogoProps, type WrapperProviderLinkType, copyToClipboard, datetimeHelpers, ellipsisFlexParentStyle, ellipsisStyle, getBackgroundGradient, getSemiRandomBackgroundGradient, iconSizeMap, mq, objectHelpers, rteDeserializeHTML, rteFormatTypes, rteSerializeToHTML, screenReaderOnlyStyle, stringHelpers, useBoolean, useClipboard, useElementObserver, useEvent, useFocusTrap, useForceUpdate, useIsHovered, useKey, useKeyPress, useKeyPressOnce, useLocalStorage, useMergedRefs, useMq, useOnClickOutside, usePreventScroll, usePreviousValue, useTheme, useThemeColor, useToast, useWindowSize };
|
package/dist/index.mjs
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.71b676f3.95c7760
|
|
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:
|
|
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:
|
|
3820
|
+
appearance: auto; /* 1 */
|
|
3821
3821
|
font: inherit; /* 2 */
|
|
3822
3822
|
}
|
|
3823
3823
|
|
|
@@ -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:
|
|
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;
|
|
@@ -9232,7 +9231,7 @@ import { useSelected, useFocused } from "slate-react";
|
|
|
9232
9231
|
import { styled as styled39, css as css21 } from "styled-components";
|
|
9233
9232
|
import { jsx as jsx170, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
9234
9233
|
var Wrapper = styled39.span`
|
|
9235
|
-
display:
|
|
9234
|
+
display: inline-block;
|
|
9236
9235
|
user-select: none;
|
|
9237
9236
|
`;
|
|
9238
9237
|
var Image = styled39.img`
|
|
@@ -12633,7 +12632,7 @@ var setCursorPosition = (ref, start, end) => {
|
|
|
12633
12632
|
var getSelectionFromMove = (selection, move, positions) => {
|
|
12634
12633
|
const currentIndex = positions.findIndex((pos) => pos.start === selection[0]);
|
|
12635
12634
|
let nextPosition = positions[currentIndex + move];
|
|
12636
|
-
if (nextPosition
|
|
12635
|
+
if (nextPosition?.type === "skip") {
|
|
12637
12636
|
nextPosition = positions[currentIndex + move * 2];
|
|
12638
12637
|
}
|
|
12639
12638
|
if (nextPosition) {
|
|
@@ -13413,10 +13412,39 @@ var Slider = ({
|
|
|
13413
13412
|
};
|
|
13414
13413
|
Slider.displayName = "Slider_VHS";
|
|
13415
13414
|
|
|
13416
|
-
// src/components/
|
|
13417
|
-
import {
|
|
13415
|
+
// src/components/Stack/Stack.tsx
|
|
13416
|
+
import { forwardRef as forwardRef18 } from "react";
|
|
13417
|
+
import { styled as styled68 } from "styled-components";
|
|
13418
13418
|
import { jsx as jsx210 } from "react/jsx-runtime";
|
|
13419
|
-
var
|
|
13419
|
+
var StyledStack = styled68.div`
|
|
13420
|
+
display: flex;
|
|
13421
|
+
flex-direction: ${({ $direction }) => $direction === "horizontal" ? "row" : "column"};
|
|
13422
|
+
gap: ${({ $gap, theme: theme2 }) => theme2.spacing[$gap]};
|
|
13423
|
+
|
|
13424
|
+
> * {
|
|
13425
|
+
flex: 1;
|
|
13426
|
+
}
|
|
13427
|
+
`;
|
|
13428
|
+
var Stack = forwardRef18(
|
|
13429
|
+
({ renderAs = "div", direction = "vertical", gap = "space02", ...props }, ref) => {
|
|
13430
|
+
return /* @__PURE__ */ jsx210(
|
|
13431
|
+
StyledStack,
|
|
13432
|
+
{
|
|
13433
|
+
...props,
|
|
13434
|
+
ref,
|
|
13435
|
+
$direction: direction,
|
|
13436
|
+
$gap: gap,
|
|
13437
|
+
as: renderAs
|
|
13438
|
+
}
|
|
13439
|
+
);
|
|
13440
|
+
}
|
|
13441
|
+
);
|
|
13442
|
+
Stack.displayName = "Stack_VHS";
|
|
13443
|
+
|
|
13444
|
+
// src/components/Switch/Switch.tsx
|
|
13445
|
+
import { styled as styled69, css as css29 } from "styled-components";
|
|
13446
|
+
import { jsx as jsx211 } from "react/jsx-runtime";
|
|
13447
|
+
var SwitchComponent = styled69.button`
|
|
13420
13448
|
background-color: white;
|
|
13421
13449
|
border-color: ${({ theme: theme2 }) => theme2.color.grey700};
|
|
13422
13450
|
border-radius: 20px;
|
|
@@ -13481,7 +13509,7 @@ var ShowTextStyles = css29`
|
|
|
13481
13509
|
}
|
|
13482
13510
|
}
|
|
13483
13511
|
`;
|
|
13484
|
-
var SwitchKnob =
|
|
13512
|
+
var SwitchKnob = styled69.div`
|
|
13485
13513
|
background-color: ${({ theme: theme2 }) => theme2.color.grey700};
|
|
13486
13514
|
border-radius: 50%;
|
|
13487
13515
|
height: 12px;
|
|
@@ -13516,7 +13544,7 @@ var Switch = ({
|
|
|
13516
13544
|
onChange(!isChecked);
|
|
13517
13545
|
}
|
|
13518
13546
|
};
|
|
13519
|
-
return /* @__PURE__ */
|
|
13547
|
+
return /* @__PURE__ */ jsx211(
|
|
13520
13548
|
SwitchComponent,
|
|
13521
13549
|
{
|
|
13522
13550
|
$colorOverride: colorOverride,
|
|
@@ -13528,17 +13556,17 @@ var Switch = ({
|
|
|
13528
13556
|
role: "switch",
|
|
13529
13557
|
type: "button",
|
|
13530
13558
|
...otherProps,
|
|
13531
|
-
children: /* @__PURE__ */
|
|
13559
|
+
children: /* @__PURE__ */ jsx211(SwitchKnob, { $hideText: hideText })
|
|
13532
13560
|
}
|
|
13533
13561
|
);
|
|
13534
13562
|
};
|
|
13535
13563
|
Switch.displayName = "Switch_VHS";
|
|
13536
13564
|
|
|
13537
13565
|
// src/components/Thumbnail/Thumbnail.tsx
|
|
13538
|
-
import { styled as
|
|
13566
|
+
import { styled as styled70 } from "styled-components";
|
|
13539
13567
|
import { isNotNil as isNotNil43 } from "@wistia/type-guards";
|
|
13540
|
-
import { jsx as
|
|
13541
|
-
var ThumbnailComponent =
|
|
13568
|
+
import { jsx as jsx212, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
13569
|
+
var ThumbnailComponent = styled70.div`
|
|
13542
13570
|
${({ $gradientBackground }) => getBackgroundGradient($gradientBackground)};
|
|
13543
13571
|
aspect-ratio: 16 / 9;
|
|
13544
13572
|
background-image: ${({ $backgroundUrl }) => $backgroundUrl};
|
|
@@ -13550,17 +13578,17 @@ var ThumbnailComponent = styled69.div`
|
|
|
13550
13578
|
position: relative;
|
|
13551
13579
|
width: ${({ $width }) => $width};
|
|
13552
13580
|
`;
|
|
13553
|
-
var WideThumbnailImage =
|
|
13581
|
+
var WideThumbnailImage = styled70.img`
|
|
13554
13582
|
height: 100%;
|
|
13555
13583
|
object-fit: cover;
|
|
13556
13584
|
width: 100%;
|
|
13557
13585
|
`;
|
|
13558
|
-
var SquareThumbnailImage =
|
|
13586
|
+
var SquareThumbnailImage = styled70.img`
|
|
13559
13587
|
backdrop-filter: blur(8px);
|
|
13560
13588
|
object-fit: contain;
|
|
13561
13589
|
width: 100%;
|
|
13562
13590
|
`;
|
|
13563
|
-
var BottomRightText =
|
|
13591
|
+
var BottomRightText = styled70.div`
|
|
13564
13592
|
align-items: center;
|
|
13565
13593
|
background-color: rgb(0 0 0 / 50%);
|
|
13566
13594
|
border-radius: 2px;
|
|
@@ -13577,7 +13605,7 @@ var BottomRightText = styled69.div`
|
|
|
13577
13605
|
right: 0;
|
|
13578
13606
|
z-index: 1;
|
|
13579
13607
|
`;
|
|
13580
|
-
var IconContainer3 =
|
|
13608
|
+
var IconContainer3 = styled70.div`
|
|
13581
13609
|
align-self: center;
|
|
13582
13610
|
aspect-ratio: 1;
|
|
13583
13611
|
margin: 30%;
|
|
@@ -13590,7 +13618,7 @@ var IconContainer3 = styled69.div`
|
|
|
13590
13618
|
`;
|
|
13591
13619
|
var ThumbnailImage = ({ $thumbnailImageType, $thumbnailUrl }) => {
|
|
13592
13620
|
if ($thumbnailImageType === "wide") {
|
|
13593
|
-
return /* @__PURE__ */
|
|
13621
|
+
return /* @__PURE__ */ jsx212(
|
|
13594
13622
|
WideThumbnailImage,
|
|
13595
13623
|
{
|
|
13596
13624
|
alt: "",
|
|
@@ -13599,7 +13627,7 @@ var ThumbnailImage = ({ $thumbnailImageType, $thumbnailUrl }) => {
|
|
|
13599
13627
|
);
|
|
13600
13628
|
}
|
|
13601
13629
|
if ($thumbnailImageType === "square") {
|
|
13602
|
-
return /* @__PURE__ */
|
|
13630
|
+
return /* @__PURE__ */ jsx212(
|
|
13603
13631
|
SquareThumbnailImage,
|
|
13604
13632
|
{
|
|
13605
13633
|
alt: "",
|
|
@@ -13609,13 +13637,13 @@ var ThumbnailImage = ({ $thumbnailImageType, $thumbnailUrl }) => {
|
|
|
13609
13637
|
}
|
|
13610
13638
|
return null;
|
|
13611
13639
|
};
|
|
13612
|
-
var Collage =
|
|
13640
|
+
var Collage = styled70.div`
|
|
13613
13641
|
display: grid;
|
|
13614
13642
|
grid-template-columns: auto auto;
|
|
13615
13643
|
grid-template-rows: 50% 50%;
|
|
13616
13644
|
width: 100%;
|
|
13617
13645
|
`;
|
|
13618
|
-
var CollageImage =
|
|
13646
|
+
var CollageImage = styled70.div`
|
|
13619
13647
|
background-image: ${({ $thumbnailUrl }) => `url(${$thumbnailUrl})`};
|
|
13620
13648
|
background-position: center;
|
|
13621
13649
|
background-size: cover;
|
|
@@ -13652,30 +13680,30 @@ var Thumbnail = ({
|
|
|
13652
13680
|
...otherProps,
|
|
13653
13681
|
children: [
|
|
13654
13682
|
isNotNil43(bottomRightText) ? /* @__PURE__ */ jsxs44(BottomRightText, { children: [
|
|
13655
|
-
bottomRightIcon ? /* @__PURE__ */
|
|
13683
|
+
bottomRightIcon ? /* @__PURE__ */ jsx212(
|
|
13656
13684
|
Icon,
|
|
13657
13685
|
{
|
|
13658
13686
|
size: "sm",
|
|
13659
13687
|
type: bottomRightIcon
|
|
13660
13688
|
}
|
|
13661
13689
|
) : null,
|
|
13662
|
-
/* @__PURE__ */
|
|
13690
|
+
/* @__PURE__ */ jsx212("span", { children: bottomRightText })
|
|
13663
13691
|
] }) : null,
|
|
13664
|
-
isNotNil43(icon) && /* @__PURE__ */
|
|
13692
|
+
isNotNil43(icon) && /* @__PURE__ */ jsx212(IconContainer3, { children: /* @__PURE__ */ jsx212(
|
|
13665
13693
|
Icon,
|
|
13666
13694
|
{
|
|
13667
13695
|
color: iconColor,
|
|
13668
13696
|
type: icon
|
|
13669
13697
|
}
|
|
13670
13698
|
) }),
|
|
13671
|
-
!Array.isArray(thumbnailUrl) && isNotNil43(thumbnailImageType) && isNotNil43(thumbnailUrl) && /* @__PURE__ */
|
|
13699
|
+
!Array.isArray(thumbnailUrl) && isNotNil43(thumbnailImageType) && isNotNil43(thumbnailUrl) && /* @__PURE__ */ jsx212(
|
|
13672
13700
|
ThumbnailImage,
|
|
13673
13701
|
{
|
|
13674
13702
|
$thumbnailImageType: thumbnailImageType,
|
|
13675
13703
|
$thumbnailUrl: thumbnailUrl
|
|
13676
13704
|
}
|
|
13677
13705
|
),
|
|
13678
|
-
Array.isArray(thumbnailUrl) && isNotNil43(thumbnailImageType) && isNotNil43(thumbnailUrl) && /* @__PURE__ */
|
|
13706
|
+
Array.isArray(thumbnailUrl) && isNotNil43(thumbnailImageType) && isNotNil43(thumbnailUrl) && /* @__PURE__ */ jsx212(Collage, { "data-testid": "thumbnail-collage", children: thumbnailUrl.map((url, index) => /* @__PURE__ */ jsx212(
|
|
13679
13707
|
CollageImage,
|
|
13680
13708
|
{
|
|
13681
13709
|
$thumbnailUrl: url,
|
|
@@ -13691,18 +13719,18 @@ var Thumbnail = ({
|
|
|
13691
13719
|
Thumbnail.displayName = "Thumbnail_VHS";
|
|
13692
13720
|
|
|
13693
13721
|
// src/components/ThumbnailCollage/ThumbnailCollage.tsx
|
|
13694
|
-
import { styled as
|
|
13722
|
+
import { styled as styled71 } from "styled-components";
|
|
13695
13723
|
import { isNotNil as isNotNil44 } from "@wistia/type-guards";
|
|
13696
|
-
import { jsx as
|
|
13697
|
-
var ThumbnailCollageContainer =
|
|
13724
|
+
import { jsx as jsx213 } from "react/jsx-runtime";
|
|
13725
|
+
var ThumbnailCollageContainer = styled71.div`
|
|
13698
13726
|
display: grid;
|
|
13699
13727
|
grid-template-columns: 3fr 2fr;
|
|
13700
13728
|
grid-template-rows: 1fr 1fr;
|
|
13701
13729
|
width: 100%;
|
|
13702
|
-
|
|
13730
|
+
gap: ${({ theme: theme2 }) => theme2.spacing.space01};
|
|
13703
13731
|
height: 100%;
|
|
13704
13732
|
`;
|
|
13705
|
-
var CollageImage2 =
|
|
13733
|
+
var CollageImage2 = styled71.div`
|
|
13706
13734
|
${({ $thumbnailUrl }) => isNotNil44($thumbnailUrl) && `background-image: url(${$thumbnailUrl})`};
|
|
13707
13735
|
${({ $backgroundGradient }) => $backgroundGradient && getBackgroundGradient($backgroundGradient)};
|
|
13708
13736
|
background-position: center;
|
|
@@ -13732,37 +13760,37 @@ var ThumbnailCollage = ({
|
|
|
13732
13760
|
gradientBackground = "defaultMidOne",
|
|
13733
13761
|
...props
|
|
13734
13762
|
}) => {
|
|
13735
|
-
return /* @__PURE__ */
|
|
13763
|
+
return /* @__PURE__ */ jsx213(
|
|
13736
13764
|
ThumbnailCollageContainer,
|
|
13737
13765
|
{
|
|
13738
13766
|
role: "presentation",
|
|
13739
13767
|
...props,
|
|
13740
|
-
children: thumbnailUrls.length ? thumbnailUrls.map((thumbnailUrl) => /* @__PURE__ */
|
|
13768
|
+
children: thumbnailUrls.length ? thumbnailUrls.map((thumbnailUrl) => /* @__PURE__ */ jsx213(
|
|
13741
13769
|
CollageImage2,
|
|
13742
13770
|
{
|
|
13743
13771
|
$thumbnailUrl: thumbnailUrl
|
|
13744
13772
|
},
|
|
13745
13773
|
thumbnailUrl
|
|
13746
|
-
)) : /* @__PURE__ */
|
|
13774
|
+
)) : /* @__PURE__ */ jsx213(CollageImage2, { $backgroundGradient: gradientBackground })
|
|
13747
13775
|
}
|
|
13748
13776
|
);
|
|
13749
13777
|
};
|
|
13750
13778
|
|
|
13751
13779
|
// src/components/WistiaLogo/WistiaLogo.tsx
|
|
13752
|
-
import { styled as
|
|
13780
|
+
import { styled as styled72 } from "styled-components";
|
|
13753
13781
|
import { isNotNil as isNotNil45 } from "@wistia/type-guards";
|
|
13754
|
-
import { jsx as
|
|
13782
|
+
import { jsx as jsx214, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
13755
13783
|
var renderBrandmark = (brandmarkColor, iconOnly) => {
|
|
13756
13784
|
if (iconOnly) {
|
|
13757
|
-
return /* @__PURE__ */
|
|
13785
|
+
return /* @__PURE__ */ jsx214("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx214("path", { d: "M16.09 17.1h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 26.53c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87ZM32.14 0c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" }) });
|
|
13758
13786
|
}
|
|
13759
|
-
return /* @__PURE__ */
|
|
13787
|
+
return /* @__PURE__ */ jsx214("g", { fill: brandmarkColor, children: /* @__PURE__ */ jsx214("path", { d: "M16.09 21.37h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 30.8c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87Zm16.05-17.1c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" }) });
|
|
13760
13788
|
};
|
|
13761
13789
|
var renderLogotype = (logotypeColor, iconOnly) => {
|
|
13762
13790
|
if (iconOnly) {
|
|
13763
13791
|
return null;
|
|
13764
13792
|
}
|
|
13765
|
-
return /* @__PURE__ */
|
|
13793
|
+
return /* @__PURE__ */ jsx214("g", { fill: logotypeColor, children: /* @__PURE__ */ jsx214("path", { d: "M70.16 8.66v15.18c0 1.68-.35 3.09-1.05 4.23a6.612 6.612 0 0 1-2.85 2.54c-1.19.55-2.52.82-4.01.82s-2.8-.28-4.01-.85a6.655 6.655 0 0 1-3.11-2.96c-.08.15-.16.29-.24.42a6.552 6.552 0 0 1-2.87 2.54c-1.2.56-2.54.85-4.01.85s-2.8-.27-3.94-.82a6.214 6.214 0 0 1-2.71-2.52c-.67-1.14-1.01-2.56-1.02-4.25l-.22-15.18h7.34V22.3c0 .82.19 1.37.56 1.67.39.28.85.42 1.38.42s1.02-.15 1.45-.45c.43-.3.65-.85.65-1.65V8.65h7.3v13.64c0 .8.22 1.35.65 1.65.43.3.91.45 1.45.45s.99-.14 1.36-.42c.39-.3.58-.85.58-1.67V8.66h7.34Zm2.45 0v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89A3.43 3.43 0 0 0 78.28.44c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.13 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm8.86 1.96c-1.42.4-2.6 1.11-3.54 2.14-.93 1.02-1.4 2.4-1.4 4.12 0 1.11.17 2.09.51 2.94.36.85.82 1.62 1.38 2.34.22.28.55.65.98 1.11.37.4.64.72.8.96.18.24.27.47.27.69 0 .5-.4.87-1.2 1.09-.8.21-1.62.31-2.47.31-.1-.01-.22-.02-.33-.02l1.02 6.94c.42.07.92.11 1.51.11 1.9 0 3.6-.28 5.1-.85 1.5-.56 2.68-1.42 3.54-2.56.88-1.14 1.31-2.55 1.31-4.23 0-.68-.07-1.31-.22-1.87-.13-.58-.32-1.09-.56-1.54a6.64 6.64 0 0 0-.8-1.27c-.3-.37-.74-.82-1.34-1.36-.39-.33-.67-.59-.85-.8-.18-.22-.27-.45-.27-.67 0-.46.26-.79.78-.98.53-.19 1.17-.29 1.91-.29.25 0 .51.01.78.04l-.71-6.88a10.4 10.4 0 0 0-1.56-.11c-1.66 0-3.21.21-4.65.62Zm19.54 15.71c-.99 0-1.71-.23-2.14-.69-.42-.47-.62-1.18-.62-2.11v-6.57h4.21V8.66h-4.21V3.38l-7.34 1.85V24.1c0 2.45.47 4.29 1.4 5.52.95 1.22 2.45 1.83 4.49 1.83.95 0 1.86-.07 2.74-.22.88-.13 1.62-.34 2.25-.62l1.38-6.3c-.55.1-1.27.16-2.16.16Zm4.13-15.8v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89a3.43 3.43 0 0 0-1.42-1.27c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.14 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm27.51 1.87v22.26h-7.34v-2.28c-.41.43-.85.83-1.34 1.19-1.44 1.07-3.12 1.6-5.05 1.6s-3.61-.52-5.1-1.56c-1.48-1.05-2.63-2.47-3.45-4.25-.82-1.78-1.22-3.73-1.22-5.85s.41-4.07 1.22-5.83c.82-1.78 1.97-3.19 3.45-4.23 1.48-1.05 3.18-1.58 5.1-1.58s3.61.53 5.05 1.6c.48.36.93.75 1.34 1.19V8.66h7.34Zm-7.1 11.11c0-.8-.19-1.53-.56-2.18-.37-.67-.88-1.19-1.54-1.58-.64-.39-1.34-.58-2.09-.58s-1.45.19-2.09.58c-.64.39-1.15.91-1.54 1.58-.37.67-.56 1.39-.56 2.18s.19 1.51.56 2.18c.39.67.9 1.19 1.54 1.58.64.39 1.34.58 2.09.58s1.45-.19 2.09-.58c.65-.39 1.16-.91 1.54-1.56.37-.67.56-1.4.56-2.2Z" }) });
|
|
13766
13794
|
};
|
|
13767
13795
|
var computedViewBox = (iconOnly) => {
|
|
13768
13796
|
if (iconOnly) {
|
|
@@ -13770,7 +13798,7 @@ var computedViewBox = (iconOnly) => {
|
|
|
13770
13798
|
}
|
|
13771
13799
|
return "0 0 144 31.47";
|
|
13772
13800
|
};
|
|
13773
|
-
var WistiaLogoComponent =
|
|
13801
|
+
var WistiaLogoComponent = styled72.svg`
|
|
13774
13802
|
height: ${({ height }) => `${height}px`};
|
|
13775
13803
|
|
|
13776
13804
|
/* ensure it will always fit on mobile */
|
|
@@ -13822,14 +13850,14 @@ var WistiaLogo = ({
|
|
|
13822
13850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13823
13851
|
...otherProps,
|
|
13824
13852
|
children: [
|
|
13825
|
-
/* @__PURE__ */
|
|
13826
|
-
isNotNil45(description) ? /* @__PURE__ */
|
|
13853
|
+
/* @__PURE__ */ jsx214("title", { children: title }),
|
|
13854
|
+
isNotNil45(description) ? /* @__PURE__ */ jsx214("desc", { children: description }) : null,
|
|
13827
13855
|
renderBrandmark(brandmarkColor, iconOnly),
|
|
13828
13856
|
renderLogotype(logotypeColor, iconOnly)
|
|
13829
13857
|
]
|
|
13830
13858
|
}
|
|
13831
13859
|
);
|
|
13832
|
-
return href !== void 0 ? /* @__PURE__ */
|
|
13860
|
+
return href !== void 0 ? /* @__PURE__ */ jsx214("a", { href, children: Logo }) : Logo;
|
|
13833
13861
|
};
|
|
13834
13862
|
WistiaLogo.displayName = "WistiaLogo_VHS";
|
|
13835
13863
|
export {
|
|
@@ -13890,6 +13918,7 @@ export {
|
|
|
13890
13918
|
ScreenReaderOnly,
|
|
13891
13919
|
Select,
|
|
13892
13920
|
Slider,
|
|
13921
|
+
Stack,
|
|
13893
13922
|
SubMenu,
|
|
13894
13923
|
Switch,
|
|
13895
13924
|
Text,
|