@wistia/ui 0.15.13 → 0.15.14-beta.14d0d6d5.66508ab
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 +23 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +27 -3
- package/dist/index.d.ts +27 -3
- package/dist/index.mjs +23 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -18
package/dist/index.d.mts
CHANGED
|
@@ -664,6 +664,22 @@ declare const Banner: {
|
|
|
664
664
|
displayName: string;
|
|
665
665
|
};
|
|
666
666
|
|
|
667
|
+
type BannerImageProps = ComponentPropsWithoutRef<'div'> & {
|
|
668
|
+
/**
|
|
669
|
+
* The URL of the image to display in the banner
|
|
670
|
+
*/
|
|
671
|
+
src: string;
|
|
672
|
+
/**
|
|
673
|
+
* Alternative text description of the image for accessibility
|
|
674
|
+
*/
|
|
675
|
+
alt?: string;
|
|
676
|
+
/**
|
|
677
|
+
* Position of the image within the banner layout. Only applies in horizontal orientation.
|
|
678
|
+
*/
|
|
679
|
+
alignment?: 'left' | 'right';
|
|
680
|
+
};
|
|
681
|
+
declare const BannerImage: ({ alignment, alt, src, ...props }: BannerImageProps) => react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
667
683
|
type UnknownRecord = Record<string, unknown>;
|
|
668
684
|
type PropsOf<Component extends ElementType> = ComponentPropsWithoutRef<Component>;
|
|
669
685
|
type ExtendedProps<Props = UnknownRecord, OverrideProps = UnknownRecord> = Omit<Props, keyof OverrideProps> & OverrideProps;
|
|
@@ -1634,6 +1650,10 @@ declare const Combobox: ({ placeholder, value, onChange, searchValue, onSearchVa
|
|
|
1634
1650
|
type ContextMenuProps = {
|
|
1635
1651
|
children: ReactNode;
|
|
1636
1652
|
onRequestClose?: () => void;
|
|
1653
|
+
/**
|
|
1654
|
+
* If the menu is compact
|
|
1655
|
+
*/
|
|
1656
|
+
compact?: boolean;
|
|
1637
1657
|
} & ({
|
|
1638
1658
|
position: {
|
|
1639
1659
|
x: number;
|
|
@@ -1652,7 +1672,7 @@ type ContextMenuProps = {
|
|
|
1652
1672
|
* 1. By providing a `triggerRef`, which will render the menu when the referenced element is right-clicked.
|
|
1653
1673
|
* 2. By providing a `position` prop, which will render the menu at the specified coordinates.
|
|
1654
1674
|
*/
|
|
1655
|
-
declare const ContextMenu: ({ position, triggerRef, children, side, onRequestClose, }: ContextMenuProps) => react_jsx_runtime.JSX.Element | null;
|
|
1675
|
+
declare const ContextMenu: ({ position, triggerRef, children, side, onRequestClose, compact, }: ContextMenuProps) => react_jsx_runtime.JSX.Element | null;
|
|
1656
1676
|
|
|
1657
1677
|
type DataCardProps = ComponentPropsWithoutRef<'div'> & Partial<Pick<ButtonAsLinkProps, 'beforeAction' | 'disabled' | 'href' | 'onClick' | 'type'>> & {
|
|
1658
1678
|
/**
|
|
@@ -2369,6 +2389,10 @@ type FormFieldProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2369
2389
|
* The name attribute of the field. It will map to the form data passed into `useFormState`.
|
|
2370
2390
|
*/
|
|
2371
2391
|
name: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* Use if label describes a required form component
|
|
2394
|
+
*/
|
|
2395
|
+
required?: boolean;
|
|
2372
2396
|
/**
|
|
2373
2397
|
* A value that overrides the basic value. This should pair with `onChange`.
|
|
2374
2398
|
*/
|
|
@@ -2382,7 +2406,7 @@ type FormFieldProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2382
2406
|
* FormField is a compound component that combines a label, form control, and optional description and error message.
|
|
2383
2407
|
*/
|
|
2384
2408
|
declare const FormField: {
|
|
2385
|
-
({ children, description, error, id, label, labelPosition, name, value, ...props }: FormFieldProps): JSX$1.Element;
|
|
2409
|
+
({ children, description, error, id, label, labelPosition, name, required, value, ...props }: FormFieldProps): JSX$1.Element;
|
|
2386
2410
|
displayName: string;
|
|
2387
2411
|
};
|
|
2388
2412
|
|
|
@@ -4312,4 +4336,4 @@ declare const SplitButton: {
|
|
|
4312
4336
|
displayName: string;
|
|
4313
4337
|
};
|
|
4314
4338
|
|
|
4315
|
-
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Modal, ModalCallout, ModalCallouts, type ModalProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize };
|
|
4339
|
+
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, BannerImage, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Modal, ModalCallout, ModalCallouts, type ModalProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -664,6 +664,22 @@ declare const Banner: {
|
|
|
664
664
|
displayName: string;
|
|
665
665
|
};
|
|
666
666
|
|
|
667
|
+
type BannerImageProps = ComponentPropsWithoutRef<'div'> & {
|
|
668
|
+
/**
|
|
669
|
+
* The URL of the image to display in the banner
|
|
670
|
+
*/
|
|
671
|
+
src: string;
|
|
672
|
+
/**
|
|
673
|
+
* Alternative text description of the image for accessibility
|
|
674
|
+
*/
|
|
675
|
+
alt?: string;
|
|
676
|
+
/**
|
|
677
|
+
* Position of the image within the banner layout. Only applies in horizontal orientation.
|
|
678
|
+
*/
|
|
679
|
+
alignment?: 'left' | 'right';
|
|
680
|
+
};
|
|
681
|
+
declare const BannerImage: ({ alignment, alt, src, ...props }: BannerImageProps) => react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
667
683
|
type UnknownRecord = Record<string, unknown>;
|
|
668
684
|
type PropsOf<Component extends ElementType> = ComponentPropsWithoutRef<Component>;
|
|
669
685
|
type ExtendedProps<Props = UnknownRecord, OverrideProps = UnknownRecord> = Omit<Props, keyof OverrideProps> & OverrideProps;
|
|
@@ -1634,6 +1650,10 @@ declare const Combobox: ({ placeholder, value, onChange, searchValue, onSearchVa
|
|
|
1634
1650
|
type ContextMenuProps = {
|
|
1635
1651
|
children: ReactNode;
|
|
1636
1652
|
onRequestClose?: () => void;
|
|
1653
|
+
/**
|
|
1654
|
+
* If the menu is compact
|
|
1655
|
+
*/
|
|
1656
|
+
compact?: boolean;
|
|
1637
1657
|
} & ({
|
|
1638
1658
|
position: {
|
|
1639
1659
|
x: number;
|
|
@@ -1652,7 +1672,7 @@ type ContextMenuProps = {
|
|
|
1652
1672
|
* 1. By providing a `triggerRef`, which will render the menu when the referenced element is right-clicked.
|
|
1653
1673
|
* 2. By providing a `position` prop, which will render the menu at the specified coordinates.
|
|
1654
1674
|
*/
|
|
1655
|
-
declare const ContextMenu: ({ position, triggerRef, children, side, onRequestClose, }: ContextMenuProps) => react_jsx_runtime.JSX.Element | null;
|
|
1675
|
+
declare const ContextMenu: ({ position, triggerRef, children, side, onRequestClose, compact, }: ContextMenuProps) => react_jsx_runtime.JSX.Element | null;
|
|
1656
1676
|
|
|
1657
1677
|
type DataCardProps = ComponentPropsWithoutRef<'div'> & Partial<Pick<ButtonAsLinkProps, 'beforeAction' | 'disabled' | 'href' | 'onClick' | 'type'>> & {
|
|
1658
1678
|
/**
|
|
@@ -2369,6 +2389,10 @@ type FormFieldProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2369
2389
|
* The name attribute of the field. It will map to the form data passed into `useFormState`.
|
|
2370
2390
|
*/
|
|
2371
2391
|
name: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* Use if label describes a required form component
|
|
2394
|
+
*/
|
|
2395
|
+
required?: boolean;
|
|
2372
2396
|
/**
|
|
2373
2397
|
* A value that overrides the basic value. This should pair with `onChange`.
|
|
2374
2398
|
*/
|
|
@@ -2382,7 +2406,7 @@ type FormFieldProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
2382
2406
|
* FormField is a compound component that combines a label, form control, and optional description and error message.
|
|
2383
2407
|
*/
|
|
2384
2408
|
declare const FormField: {
|
|
2385
|
-
({ children, description, error, id, label, labelPosition, name, value, ...props }: FormFieldProps): JSX$1.Element;
|
|
2409
|
+
({ children, description, error, id, label, labelPosition, name, required, value, ...props }: FormFieldProps): JSX$1.Element;
|
|
2386
2410
|
displayName: string;
|
|
2387
2411
|
};
|
|
2388
2412
|
|
|
@@ -4312,4 +4336,4 @@ declare const SplitButton: {
|
|
|
4312
4336
|
displayName: string;
|
|
4313
4337
|
};
|
|
4314
4338
|
|
|
4315
|
-
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Modal, ModalCallout, ModalCallouts, type ModalProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize };
|
|
4339
|
+
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, BannerImage, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Modal, ModalCallout, ModalCallouts, type ModalProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize };
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.15.
|
|
3
|
+
* @license @wistia/ui v0.15.14-beta.14d0d6d5.66508ab
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -12877,6 +12877,7 @@ var Combobox2 = ({
|
|
|
12877
12877
|
// src/components/ContextMenu/ContextMenu.tsx
|
|
12878
12878
|
import { isNil as isNil16, isNotNil as isNotNil24 } from "@wistia/type-guards";
|
|
12879
12879
|
import { useEffect as useEffect16, useState as useState17 } from "react";
|
|
12880
|
+
import { createPortal } from "react-dom";
|
|
12880
12881
|
|
|
12881
12882
|
// src/components/Menu/Menu.tsx
|
|
12882
12883
|
import {
|
|
@@ -13558,7 +13559,8 @@ var ContextMenu = ({
|
|
|
13558
13559
|
triggerRef,
|
|
13559
13560
|
children,
|
|
13560
13561
|
side = "bottom",
|
|
13561
|
-
onRequestClose = () => null
|
|
13562
|
+
onRequestClose = () => null,
|
|
13563
|
+
compact = false
|
|
13562
13564
|
}) => {
|
|
13563
13565
|
const [isRightClicked, setIsRightClicked] = useState17(false);
|
|
13564
13566
|
const [menuPosition, setMenuPosition] = useState17(position ?? { x: 0, y: 0 });
|
|
@@ -13578,9 +13580,13 @@ var ContextMenu = ({
|
|
|
13578
13580
|
return () => null;
|
|
13579
13581
|
}, [position, triggerRef]);
|
|
13580
13582
|
const isOpen = isNotNil24(position) || isRightClicked;
|
|
13581
|
-
|
|
13583
|
+
if (!isOpen) {
|
|
13584
|
+
return null;
|
|
13585
|
+
}
|
|
13586
|
+
const menu = /* @__PURE__ */ jsx267(
|
|
13582
13587
|
Menu,
|
|
13583
13588
|
{
|
|
13589
|
+
compact,
|
|
13584
13590
|
isOpen,
|
|
13585
13591
|
onOpenChange: (next) => {
|
|
13586
13592
|
setIsRightClicked(next);
|
|
@@ -13606,7 +13612,11 @@ var ContextMenu = ({
|
|
|
13606
13612
|
),
|
|
13607
13613
|
children
|
|
13608
13614
|
}
|
|
13609
|
-
)
|
|
13615
|
+
);
|
|
13616
|
+
if (isNotNil24(triggerRef)) {
|
|
13617
|
+
return createPortal(menu, document.body);
|
|
13618
|
+
}
|
|
13619
|
+
return menu;
|
|
13610
13620
|
};
|
|
13611
13621
|
|
|
13612
13622
|
// src/components/DataCards/DataCard.tsx
|
|
@@ -14777,6 +14787,7 @@ var FormField = ({
|
|
|
14777
14787
|
label,
|
|
14778
14788
|
labelPosition,
|
|
14779
14789
|
name,
|
|
14790
|
+
required = false,
|
|
14780
14791
|
value,
|
|
14781
14792
|
...props
|
|
14782
14793
|
}) => {
|
|
@@ -14826,7 +14837,14 @@ var FormField = ({
|
|
|
14826
14837
|
...props,
|
|
14827
14838
|
"data-label-position": labelPosition ?? formState.labelPosition,
|
|
14828
14839
|
children: [
|
|
14829
|
-
!isIntegratedLabel && /* @__PURE__ */ jsx283(
|
|
14840
|
+
!isIntegratedLabel && /* @__PURE__ */ jsx283(
|
|
14841
|
+
Label,
|
|
14842
|
+
{
|
|
14843
|
+
htmlFor: computedId,
|
|
14844
|
+
required,
|
|
14845
|
+
children: label
|
|
14846
|
+
}
|
|
14847
|
+
),
|
|
14830
14848
|
isNotNil28(description) ? /* @__PURE__ */ jsx283(FormControlLabelDescription, { id: descriptionId, children: description }) : null,
|
|
14831
14849
|
cloneElement8(children, childProps),
|
|
14832
14850
|
isNotNil28(computedError) ? /* @__PURE__ */ jsxs46(Fragment9, { children: [
|