@redsift/design-system 11.8.1-muiv5 → 11.8.2-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/index.d.ts +55 -18
- 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: Comp<C, any>
|
|
469
|
+
declare const isComponent: <C>(component: string | Comp<C, any>) => (instance: ReactNode) => instance is React$1.ReactElement<any, string | React$1.JSXElementConstructor<any>>;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
472
|
* Return components based on list of predicates.
|
|
@@ -2387,9 +2387,9 @@ interface UseSideNavigationMenuBarProps {
|
|
|
2387
2387
|
isActive?: (href: string) => boolean;
|
|
2388
2388
|
canHaveMultipleMenuOpenAtOnce?: boolean;
|
|
2389
2389
|
}
|
|
2390
|
-
declare const useSideNavigationMenuBar: ({ items, isActive, canHaveMultipleMenuOpenAtOnce, }: UseSideNavigationMenuBarProps) => Omit<SideNavigationMenuBarProps,
|
|
2390
|
+
declare const useSideNavigationMenuBar: ({ items, isActive, canHaveMultipleMenuOpenAtOnce, }: UseSideNavigationMenuBarProps) => Omit<SideNavigationMenuBarProps, 'ref'>;
|
|
2391
2391
|
|
|
2392
|
-
declare const useAppSidePanel: ({ items, isActive, canHaveMultipleMenuOpenAtOnce, }: UseSideNavigationMenuBarProps) => Omit<AppSidePanelProps,
|
|
2392
|
+
declare const useAppSidePanel: ({ items, isActive, canHaveMultipleMenuOpenAtOnce, }: UseSideNavigationMenuBarProps) => Omit<AppSidePanelProps, 'ref'>;
|
|
2393
2393
|
|
|
2394
2394
|
/**
|
|
2395
2395
|
* Context props.
|
|
@@ -2582,7 +2582,17 @@ type StyledButtonProps = ButtonProps & {
|
|
|
2582
2582
|
/**
|
|
2583
2583
|
* Component style.
|
|
2584
2584
|
*/
|
|
2585
|
-
declare const StyledButton: styled_components.StyledComponent<"button", any,
|
|
2585
|
+
declare const StyledButton: styled_components.StyledComponent<"button", any, ButtonProps & {
|
|
2586
|
+
$color: string | undefined;
|
|
2587
|
+
$fullWidth?: boolean | undefined;
|
|
2588
|
+
$isActive: boolean | undefined;
|
|
2589
|
+
$isDisabled: boolean | undefined;
|
|
2590
|
+
$isGradient: boolean;
|
|
2591
|
+
$isHovered: boolean | undefined;
|
|
2592
|
+
$isLoading: boolean | undefined;
|
|
2593
|
+
$theme: Theme | undefined;
|
|
2594
|
+
$variant: ButtonVariant | undefined;
|
|
2595
|
+
}, never>;
|
|
2586
2596
|
|
|
2587
2597
|
/**
|
|
2588
2598
|
* The Button is a semantic button that looks like a button.
|
|
@@ -2630,7 +2640,12 @@ type StyledLinkProps = Omit<LinkProps, 'isDisabled'> & {
|
|
|
2630
2640
|
/**
|
|
2631
2641
|
* Component style.
|
|
2632
2642
|
*/
|
|
2633
|
-
declare const StyledLink: styled_components.StyledComponent<"a", any,
|
|
2643
|
+
declare const StyledLink: styled_components.StyledComponent<"a", any, Omit<LinkProps, "isDisabled"> & {
|
|
2644
|
+
$isDisabled: boolean | undefined;
|
|
2645
|
+
$color: (string & {}) | "radar" | NotificationsColorPalette | NeutralColorPalette | undefined;
|
|
2646
|
+
$theme: Theme | undefined;
|
|
2647
|
+
$hasIcons: boolean;
|
|
2648
|
+
}, never>;
|
|
2634
2649
|
|
|
2635
2650
|
/**
|
|
2636
2651
|
* The Link is a semantic link that looks like a link.
|
|
@@ -3496,13 +3511,13 @@ declare function useFocusOnListItem(props: {
|
|
|
3496
3511
|
declare function useFocusOnList(): UseFocusGroupProps;
|
|
3497
3512
|
|
|
3498
3513
|
declare const StyledGradientBorder: styled_components.StyledComponent<"div", any, {
|
|
3499
|
-
$borderRadius?: string;
|
|
3500
|
-
$color?: ButtonProps[
|
|
3501
|
-
$isActive?: ButtonProps[
|
|
3502
|
-
$isDisabled?: ButtonProps[
|
|
3503
|
-
$isHovered?: ButtonProps[
|
|
3504
|
-
$theme?: ButtonProps[
|
|
3505
|
-
width?: string;
|
|
3514
|
+
$borderRadius?: string | undefined;
|
|
3515
|
+
$color?: ButtonProps['color'];
|
|
3516
|
+
$isActive?: ButtonProps['isActive'];
|
|
3517
|
+
$isDisabled?: ButtonProps['isDisabled'];
|
|
3518
|
+
$isHovered?: ButtonProps['isHovered'];
|
|
3519
|
+
$theme?: ButtonProps['theme'];
|
|
3520
|
+
width?: string | undefined;
|
|
3506
3521
|
}, never>;
|
|
3507
3522
|
|
|
3508
3523
|
/**
|
|
@@ -3662,11 +3677,11 @@ type StyledListboxProps = Omit<ListboxProps, 'onChange'> & {
|
|
|
3662
3677
|
|
|
3663
3678
|
declare const ActiveDescendantListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
|
|
3664
3679
|
context: ListboxContextProps;
|
|
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" | "
|
|
3680
|
+
}, "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" | "values" | "defaultValues" | "isReadOnly" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "listRole" | "activedescendant" | "maxOptionsLength" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3666
3681
|
|
|
3667
3682
|
declare const RovingTabindexListbox: React$1.ForwardRefExoticComponent<Pick<Omit<ListboxProps, "onChange"> & {
|
|
3668
3683
|
context: ListboxContextProps;
|
|
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" | "
|
|
3684
|
+
}, "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" | "values" | "defaultValues" | "isReadOnly" | "context" | "focusOnClick" | "focusOnInit" | "loopAround" | "focusType" | "listRole" | "activedescendant" | "maxOptionsLength" | "selectionMode"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3670
3685
|
|
|
3671
3686
|
/**
|
|
3672
3687
|
* The Listbox component.
|
|
@@ -3743,7 +3758,17 @@ type StyledItemProps = Omit<ItemProps, 'color' | 'onClick' | 'value'> & {
|
|
|
3743
3758
|
/**
|
|
3744
3759
|
* Component style.
|
|
3745
3760
|
*/
|
|
3746
|
-
declare const StyledItem: styled_components.StyledComponent<"div", any,
|
|
3761
|
+
declare const StyledItem: styled_components.StyledComponent<"div", any, Omit<ItemProps, "color" | "onClick" | "value"> & {
|
|
3762
|
+
$borderRadius: string | undefined;
|
|
3763
|
+
$color: string | undefined;
|
|
3764
|
+
$hasBorder: boolean | undefined;
|
|
3765
|
+
$hasCheckbox: boolean | undefined;
|
|
3766
|
+
$isActive: boolean | undefined;
|
|
3767
|
+
$isDisabled: boolean | undefined;
|
|
3768
|
+
$isGradient: boolean;
|
|
3769
|
+
$isHovered: boolean | undefined;
|
|
3770
|
+
$theme: Theme | undefined;
|
|
3771
|
+
}, never>;
|
|
3747
3772
|
|
|
3748
3773
|
declare const RenderedListboxItem: Comp<Omit<ItemProps, 'value'> & Required<Pick<ItemProps, 'value'>>, HTMLElement>;
|
|
3749
3774
|
/**
|
|
@@ -3927,7 +3952,19 @@ type StyledTextFieldProps = Omit<TextFieldProps, 'color' | 'isColored' | 'isDisa
|
|
|
3927
3952
|
/**
|
|
3928
3953
|
* Component style.
|
|
3929
3954
|
*/
|
|
3930
|
-
declare const StyledTextField: styled_components.StyledComponent<"div", any,
|
|
3955
|
+
declare const StyledTextField: styled_components.StyledComponent<"div", any, Omit<TextFieldProps, "color" | "onChange" | "isInvalid" | "isRequired" | "isDisabled" | "isColored"> & {
|
|
3956
|
+
$color: string | undefined;
|
|
3957
|
+
$isGradient: boolean;
|
|
3958
|
+
$hasLeftIcon: boolean;
|
|
3959
|
+
$hasContent: boolean;
|
|
3960
|
+
$isDisabled: boolean | undefined;
|
|
3961
|
+
$isInvalid: boolean | undefined;
|
|
3962
|
+
$isFocused: boolean;
|
|
3963
|
+
$isFocusVisible: boolean;
|
|
3964
|
+
$isRequired: boolean | undefined;
|
|
3965
|
+
$theme: Theme | undefined;
|
|
3966
|
+
$variant: TextFieldVariant | undefined;
|
|
3967
|
+
}, never>;
|
|
3931
3968
|
|
|
3932
3969
|
/**
|
|
3933
3970
|
* The TextField component.
|
|
@@ -4442,10 +4479,10 @@ type StyledTextAreaProps = StyledTextFieldProps;
|
|
|
4442
4479
|
declare const TextArea: Comp<TextAreaProps, HTMLDivElement>;
|
|
4443
4480
|
|
|
4444
4481
|
declare const ThemeContext: React$1.Context<{
|
|
4445
|
-
theme?: Theme;
|
|
4482
|
+
theme?: Theme | undefined;
|
|
4446
4483
|
} | null>;
|
|
4447
4484
|
declare const ThemeProvider: React$1.Provider<{
|
|
4448
|
-
theme?: Theme;
|
|
4485
|
+
theme?: Theme | undefined;
|
|
4449
4486
|
} | null>;
|
|
4450
4487
|
|
|
4451
4488
|
declare function useTheme(theme?: Theme): Theme;
|
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.8.
|
|
36
|
+
"version": "11.8.2-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.8.0
|
|
98
|
+
"@redsift/icons": "^11.8.2-0",
|
|
99
99
|
"react": ">=17",
|
|
100
100
|
"react-dom": ">=17",
|
|
101
101
|
"styled-components": "^5.3.5"
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "10e950e0527e2dd7a3c8d3b9f970781a31313e71"
|
|
104
104
|
}
|