@redsift/design-system 11.6.0 → 11.7.0-muiv5
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/_internal/NumberField.js +37 -21
- package/_internal/NumberField.js.map +1 -1
- package/_internal/SideNavigationMenu.js +15 -1
- package/_internal/SideNavigationMenu.js.map +1 -1
- package/_internal/SideNavigationMenuItem.js.map +1 -1
- package/_internal/Spinner2.js +4 -215
- package/_internal/Spinner2.js.map +1 -1
- package/_internal/useAppSidePanel.js +4 -2
- package/_internal/useAppSidePanel.js.map +1 -1
- package/_internal/useLocalizedStringFormatter.js +217 -0
- package/_internal/useLocalizedStringFormatter.js.map +1 -0
- package/_internal/useSideNavigationMenuBar.js +5 -2
- package/_internal/useSideNavigationMenuBar.js.map +1 -1
- package/index.d.ts +21 -55
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -466,7 +466,7 @@ declare const getMaxTextWidth: (texts: string[], font: string, angle?: number) =
|
|
|
466
466
|
* @param component React function component or the component name
|
|
467
467
|
* @return predicate returning true if value is instance of the component
|
|
468
468
|
*/
|
|
469
|
-
declare const isComponent: <C>(component:
|
|
469
|
+
declare const isComponent: <C>(component: Comp<C, any> | string) => (instance: ReactNode) => instance is ReactElement;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
472
|
* Return components based on list of predicates.
|
|
@@ -2339,6 +2339,8 @@ type SideNavigationMenuBarContextProps = {
|
|
|
2339
2339
|
currentOpenMenuId?: string;
|
|
2340
2340
|
/** Change current open menu id. */
|
|
2341
2341
|
setCurrentOpenMenuId?: Dispatch<SetStateAction<string | undefined>>;
|
|
2342
|
+
/** Whether or not opening a menu closes the others. */
|
|
2343
|
+
canHaveMultipleMenuOpenAtOnce?: boolean;
|
|
2342
2344
|
};
|
|
2343
2345
|
/**
|
|
2344
2346
|
* Component props.
|
|
@@ -2383,10 +2385,11 @@ declare const SideNavigationMenuBar: Comp<SideNavigationMenuBarProps, HTMLElemen
|
|
|
2383
2385
|
interface UseSideNavigationMenuBarProps {
|
|
2384
2386
|
items: MenuBarItems;
|
|
2385
2387
|
isActive?: (href: string) => boolean;
|
|
2388
|
+
canHaveMultipleMenuOpenAtOnce?: boolean;
|
|
2386
2389
|
}
|
|
2387
|
-
declare const useSideNavigationMenuBar: ({ items, isActive, }: UseSideNavigationMenuBarProps) => Omit<SideNavigationMenuBarProps,
|
|
2390
|
+
declare const useSideNavigationMenuBar: ({ items, isActive, canHaveMultipleMenuOpenAtOnce, }: UseSideNavigationMenuBarProps) => Omit<SideNavigationMenuBarProps, "ref">;
|
|
2388
2391
|
|
|
2389
|
-
declare const useAppSidePanel: ({ items, isActive }: UseSideNavigationMenuBarProps) => Omit<AppSidePanelProps,
|
|
2392
|
+
declare const useAppSidePanel: ({ items, isActive, canHaveMultipleMenuOpenAtOnce, }: UseSideNavigationMenuBarProps) => Omit<AppSidePanelProps, "ref">;
|
|
2390
2393
|
|
|
2391
2394
|
/**
|
|
2392
2395
|
* Context props.
|
|
@@ -2579,17 +2582,7 @@ type StyledButtonProps = ButtonProps & {
|
|
|
2579
2582
|
/**
|
|
2580
2583
|
* Component style.
|
|
2581
2584
|
*/
|
|
2582
|
-
declare const StyledButton: styled_components.StyledComponent<"button", any,
|
|
2583
|
-
$color: string | undefined;
|
|
2584
|
-
$fullWidth?: boolean | undefined;
|
|
2585
|
-
$isActive: boolean | undefined;
|
|
2586
|
-
$isDisabled: boolean | undefined;
|
|
2587
|
-
$isGradient: boolean;
|
|
2588
|
-
$isHovered: boolean | undefined;
|
|
2589
|
-
$isLoading: boolean | undefined;
|
|
2590
|
-
$theme: Theme | undefined;
|
|
2591
|
-
$variant: ButtonVariant | undefined;
|
|
2592
|
-
}, never>;
|
|
2585
|
+
declare const StyledButton: styled_components.StyledComponent<"button", any, StyledButtonProps, never>;
|
|
2593
2586
|
|
|
2594
2587
|
/**
|
|
2595
2588
|
* The Button is a semantic button that looks like a button.
|
|
@@ -2637,12 +2630,7 @@ type StyledLinkProps = Omit<LinkProps, 'isDisabled'> & {
|
|
|
2637
2630
|
/**
|
|
2638
2631
|
* Component style.
|
|
2639
2632
|
*/
|
|
2640
|
-
declare const StyledLink: styled_components.StyledComponent<"a", any,
|
|
2641
|
-
$isDisabled: boolean | undefined;
|
|
2642
|
-
$color: (string & {}) | "radar" | NotificationsColorPalette | NeutralColorPalette | undefined;
|
|
2643
|
-
$theme: Theme | undefined;
|
|
2644
|
-
$hasIcons: boolean;
|
|
2645
|
-
}, never>;
|
|
2633
|
+
declare const StyledLink: styled_components.StyledComponent<"a", any, StyledLinkProps, never>;
|
|
2646
2634
|
|
|
2647
2635
|
/**
|
|
2648
2636
|
* The Link is a semantic link that looks like a link.
|
|
@@ -3508,13 +3496,13 @@ declare function useFocusOnListItem(props: {
|
|
|
3508
3496
|
declare function useFocusOnList(): UseFocusGroupProps;
|
|
3509
3497
|
|
|
3510
3498
|
declare const StyledGradientBorder: styled_components.StyledComponent<"div", any, {
|
|
3511
|
-
$borderRadius?: string
|
|
3512
|
-
$color?: ButtonProps[
|
|
3513
|
-
$isActive?: ButtonProps[
|
|
3514
|
-
$isDisabled?: ButtonProps[
|
|
3515
|
-
$isHovered?: ButtonProps[
|
|
3516
|
-
$theme?: ButtonProps[
|
|
3517
|
-
width?: string
|
|
3499
|
+
$borderRadius?: string;
|
|
3500
|
+
$color?: ButtonProps["color"];
|
|
3501
|
+
$isActive?: ButtonProps["isActive"];
|
|
3502
|
+
$isDisabled?: ButtonProps["isDisabled"];
|
|
3503
|
+
$isHovered?: ButtonProps["isHovered"];
|
|
3504
|
+
$theme?: ButtonProps["theme"];
|
|
3505
|
+
width?: string;
|
|
3518
3506
|
}, never>;
|
|
3519
3507
|
|
|
3520
3508
|
/**
|
|
@@ -3674,11 +3662,11 @@ type StyledListboxProps = Omit<ListboxProps, 'onChange'> & {
|
|
|
3674
3662
|
|
|
3675
3663
|
declare const ActiveDescendantListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
|
|
3676
3664
|
context: ListboxContextProps;
|
|
3677
|
-
}, "label" | "slot" | "style" | "title" | "left" | "right" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "alignContent" | "alignItems" | "flexDirection" | "flexWrap" | "gap" | "justifyContent" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyItems" | "display" | "position" | "top" | "bottom" | "zIndex" | "background" | "backgroundColor" | "border" | "borderTop" | "borderBottom" | "borderLeft" | "borderRight" | "borderRadius" | "boxShadow" | "aria-label" | "aria-labelledby" | "variant" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "isInvalid" | "isRequired" | "isDisabled" | "padding" | "paddingTop" | "paddingBottom" | "direction" | "paddingLeft" | "paddingRight" | "
|
|
3665
|
+
}, "label" | "slot" | "style" | "title" | "left" | "right" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "alignContent" | "alignItems" | "flexDirection" | "flexWrap" | "gap" | "justifyContent" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyItems" | "display" | "position" | "top" | "bottom" | "zIndex" | "background" | "backgroundColor" | "border" | "borderTop" | "borderBottom" | "borderLeft" | "borderRight" | "borderRadius" | "boxShadow" | "values" | "aria-label" | "aria-labelledby" | "variant" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "isInvalid" | "isRequired" | "isDisabled" | "padding" | "paddingTop" | "paddingBottom" | "direction" | "paddingLeft" | "paddingRight" | "defaultValues" | "isReadOnly" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "listRole" | "activedescendant" | "maxOptionsLength" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3678
3666
|
|
|
3679
3667
|
declare const RovingTabindexListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
|
|
3680
3668
|
context: ListboxContextProps;
|
|
3681
|
-
}, "label" | "slot" | "style" | "title" | "left" | "right" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "alignContent" | "alignItems" | "flexDirection" | "flexWrap" | "gap" | "justifyContent" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyItems" | "display" | "position" | "top" | "bottom" | "zIndex" | "background" | "backgroundColor" | "border" | "borderTop" | "borderBottom" | "borderLeft" | "borderRight" | "borderRadius" | "boxShadow" | "aria-label" | "aria-labelledby" | "variant" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "isInvalid" | "isRequired" | "isDisabled" | "padding" | "paddingTop" | "paddingBottom" | "direction" | "paddingLeft" | "paddingRight" | "
|
|
3669
|
+
}, "label" | "slot" | "style" | "title" | "left" | "right" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "alignContent" | "alignItems" | "flexDirection" | "flexWrap" | "gap" | "justifyContent" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyItems" | "display" | "position" | "top" | "bottom" | "zIndex" | "background" | "backgroundColor" | "border" | "borderTop" | "borderBottom" | "borderLeft" | "borderRight" | "borderRadius" | "boxShadow" | "values" | "aria-label" | "aria-labelledby" | "variant" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "isInvalid" | "isRequired" | "isDisabled" | "padding" | "paddingTop" | "paddingBottom" | "direction" | "paddingLeft" | "paddingRight" | "defaultValues" | "isReadOnly" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "listRole" | "activedescendant" | "maxOptionsLength" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3682
3670
|
|
|
3683
3671
|
/**
|
|
3684
3672
|
* The Listbox component.
|
|
@@ -3755,17 +3743,7 @@ type StyledItemProps = Omit<ItemProps, 'color' | 'onClick' | 'value'> & {
|
|
|
3755
3743
|
/**
|
|
3756
3744
|
* Component style.
|
|
3757
3745
|
*/
|
|
3758
|
-
declare const StyledItem: styled_components.StyledComponent<"div", any,
|
|
3759
|
-
$borderRadius: string | undefined;
|
|
3760
|
-
$color: string | undefined;
|
|
3761
|
-
$hasBorder: boolean | undefined;
|
|
3762
|
-
$hasCheckbox: boolean | undefined;
|
|
3763
|
-
$isActive: boolean | undefined;
|
|
3764
|
-
$isDisabled: boolean | undefined;
|
|
3765
|
-
$isGradient: boolean;
|
|
3766
|
-
$isHovered: boolean | undefined;
|
|
3767
|
-
$theme: Theme | undefined;
|
|
3768
|
-
}, never>;
|
|
3746
|
+
declare const StyledItem: styled_components.StyledComponent<"div", any, StyledItemProps, never>;
|
|
3769
3747
|
|
|
3770
3748
|
declare const RenderedListboxItem: Comp<Omit<ItemProps, 'value'> & Required<Pick<ItemProps, 'value'>>, HTMLElement>;
|
|
3771
3749
|
/**
|
|
@@ -3949,19 +3927,7 @@ type StyledTextFieldProps = Omit<TextFieldProps, 'color' | 'isColored' | 'isDisa
|
|
|
3949
3927
|
/**
|
|
3950
3928
|
* Component style.
|
|
3951
3929
|
*/
|
|
3952
|
-
declare const StyledTextField: styled_components.StyledComponent<"div", any,
|
|
3953
|
-
$color: string | undefined;
|
|
3954
|
-
$isGradient: boolean;
|
|
3955
|
-
$hasLeftIcon: boolean;
|
|
3956
|
-
$hasContent: boolean;
|
|
3957
|
-
$isDisabled: boolean | undefined;
|
|
3958
|
-
$isInvalid: boolean | undefined;
|
|
3959
|
-
$isFocused: boolean;
|
|
3960
|
-
$isFocusVisible: boolean;
|
|
3961
|
-
$isRequired: boolean | undefined;
|
|
3962
|
-
$theme: Theme | undefined;
|
|
3963
|
-
$variant: TextFieldVariant | undefined;
|
|
3964
|
-
}, never>;
|
|
3930
|
+
declare const StyledTextField: styled_components.StyledComponent<"div", any, StyledTextFieldProps, never>;
|
|
3965
3931
|
|
|
3966
3932
|
/**
|
|
3967
3933
|
* The TextField component.
|
|
@@ -4476,10 +4442,10 @@ type StyledTextAreaProps = StyledTextFieldProps;
|
|
|
4476
4442
|
declare const TextArea: Comp<TextAreaProps, HTMLDivElement>;
|
|
4477
4443
|
|
|
4478
4444
|
declare const ThemeContext: React$1.Context<{
|
|
4479
|
-
theme?: Theme
|
|
4445
|
+
theme?: Theme;
|
|
4480
4446
|
} | null>;
|
|
4481
4447
|
declare const ThemeProvider: React$1.Provider<{
|
|
4482
|
-
theme?: Theme
|
|
4448
|
+
theme?: Theme;
|
|
4483
4449
|
} | null>;
|
|
4484
4450
|
|
|
4485
4451
|
declare function useTheme(theme?: Theme): Theme;
|
package/index.js
CHANGED
|
@@ -68,7 +68,7 @@ export { B as BaseSkeleton, S as Skeleton } from './_internal/Skeleton2.js';
|
|
|
68
68
|
export { S as SkeletonCircle } from './_internal/SkeletonCircle.js';
|
|
69
69
|
export { S as SkeletonTextVariant } from './_internal/types3.js';
|
|
70
70
|
export { S as SkeletonText } from './_internal/SkeletonText.js';
|
|
71
|
-
export { S as Spinner, a as SpinnerSize
|
|
71
|
+
export { S as Spinner, a as SpinnerSize } from './_internal/Spinner2.js';
|
|
72
72
|
export { S as Switch } from './_internal/Switch2.js';
|
|
73
73
|
export { a as SwitchGroup, S as SwitchGroupOrientation } from './_internal/SwitchGroup.js';
|
|
74
74
|
export { a as TextComponent, T as TextVariant } from './_internal/styles5.js';
|
|
@@ -77,6 +77,7 @@ export { S as StyledTextField, a as TextField, T as TextFieldVariant } from './_
|
|
|
77
77
|
export { T as ThemeContext, a as ThemeProvider, u as useTheme } from './_internal/useTheme.js';
|
|
78
78
|
import { u as useLocale } from './_internal/context2.js';
|
|
79
79
|
export { I as I18nProvider, S as SSRProvider, b as useIsSSR, u as useLocale, a as useSSRSafeId } from './_internal/context2.js';
|
|
80
|
+
export { a as useLocalizedStringDictionary, u as useLocalizedStringFormatter } from './_internal/useLocalizedStringFormatter.js';
|
|
80
81
|
import { useMemo, useRef, useCallback } from 'react';
|
|
81
82
|
export { u as useNumberFormatter } from './_internal/useNumberFormatter.js';
|
|
82
83
|
export { u as useMessageFormatter } from './_internal/useMessageFormatter.js';
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/types/styles.ts","../src/utils/getTextWidth.ts","../src/react-aria/react-aria/i18n/useListFormatter.tsx","../src/react-aria/internationalized/date/DateFormatter.ts","../src/react-aria/react-aria/utils/useDeepMemo.ts","../src/react-aria/react-aria/i18n/useDateFormatter.ts","../src/react-aria/react-aria/i18n/useCollator.ts","../src/react-aria/react-aria/i18n/useFilter.ts"],"sourcesContent":["import { ValueOf } from './helpers';\n\nexport const AlignSelf = {\n auto: 'auto',\n normal: 'normal',\n start: 'start',\n end: 'end',\n center: 'center',\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n 'self-start': 'self-start',\n 'self-end': 'self-end',\n baseline: 'baseline',\n stretch: 'stretch',\n} as const;\nexport type AlignSelf = ValueOf<typeof AlignSelf>;\n\nexport const JustifySelf = {\n auto: 'auto',\n normal: 'normal',\n start: 'start',\n end: 'end',\n center: 'center',\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n 'self-start': 'self-start',\n 'self-end': 'self-end',\n left: 'left',\n right: 'right',\n stretch: 'stretch',\n} as const;\nexport type JustifySelf = ValueOf<typeof JustifySelf>;\n\nexport const AlignContent = {\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n center: 'center',\n 'space-between': 'space-between',\n 'space-around': 'space-around',\n 'space-evenly': 'space-evenly',\n stretch: 'stretch',\n start: 'start',\n end: 'end',\n baseline: 'baseline',\n 'first baseline': 'first baseline',\n 'last baseline': 'last baseline',\n} as const;\nexport type AlignContent = ValueOf<typeof AlignContent>;\n\nexport const AlignItems = {\n stretch: 'stretch',\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n center: 'center',\n baseline: 'baseline',\n 'first baseline': 'first baseline',\n 'last baseline': 'last baseline',\n start: 'start',\n end: 'end',\n 'self-start': 'self-start',\n 'self-end': 'self-end',\n} as const;\nexport type AlignItems = ValueOf<typeof AlignItems>;\n\nexport const FlexDirection = {\n row: 'row',\n 'row-reverse': 'row-reverse',\n column: 'column',\n 'column-reverse': 'column-reverse',\n} as const;\nexport type FlexDirection = ValueOf<typeof FlexDirection>;\n\nexport const FlexWrap = {\n nowrap: 'nowrap',\n wrap: 'wrap',\n 'wrap-reverse': 'wrap-reverse',\n} as const;\nexport type FlexWrap = ValueOf<typeof FlexWrap>;\n\nexport const JustifyContent = {\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n center: 'center',\n 'space-between': 'space-between',\n 'space-around': 'space-around',\n 'space-evenly': 'space-evenly',\n start: 'start',\n end: 'end',\n left: 'left',\n right: 'right',\n baseline: 'baseline',\n 'first baseline': 'first baseline',\n 'last baseline': 'last baseline',\n stretch: 'stretch',\n} as const;\nexport type JustifyContent = ValueOf<typeof JustifyContent>;\n\nexport const JustifyItems = {\n start: 'start',\n end: 'end',\n center: 'center',\n stretch: 'stretch',\n} as const;\nexport type JustifyItems = ValueOf<typeof JustifyItems>;\n\nexport interface LayoutProps {\n /** When used in a flex layout, specifies how the element will grow or shrink to fit the space available. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex\">MDN</a>. */\n flex?: string;\n /** When used in a flex layout, specifies how the element will grow to fit the space available. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow\">MDN</a>. */\n flexGrow?: number;\n /** When used in a flex layout, specifies how the element will shrink to fit the space available. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink\">MDN</a>. */\n flexShrink?: number;\n /** When used in a flex layout, specifies the initial main size of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex_basis\">MDN</a>. */\n flexBasis?: string;\n /** Overrides the alignItems property of a flex or grid container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-self\">MDN</a>. */\n alignSelf?: AlignSelf;\n /** Specifies how the element is justified inside a flex or grid container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-self\">MDN</a>. */\n justifySelf?: string;\n /** The layout order for the element within a flex or grid container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/order\">MDN</a>. */\n order?: number;\n /** When used in a grid layout, specifies the named grid area that the element should be placed in within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-area\">MDN</a>. */\n gridArea?: string;\n /** When used in a grid layout, specifies the column the element should be placed in within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column\">MDN</a>. */\n gridColumn?: string;\n /** When used in a grid layout, specifies the row the element should be placed in within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row\">MDN</a>. */\n gridRow?: string;\n /** When used in a grid layout, specifies the starting column to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start\">MDN</a>. */\n gridColumnStart?: string;\n /** When used in a grid layout, specifies the ending column to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end\">MDN</a>. */\n gridColumnEnd?: string;\n /** When used in a grid layout, specifies the starting row to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start\">MDN</a>. */\n gridRowStart?: string;\n /** When used in a grid layout, specifies the ending row to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end\">MDN</a>. */\n gridRowEnd?: string;\n}\n\nexport interface SpacingProps {\n /** The margin for all four sides of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin\">MDN</a>. */\n margin?: string;\n /** The margin for the bottom side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom\">MDN</a>. */\n marginBottom?: string;\n /** The margin for the left side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-left\">MDN</a>. */\n marginLeft?: string;\n /** The margin for the right side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-right\">MDN</a>. */\n marginRight?: string;\n /** The margin for the top side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-top\">MDN</a>. */\n marginTop?: string;\n}\n\nexport interface SizingProps {\n /** The height of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/height\">MDN</a>. */\n height?: string | number;\n /** The maximum height of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/max-height\">MDN</a>. */\n maxHeight?: string;\n /** The maximum width of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/max-width\">MDN</a>. */\n maxWidth?: string;\n /** The minimum height of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/min-height\">MDN</a>. */\n minHeight?: string;\n /** The minimum width of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/min-width\">MDN</a>. */\n minWidth?: string;\n /** The width of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/width\">MDN</a>. */\n width?: string | number;\n}\n\nexport interface PositioningProps {\n /** Specifies how the element is positioned. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/position\">MDN</a>. */\n position?: string;\n /** The top position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/top\">MDN</a>. */\n top?: string;\n /** The bottom position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/bottom\">MDN</a>. */\n bottom?: string;\n /** The left position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/left\">MDN</a>. Consider using start instead for RTL support. */\n left?: string;\n /** The right position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/right\">MDN</a>. Consider using start instead for RTL support. */\n right?: string;\n /** The stacking order for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/z-index\">MDN</a>. */\n zIndex?: string;\n}\n\nexport interface BorderProps {\n /** The background shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. Component properties not set in the background shorthand property value declaration are set to their default values. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background\">MDN</a>. */\n background?: string;\n /** The background-color CSS property sets the background color of an element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\">MDN</a>. */\n backgroundColor?: string;\n /** The border shorthand CSS property sets an element's border. It sets the values of border-width, border-style, and border-color. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border\">MDN</a>. */\n border?: string;\n /** The border-top CSS property sets all the properties of an element's top border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-top\">MDN</a>. */\n borderTop?: string;\n /** The border-top CSS property sets all the properties of an element's bottom border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom\">MDN</a>. */\n borderBottom?: string;\n /** The border-top CSS property sets all the properties of an element's left border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-left\">MDN</a>. Consider using start instead for RTL support. */\n borderLeft?: string;\n /** The border-top CSS property sets all the properties of an element's right border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-right\">MDN</a>. Consider using start instead for RTL support. */\n borderRight?: string;\n /** The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius\">MDN</a>. */\n borderRadius?: string;\n /** The box-shadow CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow\">MDN</a>. */\n boxShadow?: string;\n}\n\nexport interface FlexLayoutProps {\n /** The distribution of space around child items along the cross axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-content\">MDN</a>. */\n alignContent?: AlignContent;\n /** The alignment of children within their container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-items\">MDN</a>. */\n alignItems?: AlignItems;\n /** The direction in which to layout children. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction\">MDN</a>. */\n flexDirection?: FlexDirection;\n /** Whether to wrap items onto multiple lines. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap\">MDN</a>. */\n flexWrap?: FlexWrap;\n /** The space to display between both rows and columns. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/gap\">MDN</a>. */\n gap?: string;\n /** Whether the box is displayed inline or not. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/display\">MDN</a>. */\n inline?: boolean;\n /** The distribution of space around items along the main axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content\">MDN</a>. */\n justifyContent?: JustifyContent;\n}\n\nexport interface GridLayoutProps {\n /** The distribution of space around child items along the cross axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-content\">MDN</a>. */\n alignContent?: AlignContent;\n /** The alignment of children within their container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-items\">MDN</a>. */\n alignItems?: AlignItems;\n /** The space to display between both rows and columns. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/gap\">MDN</a>. */\n gap?: string;\n /** Defines the size of implicitly generated columns. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns\">MDN</a>. */\n gridAutoColumns?: string;\n /** Defines the size of implicitly generated rows. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows\">MDN</a>. */\n gridAutoRows?: string;\n /** Defines named grid areas. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-areas\">MDN</a>. */\n gridTemplateAreas?: string;\n /** Defines the sizes of each column in the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns\">MDN</a>. */\n gridTemplateColumns?: string;\n /** Defines the sizes of each row in the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows\">MDN</a>. */\n gridTemplateRows?: string;\n /** Whether the box is displayed inline or not. */\n inline?: boolean;\n /** The distribution of space around items along the main axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content\">MDN</a>. */\n justifyContent?: JustifyContent;\n /** Defines the default justifySelf for all items in the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-items\">MDN</a>. */\n justifyItems?: JustifyItems;\n}\n\nexport interface StylingProps extends LayoutProps, SpacingProps, SizingProps, PositioningProps {}\n\nexport interface InternalSpacingProps {\n /** The padding for all four sides of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\">MDN</a>. */\n padding?: string;\n /** The padding for the bottom side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom\">MDN</a>. */\n paddingBottom?: string;\n /** The padding for the left side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-left\">MDN</a>. */\n paddingLeft?: string;\n /** The padding for the right side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-right\">MDN</a>. */\n paddingRight?: string;\n /** The padding for the top side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-top\">MDN</a>. */\n paddingTop?: string;\n}\nexport interface ContainerProps\n extends Omit<FlexLayoutProps, 'inline'>,\n Omit<GridLayoutProps, 'inline'>,\n SpacingProps,\n SizingProps,\n PositioningProps,\n BorderProps,\n InternalSpacingProps {\n /** Sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/display\">MDN</a>. */\n display?: 'block' | 'inline' | 'inline-block' | 'flex' | 'inline-flex' | 'grid' | 'inline-grid' | 'inherit';\n}\n\nexport const getContainerProps = (props: ContainerProps) => ({\n ...(props.alignContent && { alignContent: props.alignContent }),\n ...(props.alignItems && { alignItems: props.alignItems }),\n ...(props.bottom && { bottom: props.bottom }),\n ...(props.flexDirection && { flexDirection: props.flexDirection }),\n ...(props.flexWrap && { flexWrap: props.flexWrap }),\n ...(props.gap && { gap: props.gap }),\n ...(props.gridAutoColumns && { gridAutoColumns: props.gridAutoColumns }),\n ...(props.gridAutoRows && { gridAutoRows: props.gridAutoRows }),\n ...(props.gridTemplateAreas && { gridTemplateAreas: props.gridTemplateAreas }),\n ...(props.gridTemplateColumns && { gridTemplateColumns: props.gridTemplateColumns }),\n ...(props.gridTemplateRows && { gridTemplateRows: props.gridTemplateRows }),\n ...(props.height && { height: props.height }),\n ...(props.justifyContent && { justifyContent: props.justifyContent }),\n ...(props.justifyItems && { justifyItems: props.justifyItems }),\n ...(props.left && { left: props.left }),\n ...(props.margin && { margin: props.margin }),\n ...(props.marginBottom && { marginBottom: props.marginBottom }),\n ...(props.marginLeft && { marginLeft: props.marginLeft }),\n ...(props.marginRight && { marginRight: props.marginRight }),\n ...(props.marginTop && { marginTop: props.marginTop }),\n ...(props.maxHeight && { maxHeight: props.maxHeight }),\n ...(props.maxWidth && { maxWidth: props.maxWidth }),\n ...(props.minHeight && { minHeight: props.minHeight }),\n ...(props.minWidth && { minWidth: props.minWidth }),\n ...(props.padding && { padding: props.padding }),\n ...(props.paddingBottom && { paddingBottom: props.paddingBottom }),\n ...(props.paddingLeft && { paddingLeft: props.paddingLeft }),\n ...(props.paddingRight && { paddingRight: props.paddingRight }),\n ...(props.paddingTop && { paddingTop: props.paddingTop }),\n ...(props.position && { position: props.position }),\n ...(props.right && { right: props.right }),\n ...(props.top && { top: props.top }),\n ...(props.width && { width: props.width }),\n ...(props.zIndex && { zIndex: props.zIndex }),\n});\n","export const getCssStyle = (element: Element, prop: string) => {\n return window.getComputedStyle(element, null).getPropertyValue(prop);\n};\n\nexport const getCanvasFont = (el = document.body) => {\n const fontWeight = getCssStyle(el, 'font-weight') || 'normal';\n const fontSize = getCssStyle(el, 'font-size') || '16px';\n const fontFamily = getCssStyle(el, 'font-family') || 'Times New Roman';\n\n return `${fontWeight} ${fontSize} ${fontFamily}`;\n};\n\nexport const getTextWidth: (text: string, font: string, angle?: number) => number = (text, font, angle = 0) => {\n const canvas = document.createElement('canvas');\n const context = canvas.getContext('2d');\n context!.font = font;\n const metrics = context!.measureText(text);\n\n const radians = angle * (Math.PI / 180);\n const cosTheta = Math.abs(Math.cos(radians));\n const sinTheta = Math.abs(Math.sin(radians));\n\n const boundingBoxHeight = metrics.width * sinTheta + 15 * cosTheta;\n // console.log(text, metrics.width, boundingBoxHeight);\n\n // return metrics.width;\n return boundingBoxHeight;\n};\n\nexport const getMaxTextWidth: (texts: string[], font: string, angle?: number) => number = (texts, font, angle = 0) => {\n return Math.max(...texts.map((text) => getTextWidth(text, font, angle)));\n};\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useLocale } from './context';\nimport { useMemo } from 'react';\n\n/**\n * Provides localized list formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the list formatter for performance.\n * @param options - Formatting options.\n */\nexport function useListFormatter(options: Intl.ListFormatOptions = {}): Intl.ListFormat {\n let { locale } = useLocale();\n return useMemo(() => new Intl.ListFormat(locale, options), [locale, options]);\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nlet formatterCache = new Map<string, Intl.DateTimeFormat>();\n\ninterface ResolvedDateTimeFormatOptions extends Intl.ResolvedDateTimeFormatOptions {\n hourCycle?: Intl.DateTimeFormatOptions['hourCycle'];\n}\n\ninterface DateRangeFormatPart extends Intl.DateTimeFormatPart {\n source: 'startRange' | 'endRange' | 'shared';\n}\n\n/** A wrapper around Intl.DateTimeFormat that fixes various browser bugs, and polyfills new features. */\nexport class DateFormatter implements Intl.DateTimeFormat {\n private formatter: Intl.DateTimeFormat;\n private options: Intl.DateTimeFormatOptions;\n private resolvedHourCycle: Intl.DateTimeFormatOptions['hourCycle'];\n\n constructor(locale: string, options: Intl.DateTimeFormatOptions = {}) {\n this.formatter = getCachedDateFormatter(locale, options);\n this.options = options;\n }\n\n /** Formats a date as a string according to the locale and format options passed to the constructor. */\n format(value: Date): string {\n return this.formatter.format(value);\n }\n\n /** Formats a date to an array of parts such as separators, numbers, punctuation, and more. */\n formatToParts(value: Date): Intl.DateTimeFormatPart[] {\n return this.formatter.formatToParts(value);\n }\n\n /** Formats a date range as a string. */\n formatRange(start: Date, end: Date): string {\n // @ts-ignore\n if (typeof this.formatter.formatRange === 'function') {\n // @ts-ignore\n return this.formatter.formatRange(start, end);\n }\n\n if (end < start) {\n throw new RangeError('End date must be >= start date');\n }\n\n // Very basic fallback for old browsers.\n return `${this.formatter.format(start)} – ${this.formatter.format(end)}`;\n }\n\n /** Formats a date range as an array of parts. */\n formatRangeToParts(start: Date, end: Date): DateRangeFormatPart[] {\n // @ts-ignore\n if (typeof this.formatter.formatRangeToParts === 'function') {\n // @ts-ignore\n return this.formatter.formatRangeToParts(start, end);\n }\n\n if (end < start) {\n throw new RangeError('End date must be >= start date');\n }\n\n let startParts = this.formatter.formatToParts(start);\n let endParts = this.formatter.formatToParts(end);\n return [\n ...startParts.map((p) => ({ ...p, source: 'startRange' } as DateRangeFormatPart)),\n { type: 'literal', value: ' – ', source: 'shared' },\n ...endParts.map((p) => ({ ...p, source: 'endRange' } as DateRangeFormatPart)),\n ];\n }\n\n /** Returns the resolved formatting options based on the values passed to the constructor. */\n resolvedOptions(): ResolvedDateTimeFormatOptions {\n let resolvedOptions = this.formatter.resolvedOptions() as ResolvedDateTimeFormatOptions;\n if (hasBuggyResolvedHourCycle()) {\n if (!this.resolvedHourCycle) {\n this.resolvedHourCycle = getResolvedHourCycle(resolvedOptions.locale, this.options);\n }\n resolvedOptions.hourCycle = this.resolvedHourCycle;\n resolvedOptions.hour12 = this.resolvedHourCycle === 'h11' || this.resolvedHourCycle === 'h12';\n }\n\n // Safari uses a different name for the Ethiopic (Amete Alem) calendar.\n // https://bugs.webkit.org/show_bug.cgi?id=241564\n if (resolvedOptions.calendar === 'ethiopic-amete-alem') {\n resolvedOptions.calendar = 'ethioaa';\n }\n\n return resolvedOptions;\n }\n}\n\n// There are multiple bugs involving the hour12 and hourCycle options in various browser engines.\n// - Chrome [1] (and the ECMA 402 spec [2]) resolve hour12: false in English and other locales to h24 (24:00 - 23:59)\n// rather than h23 (00:00 - 23:59). Same can happen with hour12: true in French, which Chrome resolves to h11 (00:00 - 11:59)\n// rather than h12 (12:00 - 11:59).\n// - WebKit returns an incorrect hourCycle resolved option in the French locale due to incorrect parsing of 'h' literal\n// in the resolved pattern. It also formats incorrectly when specifying the hourCycle option for the same reason. [3]\n// [1] https://bugs.chromium.org/p/chromium/issues/detail?id=1045791\n// [2] https://github.com/tc39/ecma402/issues/402\n// [3] https://bugs.webkit.org/show_bug.cgi?id=229313\n\n// https://github.com/unicode-org/cldr/blob/018b55eff7ceb389c7e3fc44e2f657eae3b10b38/common/supplemental/supplementalData.xml#L4774-L4802\nconst hour12Preferences = {\n true: {\n // Only Japanese uses the h11 style for 12 hour time. All others use h12.\n ja: 'h11',\n },\n false: {\n // All locales use h23 for 24 hour time. None use h24.\n },\n};\n\nfunction getCachedDateFormatter(locale: string, options: Intl.DateTimeFormatOptions = {}): Intl.DateTimeFormat {\n // Work around buggy hour12 behavior in Chrome / ECMA 402 spec by using hourCycle instead.\n // Only apply the workaround if the issue is detected, because the hourCycle option is buggy in Safari.\n if (typeof options.hour12 === 'boolean' && hasBuggyHour12Behavior()) {\n options = { ...options };\n let pref = hour12Preferences[String(options.hour12)][locale.split('-')[0]];\n let defaultHourCycle = options.hour12 ? 'h12' : 'h23';\n options.hourCycle = pref ?? defaultHourCycle;\n delete options.hour12;\n }\n\n let cacheKey =\n locale +\n (options\n ? Object.entries(options)\n .sort((a, b) => (a[0] < b[0] ? -1 : 1))\n .join()\n : '');\n if (formatterCache.has(cacheKey)) {\n return formatterCache.get(cacheKey)!;\n }\n\n let numberFormatter = new Intl.DateTimeFormat(locale, options);\n formatterCache.set(cacheKey, numberFormatter);\n return numberFormatter;\n}\n\nlet _hasBuggyHour12Behavior: boolean | null = null;\nfunction hasBuggyHour12Behavior() {\n if (_hasBuggyHour12Behavior == null) {\n _hasBuggyHour12Behavior =\n new Intl.DateTimeFormat('en-US', {\n hour: 'numeric',\n hour12: false,\n }).format(new Date(2020, 2, 3, 0)) === '24';\n }\n\n return _hasBuggyHour12Behavior;\n}\n\nlet _hasBuggyResolvedHourCycle: boolean | null = null;\nfunction hasBuggyResolvedHourCycle() {\n if (_hasBuggyResolvedHourCycle == null) {\n _hasBuggyResolvedHourCycle =\n (\n new Intl.DateTimeFormat('fr', {\n hour: 'numeric',\n hour12: false,\n }).resolvedOptions() as ResolvedDateTimeFormatOptions\n ).hourCycle === 'h12';\n }\n\n return _hasBuggyResolvedHourCycle;\n}\n\nfunction getResolvedHourCycle(locale: string, options: Intl.DateTimeFormatOptions) {\n if (!options.timeStyle && !options.hour) {\n return undefined;\n }\n\n // Work around buggy results in resolved hourCycle and hour12 options in WebKit.\n // Format the minimum possible hour and maximum possible hour in a day and parse the results.\n locale = locale.replace(/(-u-)?-nu-[a-zA-Z0-9]+/, '');\n locale += (locale.includes('-u-') ? '' : '-u') + '-nu-latn';\n let formatter = getCachedDateFormatter(locale, {\n ...options,\n timeZone: undefined, // use local timezone\n });\n\n let min = parseInt(formatter.formatToParts(new Date(2020, 2, 3, 0)).find((p) => p.type === 'hour')!.value, 10);\n let max = parseInt(formatter.formatToParts(new Date(2020, 2, 3, 23)).find((p) => p.type === 'hour')!.value, 10);\n\n if (min === 0 && max === 23) {\n return 'h23';\n }\n\n if (min === 24 && max === 23) {\n return 'h24';\n }\n\n if (min === 0 && max === 11) {\n return 'h11';\n }\n\n if (min === 12 && max === 11) {\n return 'h12';\n }\n\n throw new Error('Unexpected hour cycle result');\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useRef } from 'react';\n\nexport function useDeepMemo<T>(value: T, isEqual: (a: T, b: T) => boolean): T {\n // Using a ref during render is ok here because it's only an optimization – both values are equivalent.\n // If a render is thrown away, it'll still work the same no matter if the next render is the same or not.\n let lastValue = useRef<T | null>(null);\n if (value && lastValue.current && isEqual(value, lastValue.current)) {\n value = lastValue.current;\n }\n\n lastValue.current = value;\n return value;\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { DateFormatter } from '../../internationalized/date';\nimport { useDeepMemo } from '../utils';\nimport { useLocale } from './context';\nimport { useMemo } from 'react';\n\nexport interface DateFormatterOptions extends Intl.DateTimeFormatOptions {\n calendar?: string;\n}\n\n/**\n * Provides localized date formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the date formatter for performance.\n * @param options - Formatting options.\n */\nexport function useDateFormatter(options?: DateFormatterOptions): DateFormatter {\n // Reuse last options object if it is shallowly equal, which allows the useMemo result to also be reused.\n options = useDeepMemo(options ?? {}, isEqual);\n let { locale } = useLocale();\n return useMemo(() => new DateFormatter(locale, options), [locale, options]);\n}\n\nfunction isEqual(a: DateFormatterOptions, b: DateFormatterOptions) {\n if (a === b) {\n return true;\n }\n\n let aKeys = Object.keys(a);\n let bKeys = Object.keys(b);\n if (aKeys.length !== bKeys.length) {\n return false;\n }\n\n for (let key of aKeys) {\n if (b[key] !== a[key]) {\n return false;\n }\n }\n\n return true;\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useLocale } from './context';\n\nlet cache = new Map<string, Intl.Collator>();\n\n/**\n * Provides localized string collation for the current locale. Automatically updates when the locale changes,\n * and handles caching of the collator for performance.\n * @param options - Collator options.\n */\nexport function useCollator(options?: Intl.CollatorOptions): Intl.Collator {\n let { locale } = useLocale();\n\n let cacheKey =\n locale +\n (options\n ? Object.entries(options)\n .sort((a, b) => (a[0] < b[0] ? -1 : 1))\n .join()\n : '');\n if (cache.has(cacheKey)) {\n return cache.get(cacheKey)!;\n }\n\n let formatter = new Intl.Collator(locale, options);\n cache.set(cacheKey, formatter);\n return formatter;\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useCallback, useMemo } from 'react';\nimport { useCollator } from './useCollator';\n\nexport interface Filter {\n /** Returns whether a string starts with a given substring. */\n startsWith(string: string, substring: string): boolean;\n /** Returns whether a string ends with a given substring. */\n endsWith(string: string, substring: string): boolean;\n /** Returns whether a string contains a given substring. */\n contains(string: string, substring: string): boolean;\n}\n\n/**\n * Provides localized string search functionality that is useful for filtering or matching items\n * in a list. Options can be provided to adjust the sensitivity to case, diacritics, and other parameters.\n */\nexport function useFilter(options?: Intl.CollatorOptions): Filter {\n let collator = useCollator({\n usage: 'search',\n ...options,\n });\n\n // TODO(later): these methods don't currently support the ignorePunctuation option.\n let startsWith = useCallback(\n (string, substring) => {\n if (substring.length === 0) {\n return true;\n }\n\n // Normalize both strings so we can slice safely\n // TODO: take into account the ignorePunctuation option as well...\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(0, substring.length), substring) === 0;\n },\n [collator]\n );\n\n let endsWith = useCallback(\n (string, substring) => {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(-substring.length), substring) === 0;\n },\n [collator]\n );\n\n let contains = useCallback(\n (string, substring) => {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n\n let scan = 0;\n let sliceLen = substring.length;\n for (; scan + sliceLen <= string.length; scan++) {\n let slice = string.slice(scan, scan + sliceLen);\n if (collator.compare(substring, slice) === 0) {\n return true;\n }\n }\n\n return false;\n },\n [collator]\n );\n\n return useMemo(\n () => ({\n startsWith,\n endsWith,\n contains,\n }),\n [startsWith, endsWith, contains]\n );\n}\n"],"names":["AlignSelf","auto","normal","start","end","center","baseline","stretch","JustifySelf","left","right","AlignContent","AlignItems","FlexDirection","row","column","FlexWrap","nowrap","wrap","JustifyContent","JustifyItems","getContainerProps","props","_objectSpread","alignContent","alignItems","bottom","flexDirection","flexWrap","gap","gridAutoColumns","gridAutoRows","gridTemplateAreas","gridTemplateColumns","gridTemplateRows","height","justifyContent","justifyItems","margin","marginBottom","marginLeft","marginRight","marginTop","maxHeight","maxWidth","minHeight","minWidth","padding","paddingBottom","paddingLeft","paddingRight","paddingTop","position","top","width","zIndex","getCssStyle","element","prop","window","getComputedStyle","getPropertyValue","getCanvasFont","el","arguments","length","undefined","document","body","fontWeight","fontSize","fontFamily","getTextWidth","text","font","angle","canvas","createElement","context","getContext","metrics","measureText","radians","Math","PI","cosTheta","abs","cos","sinTheta","sin","boundingBoxHeight","getMaxTextWidth","texts","max","map","useListFormatter","options","locale","useLocale","useMemo","Intl","ListFormat","formatterCache","Map","DateFormatter","constructor","_defineProperty","formatter","getCachedDateFormatter","format","value","formatToParts","formatRange","RangeError","formatRangeToParts","startParts","endParts","p","source","type","resolvedOptions","hasBuggyResolvedHourCycle","resolvedHourCycle","getResolvedHourCycle","hourCycle","hour12","calendar","hour12Preferences","true","ja","false","hasBuggyHour12Behavior","pref","String","split","defaultHourCycle","cacheKey","Object","entries","sort","a","b","join","has","get","numberFormatter","DateTimeFormat","set","_hasBuggyHour12Behavior","hour","Date","_hasBuggyResolvedHourCycle","timeStyle","replace","includes","timeZone","min","parseInt","find","Error","useDeepMemo","isEqual","lastValue","useRef","current","useDateFormatter","_options","aKeys","keys","bKeys","key","cache","useCollator","Collator","useFilter","collator","usage","startsWith","useCallback","string","substring","normalize","compare","slice","endsWith","contains","scan","sliceLen"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/types/styles.ts","../src/utils/getTextWidth.ts","../src/react-aria/react-aria/i18n/useListFormatter.tsx","../src/react-aria/internationalized/date/DateFormatter.ts","../src/react-aria/react-aria/utils/useDeepMemo.ts","../src/react-aria/react-aria/i18n/useDateFormatter.ts","../src/react-aria/react-aria/i18n/useCollator.ts","../src/react-aria/react-aria/i18n/useFilter.ts"],"sourcesContent":["import { ValueOf } from './helpers';\n\nexport const AlignSelf = {\n auto: 'auto',\n normal: 'normal',\n start: 'start',\n end: 'end',\n center: 'center',\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n 'self-start': 'self-start',\n 'self-end': 'self-end',\n baseline: 'baseline',\n stretch: 'stretch',\n} as const;\nexport type AlignSelf = ValueOf<typeof AlignSelf>;\n\nexport const JustifySelf = {\n auto: 'auto',\n normal: 'normal',\n start: 'start',\n end: 'end',\n center: 'center',\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n 'self-start': 'self-start',\n 'self-end': 'self-end',\n left: 'left',\n right: 'right',\n stretch: 'stretch',\n} as const;\nexport type JustifySelf = ValueOf<typeof JustifySelf>;\n\nexport const AlignContent = {\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n center: 'center',\n 'space-between': 'space-between',\n 'space-around': 'space-around',\n 'space-evenly': 'space-evenly',\n stretch: 'stretch',\n start: 'start',\n end: 'end',\n baseline: 'baseline',\n 'first baseline': 'first baseline',\n 'last baseline': 'last baseline',\n} as const;\nexport type AlignContent = ValueOf<typeof AlignContent>;\n\nexport const AlignItems = {\n stretch: 'stretch',\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n center: 'center',\n baseline: 'baseline',\n 'first baseline': 'first baseline',\n 'last baseline': 'last baseline',\n start: 'start',\n end: 'end',\n 'self-start': 'self-start',\n 'self-end': 'self-end',\n} as const;\nexport type AlignItems = ValueOf<typeof AlignItems>;\n\nexport const FlexDirection = {\n row: 'row',\n 'row-reverse': 'row-reverse',\n column: 'column',\n 'column-reverse': 'column-reverse',\n} as const;\nexport type FlexDirection = ValueOf<typeof FlexDirection>;\n\nexport const FlexWrap = {\n nowrap: 'nowrap',\n wrap: 'wrap',\n 'wrap-reverse': 'wrap-reverse',\n} as const;\nexport type FlexWrap = ValueOf<typeof FlexWrap>;\n\nexport const JustifyContent = {\n 'flex-start': 'flex-start',\n 'flex-end': 'flex-end',\n center: 'center',\n 'space-between': 'space-between',\n 'space-around': 'space-around',\n 'space-evenly': 'space-evenly',\n start: 'start',\n end: 'end',\n left: 'left',\n right: 'right',\n baseline: 'baseline',\n 'first baseline': 'first baseline',\n 'last baseline': 'last baseline',\n stretch: 'stretch',\n} as const;\nexport type JustifyContent = ValueOf<typeof JustifyContent>;\n\nexport const JustifyItems = {\n start: 'start',\n end: 'end',\n center: 'center',\n stretch: 'stretch',\n} as const;\nexport type JustifyItems = ValueOf<typeof JustifyItems>;\n\nexport interface LayoutProps {\n /** When used in a flex layout, specifies how the element will grow or shrink to fit the space available. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex\">MDN</a>. */\n flex?: string;\n /** When used in a flex layout, specifies how the element will grow to fit the space available. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow\">MDN</a>. */\n flexGrow?: number;\n /** When used in a flex layout, specifies how the element will shrink to fit the space available. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-shrink\">MDN</a>. */\n flexShrink?: number;\n /** When used in a flex layout, specifies the initial main size of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex_basis\">MDN</a>. */\n flexBasis?: string;\n /** Overrides the alignItems property of a flex or grid container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-self\">MDN</a>. */\n alignSelf?: AlignSelf;\n /** Specifies how the element is justified inside a flex or grid container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-self\">MDN</a>. */\n justifySelf?: string;\n /** The layout order for the element within a flex or grid container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/order\">MDN</a>. */\n order?: number;\n /** When used in a grid layout, specifies the named grid area that the element should be placed in within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-area\">MDN</a>. */\n gridArea?: string;\n /** When used in a grid layout, specifies the column the element should be placed in within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column\">MDN</a>. */\n gridColumn?: string;\n /** When used in a grid layout, specifies the row the element should be placed in within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row\">MDN</a>. */\n gridRow?: string;\n /** When used in a grid layout, specifies the starting column to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start\">MDN</a>. */\n gridColumnStart?: string;\n /** When used in a grid layout, specifies the ending column to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end\">MDN</a>. */\n gridColumnEnd?: string;\n /** When used in a grid layout, specifies the starting row to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start\">MDN</a>. */\n gridRowStart?: string;\n /** When used in a grid layout, specifies the ending row to span within the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end\">MDN</a>. */\n gridRowEnd?: string;\n}\n\nexport interface SpacingProps {\n /** The margin for all four sides of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin\">MDN</a>. */\n margin?: string;\n /** The margin for the bottom side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-bottom\">MDN</a>. */\n marginBottom?: string;\n /** The margin for the left side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-left\">MDN</a>. */\n marginLeft?: string;\n /** The margin for the right side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-right\">MDN</a>. */\n marginRight?: string;\n /** The margin for the top side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/margin-top\">MDN</a>. */\n marginTop?: string;\n}\n\nexport interface SizingProps {\n /** The height of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/height\">MDN</a>. */\n height?: string | number;\n /** The maximum height of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/max-height\">MDN</a>. */\n maxHeight?: string;\n /** The maximum width of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/max-width\">MDN</a>. */\n maxWidth?: string;\n /** The minimum height of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/min-height\">MDN</a>. */\n minHeight?: string;\n /** The minimum width of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/min-width\">MDN</a>. */\n minWidth?: string;\n /** The width of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/width\">MDN</a>. */\n width?: string | number;\n}\n\nexport interface PositioningProps {\n /** Specifies how the element is positioned. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/position\">MDN</a>. */\n position?: string;\n /** The top position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/top\">MDN</a>. */\n top?: string;\n /** The bottom position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/bottom\">MDN</a>. */\n bottom?: string;\n /** The left position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/left\">MDN</a>. Consider using start instead for RTL support. */\n left?: string;\n /** The right position for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/right\">MDN</a>. Consider using start instead for RTL support. */\n right?: string;\n /** The stacking order for the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/z-index\">MDN</a>. */\n zIndex?: string;\n}\n\nexport interface BorderProps {\n /** The background shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. Component properties not set in the background shorthand property value declaration are set to their default values. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background\">MDN</a>. */\n background?: string;\n /** The background-color CSS property sets the background color of an element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/background-color\">MDN</a>. */\n backgroundColor?: string;\n /** The border shorthand CSS property sets an element's border. It sets the values of border-width, border-style, and border-color. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border\">MDN</a>. */\n border?: string;\n /** The border-top CSS property sets all the properties of an element's top border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-top\">MDN</a>. */\n borderTop?: string;\n /** The border-top CSS property sets all the properties of an element's bottom border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom\">MDN</a>. */\n borderBottom?: string;\n /** The border-top CSS property sets all the properties of an element's left border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-left\">MDN</a>. Consider using start instead for RTL support. */\n borderLeft?: string;\n /** The border-top CSS property sets all the properties of an element's right border. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-right\">MDN</a>. Consider using start instead for RTL support. */\n borderRight?: string;\n /** The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius\">MDN</a>. */\n borderRadius?: string;\n /** The box-shadow CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow\">MDN</a>. */\n boxShadow?: string;\n}\n\nexport interface FlexLayoutProps {\n /** The distribution of space around child items along the cross axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-content\">MDN</a>. */\n alignContent?: AlignContent;\n /** The alignment of children within their container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-items\">MDN</a>. */\n alignItems?: AlignItems;\n /** The direction in which to layout children. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction\">MDN</a>. */\n flexDirection?: FlexDirection;\n /** Whether to wrap items onto multiple lines. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap\">MDN</a>. */\n flexWrap?: FlexWrap;\n /** The space to display between both rows and columns. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/gap\">MDN</a>. */\n gap?: string;\n /** Whether the box is displayed inline or not. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/display\">MDN</a>. */\n inline?: boolean;\n /** The distribution of space around items along the main axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content\">MDN</a>. */\n justifyContent?: JustifyContent;\n}\n\nexport interface GridLayoutProps {\n /** The distribution of space around child items along the cross axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-content\">MDN</a>. */\n alignContent?: AlignContent;\n /** The alignment of children within their container. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/align-items\">MDN</a>. */\n alignItems?: AlignItems;\n /** The space to display between both rows and columns. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/gap\">MDN</a>. */\n gap?: string;\n /** Defines the size of implicitly generated columns. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns\">MDN</a>. */\n gridAutoColumns?: string;\n /** Defines the size of implicitly generated rows. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows\">MDN</a>. */\n gridAutoRows?: string;\n /** Defines named grid areas. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-areas\">MDN</a>. */\n gridTemplateAreas?: string;\n /** Defines the sizes of each column in the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns\">MDN</a>. */\n gridTemplateColumns?: string;\n /** Defines the sizes of each row in the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows\">MDN</a>. */\n gridTemplateRows?: string;\n /** Whether the box is displayed inline or not. */\n inline?: boolean;\n /** The distribution of space around items along the main axis. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content\">MDN</a>. */\n justifyContent?: JustifyContent;\n /** Defines the default justifySelf for all items in the grid. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/justify-items\">MDN</a>. */\n justifyItems?: JustifyItems;\n}\n\nexport interface StylingProps extends LayoutProps, SpacingProps, SizingProps, PositioningProps {}\n\nexport interface InternalSpacingProps {\n /** The padding for all four sides of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding\">MDN</a>. */\n padding?: string;\n /** The padding for the bottom side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-bottom\">MDN</a>. */\n paddingBottom?: string;\n /** The padding for the left side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-left\">MDN</a>. */\n paddingLeft?: string;\n /** The padding for the right side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-right\">MDN</a>. */\n paddingRight?: string;\n /** The padding for the top side of the element. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/padding-top\">MDN</a>. */\n paddingTop?: string;\n}\nexport interface ContainerProps\n extends Omit<FlexLayoutProps, 'inline'>,\n Omit<GridLayoutProps, 'inline'>,\n SpacingProps,\n SizingProps,\n PositioningProps,\n BorderProps,\n InternalSpacingProps {\n /** Sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex. See <a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS/display\">MDN</a>. */\n display?: 'block' | 'inline' | 'inline-block' | 'flex' | 'inline-flex' | 'grid' | 'inline-grid' | 'inherit';\n}\n\nexport const getContainerProps = (props: ContainerProps) => ({\n ...(props.alignContent && { alignContent: props.alignContent }),\n ...(props.alignItems && { alignItems: props.alignItems }),\n ...(props.bottom && { bottom: props.bottom }),\n ...(props.flexDirection && { flexDirection: props.flexDirection }),\n ...(props.flexWrap && { flexWrap: props.flexWrap }),\n ...(props.gap && { gap: props.gap }),\n ...(props.gridAutoColumns && { gridAutoColumns: props.gridAutoColumns }),\n ...(props.gridAutoRows && { gridAutoRows: props.gridAutoRows }),\n ...(props.gridTemplateAreas && { gridTemplateAreas: props.gridTemplateAreas }),\n ...(props.gridTemplateColumns && { gridTemplateColumns: props.gridTemplateColumns }),\n ...(props.gridTemplateRows && { gridTemplateRows: props.gridTemplateRows }),\n ...(props.height && { height: props.height }),\n ...(props.justifyContent && { justifyContent: props.justifyContent }),\n ...(props.justifyItems && { justifyItems: props.justifyItems }),\n ...(props.left && { left: props.left }),\n ...(props.margin && { margin: props.margin }),\n ...(props.marginBottom && { marginBottom: props.marginBottom }),\n ...(props.marginLeft && { marginLeft: props.marginLeft }),\n ...(props.marginRight && { marginRight: props.marginRight }),\n ...(props.marginTop && { marginTop: props.marginTop }),\n ...(props.maxHeight && { maxHeight: props.maxHeight }),\n ...(props.maxWidth && { maxWidth: props.maxWidth }),\n ...(props.minHeight && { minHeight: props.minHeight }),\n ...(props.minWidth && { minWidth: props.minWidth }),\n ...(props.padding && { padding: props.padding }),\n ...(props.paddingBottom && { paddingBottom: props.paddingBottom }),\n ...(props.paddingLeft && { paddingLeft: props.paddingLeft }),\n ...(props.paddingRight && { paddingRight: props.paddingRight }),\n ...(props.paddingTop && { paddingTop: props.paddingTop }),\n ...(props.position && { position: props.position }),\n ...(props.right && { right: props.right }),\n ...(props.top && { top: props.top }),\n ...(props.width && { width: props.width }),\n ...(props.zIndex && { zIndex: props.zIndex }),\n});\n","export const getCssStyle = (element: Element, prop: string) => {\n return window.getComputedStyle(element, null).getPropertyValue(prop);\n};\n\nexport const getCanvasFont = (el = document.body) => {\n const fontWeight = getCssStyle(el, 'font-weight') || 'normal';\n const fontSize = getCssStyle(el, 'font-size') || '16px';\n const fontFamily = getCssStyle(el, 'font-family') || 'Times New Roman';\n\n return `${fontWeight} ${fontSize} ${fontFamily}`;\n};\n\nexport const getTextWidth: (text: string, font: string, angle?: number) => number = (text, font, angle = 0) => {\n const canvas = document.createElement('canvas');\n const context = canvas.getContext('2d');\n context!.font = font;\n const metrics = context!.measureText(text);\n\n const radians = angle * (Math.PI / 180);\n const cosTheta = Math.abs(Math.cos(radians));\n const sinTheta = Math.abs(Math.sin(radians));\n\n const boundingBoxHeight = metrics.width * sinTheta + 15 * cosTheta;\n // console.log(text, metrics.width, boundingBoxHeight);\n\n // return metrics.width;\n return boundingBoxHeight;\n};\n\nexport const getMaxTextWidth: (texts: string[], font: string, angle?: number) => number = (texts, font, angle = 0) => {\n return Math.max(...texts.map((text) => getTextWidth(text, font, angle)));\n};\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useLocale } from './context';\nimport { useMemo } from 'react';\n\n/**\n * Provides localized list formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the list formatter for performance.\n * @param options - Formatting options.\n */\nexport function useListFormatter(options: Intl.ListFormatOptions = {}): Intl.ListFormat {\n let { locale } = useLocale();\n return useMemo(() => new Intl.ListFormat(locale, options), [locale, options]);\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nlet formatterCache = new Map<string, Intl.DateTimeFormat>();\n\ninterface ResolvedDateTimeFormatOptions extends Intl.ResolvedDateTimeFormatOptions {\n hourCycle?: Intl.DateTimeFormatOptions['hourCycle'];\n}\n\ninterface DateRangeFormatPart extends Intl.DateTimeFormatPart {\n source: 'startRange' | 'endRange' | 'shared';\n}\n\n/** A wrapper around Intl.DateTimeFormat that fixes various browser bugs, and polyfills new features. */\nexport class DateFormatter implements Intl.DateTimeFormat {\n private formatter: Intl.DateTimeFormat;\n private options: Intl.DateTimeFormatOptions;\n private resolvedHourCycle: Intl.DateTimeFormatOptions['hourCycle'];\n\n constructor(locale: string, options: Intl.DateTimeFormatOptions = {}) {\n this.formatter = getCachedDateFormatter(locale, options);\n this.options = options;\n }\n\n /** Formats a date as a string according to the locale and format options passed to the constructor. */\n format(value: Date): string {\n return this.formatter.format(value);\n }\n\n /** Formats a date to an array of parts such as separators, numbers, punctuation, and more. */\n formatToParts(value: Date): Intl.DateTimeFormatPart[] {\n return this.formatter.formatToParts(value);\n }\n\n /** Formats a date range as a string. */\n formatRange(start: Date, end: Date): string {\n // @ts-ignore\n if (typeof this.formatter.formatRange === 'function') {\n // @ts-ignore\n return this.formatter.formatRange(start, end);\n }\n\n if (end < start) {\n throw new RangeError('End date must be >= start date');\n }\n\n // Very basic fallback for old browsers.\n return `${this.formatter.format(start)} – ${this.formatter.format(end)}`;\n }\n\n /** Formats a date range as an array of parts. */\n formatRangeToParts(start: Date, end: Date): DateRangeFormatPart[] {\n // @ts-ignore\n if (typeof this.formatter.formatRangeToParts === 'function') {\n // @ts-ignore\n return this.formatter.formatRangeToParts(start, end);\n }\n\n if (end < start) {\n throw new RangeError('End date must be >= start date');\n }\n\n let startParts = this.formatter.formatToParts(start);\n let endParts = this.formatter.formatToParts(end);\n return [\n ...startParts.map((p) => ({ ...p, source: 'startRange' } as DateRangeFormatPart)),\n { type: 'literal', value: ' – ', source: 'shared' },\n ...endParts.map((p) => ({ ...p, source: 'endRange' } as DateRangeFormatPart)),\n ];\n }\n\n /** Returns the resolved formatting options based on the values passed to the constructor. */\n resolvedOptions(): ResolvedDateTimeFormatOptions {\n let resolvedOptions = this.formatter.resolvedOptions() as ResolvedDateTimeFormatOptions;\n if (hasBuggyResolvedHourCycle()) {\n if (!this.resolvedHourCycle) {\n this.resolvedHourCycle = getResolvedHourCycle(resolvedOptions.locale, this.options);\n }\n resolvedOptions.hourCycle = this.resolvedHourCycle;\n resolvedOptions.hour12 = this.resolvedHourCycle === 'h11' || this.resolvedHourCycle === 'h12';\n }\n\n // Safari uses a different name for the Ethiopic (Amete Alem) calendar.\n // https://bugs.webkit.org/show_bug.cgi?id=241564\n if (resolvedOptions.calendar === 'ethiopic-amete-alem') {\n resolvedOptions.calendar = 'ethioaa';\n }\n\n return resolvedOptions;\n }\n}\n\n// There are multiple bugs involving the hour12 and hourCycle options in various browser engines.\n// - Chrome [1] (and the ECMA 402 spec [2]) resolve hour12: false in English and other locales to h24 (24:00 - 23:59)\n// rather than h23 (00:00 - 23:59). Same can happen with hour12: true in French, which Chrome resolves to h11 (00:00 - 11:59)\n// rather than h12 (12:00 - 11:59).\n// - WebKit returns an incorrect hourCycle resolved option in the French locale due to incorrect parsing of 'h' literal\n// in the resolved pattern. It also formats incorrectly when specifying the hourCycle option for the same reason. [3]\n// [1] https://bugs.chromium.org/p/chromium/issues/detail?id=1045791\n// [2] https://github.com/tc39/ecma402/issues/402\n// [3] https://bugs.webkit.org/show_bug.cgi?id=229313\n\n// https://github.com/unicode-org/cldr/blob/018b55eff7ceb389c7e3fc44e2f657eae3b10b38/common/supplemental/supplementalData.xml#L4774-L4802\nconst hour12Preferences = {\n true: {\n // Only Japanese uses the h11 style for 12 hour time. All others use h12.\n ja: 'h11',\n },\n false: {\n // All locales use h23 for 24 hour time. None use h24.\n },\n};\n\nfunction getCachedDateFormatter(locale: string, options: Intl.DateTimeFormatOptions = {}): Intl.DateTimeFormat {\n // Work around buggy hour12 behavior in Chrome / ECMA 402 spec by using hourCycle instead.\n // Only apply the workaround if the issue is detected, because the hourCycle option is buggy in Safari.\n if (typeof options.hour12 === 'boolean' && hasBuggyHour12Behavior()) {\n options = { ...options };\n let pref = hour12Preferences[String(options.hour12)][locale.split('-')[0]];\n let defaultHourCycle = options.hour12 ? 'h12' : 'h23';\n options.hourCycle = pref ?? defaultHourCycle;\n delete options.hour12;\n }\n\n let cacheKey =\n locale +\n (options\n ? Object.entries(options)\n .sort((a, b) => (a[0] < b[0] ? -1 : 1))\n .join()\n : '');\n if (formatterCache.has(cacheKey)) {\n return formatterCache.get(cacheKey)!;\n }\n\n let numberFormatter = new Intl.DateTimeFormat(locale, options);\n formatterCache.set(cacheKey, numberFormatter);\n return numberFormatter;\n}\n\nlet _hasBuggyHour12Behavior: boolean | null = null;\nfunction hasBuggyHour12Behavior() {\n if (_hasBuggyHour12Behavior == null) {\n _hasBuggyHour12Behavior =\n new Intl.DateTimeFormat('en-US', {\n hour: 'numeric',\n hour12: false,\n }).format(new Date(2020, 2, 3, 0)) === '24';\n }\n\n return _hasBuggyHour12Behavior;\n}\n\nlet _hasBuggyResolvedHourCycle: boolean | null = null;\nfunction hasBuggyResolvedHourCycle() {\n if (_hasBuggyResolvedHourCycle == null) {\n _hasBuggyResolvedHourCycle =\n (\n new Intl.DateTimeFormat('fr', {\n hour: 'numeric',\n hour12: false,\n }).resolvedOptions() as ResolvedDateTimeFormatOptions\n ).hourCycle === 'h12';\n }\n\n return _hasBuggyResolvedHourCycle;\n}\n\nfunction getResolvedHourCycle(locale: string, options: Intl.DateTimeFormatOptions) {\n if (!options.timeStyle && !options.hour) {\n return undefined;\n }\n\n // Work around buggy results in resolved hourCycle and hour12 options in WebKit.\n // Format the minimum possible hour and maximum possible hour in a day and parse the results.\n locale = locale.replace(/(-u-)?-nu-[a-zA-Z0-9]+/, '');\n locale += (locale.includes('-u-') ? '' : '-u') + '-nu-latn';\n let formatter = getCachedDateFormatter(locale, {\n ...options,\n timeZone: undefined, // use local timezone\n });\n\n let min = parseInt(formatter.formatToParts(new Date(2020, 2, 3, 0)).find((p) => p.type === 'hour')!.value, 10);\n let max = parseInt(formatter.formatToParts(new Date(2020, 2, 3, 23)).find((p) => p.type === 'hour')!.value, 10);\n\n if (min === 0 && max === 23) {\n return 'h23';\n }\n\n if (min === 24 && max === 23) {\n return 'h24';\n }\n\n if (min === 0 && max === 11) {\n return 'h11';\n }\n\n if (min === 12 && max === 11) {\n return 'h12';\n }\n\n throw new Error('Unexpected hour cycle result');\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useRef } from 'react';\n\nexport function useDeepMemo<T>(value: T, isEqual: (a: T, b: T) => boolean): T {\n // Using a ref during render is ok here because it's only an optimization – both values are equivalent.\n // If a render is thrown away, it'll still work the same no matter if the next render is the same or not.\n let lastValue = useRef<T | null>(null);\n if (value && lastValue.current && isEqual(value, lastValue.current)) {\n value = lastValue.current;\n }\n\n lastValue.current = value;\n return value;\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { DateFormatter } from '../../internationalized/date';\nimport { useDeepMemo } from '../utils';\nimport { useLocale } from './context';\nimport { useMemo } from 'react';\n\nexport interface DateFormatterOptions extends Intl.DateTimeFormatOptions {\n calendar?: string;\n}\n\n/**\n * Provides localized date formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the date formatter for performance.\n * @param options - Formatting options.\n */\nexport function useDateFormatter(options?: DateFormatterOptions): DateFormatter {\n // Reuse last options object if it is shallowly equal, which allows the useMemo result to also be reused.\n options = useDeepMemo(options ?? {}, isEqual);\n let { locale } = useLocale();\n return useMemo(() => new DateFormatter(locale, options), [locale, options]);\n}\n\nfunction isEqual(a: DateFormatterOptions, b: DateFormatterOptions) {\n if (a === b) {\n return true;\n }\n\n let aKeys = Object.keys(a);\n let bKeys = Object.keys(b);\n if (aKeys.length !== bKeys.length) {\n return false;\n }\n\n for (let key of aKeys) {\n if (b[key] !== a[key]) {\n return false;\n }\n }\n\n return true;\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useLocale } from './context';\n\nlet cache = new Map<string, Intl.Collator>();\n\n/**\n * Provides localized string collation for the current locale. Automatically updates when the locale changes,\n * and handles caching of the collator for performance.\n * @param options - Collator options.\n */\nexport function useCollator(options?: Intl.CollatorOptions): Intl.Collator {\n let { locale } = useLocale();\n\n let cacheKey =\n locale +\n (options\n ? Object.entries(options)\n .sort((a, b) => (a[0] < b[0] ? -1 : 1))\n .join()\n : '');\n if (cache.has(cacheKey)) {\n return cache.get(cacheKey)!;\n }\n\n let formatter = new Intl.Collator(locale, options);\n cache.set(cacheKey, formatter);\n return formatter;\n}\n","/* eslint-disable prefer-const */\n// @ts-nocheck\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport { useCallback, useMemo } from 'react';\nimport { useCollator } from './useCollator';\n\nexport interface Filter {\n /** Returns whether a string starts with a given substring. */\n startsWith(string: string, substring: string): boolean;\n /** Returns whether a string ends with a given substring. */\n endsWith(string: string, substring: string): boolean;\n /** Returns whether a string contains a given substring. */\n contains(string: string, substring: string): boolean;\n}\n\n/**\n * Provides localized string search functionality that is useful for filtering or matching items\n * in a list. Options can be provided to adjust the sensitivity to case, diacritics, and other parameters.\n */\nexport function useFilter(options?: Intl.CollatorOptions): Filter {\n let collator = useCollator({\n usage: 'search',\n ...options,\n });\n\n // TODO(later): these methods don't currently support the ignorePunctuation option.\n let startsWith = useCallback(\n (string, substring) => {\n if (substring.length === 0) {\n return true;\n }\n\n // Normalize both strings so we can slice safely\n // TODO: take into account the ignorePunctuation option as well...\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(0, substring.length), substring) === 0;\n },\n [collator]\n );\n\n let endsWith = useCallback(\n (string, substring) => {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(-substring.length), substring) === 0;\n },\n [collator]\n );\n\n let contains = useCallback(\n (string, substring) => {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n\n let scan = 0;\n let sliceLen = substring.length;\n for (; scan + sliceLen <= string.length; scan++) {\n let slice = string.slice(scan, scan + sliceLen);\n if (collator.compare(substring, slice) === 0) {\n return true;\n }\n }\n\n return false;\n },\n [collator]\n );\n\n return useMemo(\n () => ({\n startsWith,\n endsWith,\n contains,\n }),\n [startsWith, endsWith, contains]\n );\n}\n"],"names":["AlignSelf","auto","normal","start","end","center","baseline","stretch","JustifySelf","left","right","AlignContent","AlignItems","FlexDirection","row","column","FlexWrap","nowrap","wrap","JustifyContent","JustifyItems","getContainerProps","props","_objectSpread","alignContent","alignItems","bottom","flexDirection","flexWrap","gap","gridAutoColumns","gridAutoRows","gridTemplateAreas","gridTemplateColumns","gridTemplateRows","height","justifyContent","justifyItems","margin","marginBottom","marginLeft","marginRight","marginTop","maxHeight","maxWidth","minHeight","minWidth","padding","paddingBottom","paddingLeft","paddingRight","paddingTop","position","top","width","zIndex","getCssStyle","element","prop","window","getComputedStyle","getPropertyValue","getCanvasFont","el","arguments","length","undefined","document","body","fontWeight","fontSize","fontFamily","getTextWidth","text","font","angle","canvas","createElement","context","getContext","metrics","measureText","radians","Math","PI","cosTheta","abs","cos","sinTheta","sin","boundingBoxHeight","getMaxTextWidth","texts","max","map","useListFormatter","options","locale","useLocale","useMemo","Intl","ListFormat","formatterCache","Map","DateFormatter","constructor","_defineProperty","formatter","getCachedDateFormatter","format","value","formatToParts","formatRange","RangeError","formatRangeToParts","startParts","endParts","p","source","type","resolvedOptions","hasBuggyResolvedHourCycle","resolvedHourCycle","getResolvedHourCycle","hourCycle","hour12","calendar","hour12Preferences","true","ja","false","hasBuggyHour12Behavior","pref","String","split","defaultHourCycle","cacheKey","Object","entries","sort","a","b","join","has","get","numberFormatter","DateTimeFormat","set","_hasBuggyHour12Behavior","hour","Date","_hasBuggyResolvedHourCycle","timeStyle","replace","includes","timeZone","min","parseInt","find","Error","useDeepMemo","isEqual","lastValue","useRef","current","useDateFormatter","_options","aKeys","keys","bKeys","key","cache","useCollator","Collator","useFilter","collator","usage","startsWith","useCallback","string","substring","normalize","compare","slice","endsWith","contains","scan","sliceLen"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"version": "version-changelog ../../CHANGELOG.md && changelog-verify ../../CHANGELOG.md && git add ../../CHANGELOG.md"
|
|
34
34
|
},
|
|
35
35
|
"types": "index.d.ts",
|
|
36
|
-
"version": "11.
|
|
36
|
+
"version": "11.7.0-muiv5",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@react-spring/web": "^9.7.1",
|
|
39
39
|
"classnames": "^2.3.1",
|
|
@@ -95,10 +95,10 @@
|
|
|
95
95
|
"version-changelog": "^3.1.1"
|
|
96
96
|
},
|
|
97
97
|
"peerDependencies": {
|
|
98
|
-
"@redsift/icons": "^11.
|
|
98
|
+
"@redsift/icons": "^11.7.0-0",
|
|
99
99
|
"react": ">=17",
|
|
100
100
|
"react-dom": ">=17",
|
|
101
101
|
"styled-components": "^5.3.5"
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "e856e8e96da93e98c9fe870a76a502616d8fe65c"
|
|
104
104
|
}
|