@learningpool/ui 1.11.0 → 1.11.2
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/components/atoms/Button/Button.d.ts +3 -3
- package/components/landmarks/Header/HeaderStyles.d.ts +10 -10
- package/components/navigation/Drawer/Drawer.d.ts +1 -1
- package/components/navigation/MobileNavigation/MobileNavigationAvatarStyles.d.ts +155 -153
- package/components/navigation/MobileNavigation/MobileNavigationDrawerStyles.d.ts +63 -61
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemFlyoutMenuStyles.d.ts +8 -8
- package/components/navigation/MobileNavigation/MobileNavigationItem/MobileNavigationItemStyles.d.ts +6 -6
- package/components/navigation/MobileNavigation/MobileNavigationSearchStyles.d.ts +51 -49
- package/components/navigation/MobileNavigation/MobileNavigationSearchStyles.js +1 -1
- package/components/navigation/MobileNavigation/MobileNavigationStyles.d.ts +18 -18
- package/components/navigation/VerticalNavigation/VerticalNavigationAvatarStyles.d.ts +156 -154
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemFlyoutMenuStyles.d.ts +8 -8
- package/components/navigation/VerticalNavigation/VerticalNavigationItem/VerticalNavigationItemStyles.d.ts +6 -6
- package/components/navigation/VerticalNavigation/VerticalNavigationStyles.d.ts +62 -60
- package/components/pages/ErrorPage/ErrorPageStyles.d.ts +5 -5
- package/components/stream/AppHub/AppHubCustomStyles.d.ts +9 -9
- package/components/stream/AppHub/AppHubProductStyles.d.ts +12 -12
- package/components/stream/AppHub/AppHubStyles.d.ts +9 -9
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
declare const Button: React.ForwardRefExoticComponent<
|
|
2
|
+
declare const Button: React.ForwardRefExoticComponent<Omit<{
|
|
3
3
|
children?: React.ReactNode;
|
|
4
4
|
classes?: Partial<import("@mui/material/Button").ButtonClasses> | undefined;
|
|
5
5
|
color?: "inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning" | undefined;
|
|
@@ -29,7 +29,7 @@ declare const Button: React.ForwardRefExoticComponent<Pick<{
|
|
|
29
29
|
tabIndex?: number | undefined;
|
|
30
30
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
31
31
|
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
32
|
-
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
32
|
+
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
33
33
|
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
34
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "tabIndex" | "color" | "children" | "sx" | "variant" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "href" | "size" | "startIcon">,
|
|
34
|
+
}, keyof import("@mui/material/OverridableComponent").CommonProps | "tabIndex" | "color" | "children" | "sx" | "variant" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "href" | "size" | "startIcon">, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
35
35
|
export default Button;
|
|
@@ -6,7 +6,7 @@ export declare const StyledPaper: import("@emotion/styled").StyledComponent<{
|
|
|
6
6
|
square?: boolean | undefined;
|
|
7
7
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
8
8
|
variant?: "outlined" | "elevation" | undefined;
|
|
9
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
9
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
10
10
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
11
11
|
}, keyof import("@mui/material/OverridableComponent").CommonProps | "children" | "sx" | "variant" | "square" | "elevation"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
12
12
|
export declare const StyledBreadcrumbs: import("@emotion/styled").StyledComponent<{
|
|
@@ -18,7 +18,7 @@ export declare const StyledBreadcrumbs: import("@emotion/styled").StyledComponen
|
|
|
18
18
|
maxItems?: number | undefined;
|
|
19
19
|
separator?: import("react").ReactNode;
|
|
20
20
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
21
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
21
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
22
22
|
ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
|
|
23
23
|
}, keyof import("@mui/material/OverridableComponent").CommonProps | "children" | "sx" | "separator" | "expandText" | "itemsAfterCollapse" | "itemsBeforeCollapse" | "maxItems"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
24
24
|
export declare const StyledHeaderPrimary: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material").Theme> & {
|
|
@@ -26,30 +26,30 @@ export declare const StyledHeaderPrimary: import("@emotion/styled").StyledCompon
|
|
|
26
26
|
component?: import("react").ElementType<any> | undefined;
|
|
27
27
|
ref?: import("react").Ref<unknown> | undefined;
|
|
28
28
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
29
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
29
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
30
30
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
31
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
31
|
+
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
32
32
|
export declare const StyledHeaderSecondary: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material").Theme> & {
|
|
33
33
|
children?: import("react").ReactNode;
|
|
34
34
|
component?: import("react").ElementType<any> | undefined;
|
|
35
35
|
ref?: import("react").Ref<unknown> | undefined;
|
|
36
36
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
37
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
37
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
38
38
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
39
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
39
|
+
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
40
40
|
export declare const StyledAdditionalButtonsContainer: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material").Theme> & {
|
|
41
41
|
children?: import("react").ReactNode;
|
|
42
42
|
component?: import("react").ElementType<any> | undefined;
|
|
43
43
|
ref?: import("react").Ref<unknown> | undefined;
|
|
44
44
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
45
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
45
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
46
46
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
47
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
47
|
+
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
48
48
|
export declare const StyledBox: import("@emotion/styled").StyledComponent<import("@mui/system").SystemProps<import("@mui/material").Theme> & {
|
|
49
49
|
children?: import("react").ReactNode;
|
|
50
50
|
component?: import("react").ElementType<any> | undefined;
|
|
51
51
|
ref?: import("react").Ref<unknown> | undefined;
|
|
52
52
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
53
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
53
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
54
54
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
55
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
55
|
+
}, keyof import("@mui/material/OverridableComponent").CommonProps | "ref" | "children" | "sx" | "component" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint")> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
@@ -3,5 +3,5 @@ import { DrawerProps } from '@mui/material/Drawer';
|
|
|
3
3
|
interface IDrawerProps extends DrawerProps {
|
|
4
4
|
component?: string | JSX.Element;
|
|
5
5
|
}
|
|
6
|
-
declare const Drawer: React.ForwardRefExoticComponent<
|
|
6
|
+
declare const Drawer: React.ForwardRefExoticComponent<Omit<IDrawerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
7
7
|
export default Drawer;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
/// <reference types="trusted-types" />
|
|
2
4
|
export declare const StyledSwipeableAvatar: import("@emotion/styled").StyledComponent<import("@mui/material").DrawerProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
3
5
|
export declare const StyledBox: import("@emotion/styled").StyledComponent<import("@react-spring/web").AnimatedProps<{
|
|
4
6
|
className?: string | undefined;
|
|
@@ -880,57 +882,57 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
|
|
|
880
882
|
unselectable?: "on" | "off" | undefined;
|
|
881
883
|
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
882
884
|
is?: string | undefined;
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
885
|
+
"aria-activedescendant"?: string | undefined;
|
|
886
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
887
|
+
"aria-autocomplete"?: "none" | "list" | "both" | "inline" | undefined;
|
|
888
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
889
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
890
|
+
"aria-colcount"?: number | undefined;
|
|
891
|
+
"aria-colindex"?: number | undefined;
|
|
892
|
+
"aria-colspan"?: number | undefined;
|
|
893
|
+
"aria-controls"?: string | undefined;
|
|
894
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "false" | "true" | "location" | "date" | undefined;
|
|
895
|
+
"aria-describedby"?: string | undefined;
|
|
896
|
+
"aria-details"?: string | undefined;
|
|
897
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
898
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
899
|
+
"aria-errormessage"?: string | undefined;
|
|
900
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
901
|
+
"aria-flowto"?: string | undefined;
|
|
902
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
903
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
|
|
904
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
905
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
906
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
907
|
+
"aria-label"?: string | undefined;
|
|
908
|
+
"aria-labelledby"?: string | undefined;
|
|
909
|
+
"aria-level"?: number | undefined;
|
|
910
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
911
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
912
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
913
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
914
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
915
|
+
"aria-owns"?: string | undefined;
|
|
916
|
+
"aria-placeholder"?: string | undefined;
|
|
917
|
+
"aria-posinset"?: number | undefined;
|
|
918
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
919
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
920
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
921
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
922
|
+
"aria-roledescription"?: string | undefined;
|
|
923
|
+
"aria-rowcount"?: number | undefined;
|
|
924
|
+
"aria-rowindex"?: number | undefined;
|
|
925
|
+
"aria-rowspan"?: number | undefined;
|
|
926
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
927
|
+
"aria-setsize"?: number | undefined;
|
|
928
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
929
|
+
"aria-valuemax"?: number | undefined;
|
|
930
|
+
"aria-valuemin"?: number | undefined;
|
|
931
|
+
"aria-valuenow"?: number | undefined;
|
|
932
|
+
"aria-valuetext"?: string | undefined;
|
|
931
933
|
children?: import("react").ReactNode;
|
|
932
934
|
dangerouslySetInnerHTML?: {
|
|
933
|
-
__html: string;
|
|
935
|
+
__html: string | TrustedHTML;
|
|
934
936
|
} | undefined;
|
|
935
937
|
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
936
938
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
@@ -1978,57 +1980,57 @@ export declare const StyledBoxProfile: import("@emotion/styled").StyledComponent
|
|
|
1978
1980
|
unselectable?: "on" | "off" | undefined;
|
|
1979
1981
|
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
1980
1982
|
is?: string | undefined;
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
1983
|
+
"aria-activedescendant"?: string | undefined;
|
|
1984
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
1985
|
+
"aria-autocomplete"?: "none" | "list" | "both" | "inline" | undefined;
|
|
1986
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
1987
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
1988
|
+
"aria-colcount"?: number | undefined;
|
|
1989
|
+
"aria-colindex"?: number | undefined;
|
|
1990
|
+
"aria-colspan"?: number | undefined;
|
|
1991
|
+
"aria-controls"?: string | undefined;
|
|
1992
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "false" | "true" | "location" | "date" | undefined;
|
|
1993
|
+
"aria-describedby"?: string | undefined;
|
|
1994
|
+
"aria-details"?: string | undefined;
|
|
1995
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
1996
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
1997
|
+
"aria-errormessage"?: string | undefined;
|
|
1998
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
1999
|
+
"aria-flowto"?: string | undefined;
|
|
2000
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
2001
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
|
|
2002
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
2003
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
2004
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
2005
|
+
"aria-label"?: string | undefined;
|
|
2006
|
+
"aria-labelledby"?: string | undefined;
|
|
2007
|
+
"aria-level"?: number | undefined;
|
|
2008
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2009
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
2010
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
2011
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
2012
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2013
|
+
"aria-owns"?: string | undefined;
|
|
2014
|
+
"aria-placeholder"?: string | undefined;
|
|
2015
|
+
"aria-posinset"?: number | undefined;
|
|
2016
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
2017
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
2018
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2019
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
2020
|
+
"aria-roledescription"?: string | undefined;
|
|
2021
|
+
"aria-rowcount"?: number | undefined;
|
|
2022
|
+
"aria-rowindex"?: number | undefined;
|
|
2023
|
+
"aria-rowspan"?: number | undefined;
|
|
2024
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
2025
|
+
"aria-setsize"?: number | undefined;
|
|
2026
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2027
|
+
"aria-valuemax"?: number | undefined;
|
|
2028
|
+
"aria-valuemin"?: number | undefined;
|
|
2029
|
+
"aria-valuenow"?: number | undefined;
|
|
2030
|
+
"aria-valuetext"?: string | undefined;
|
|
2029
2031
|
children?: import("react").ReactNode;
|
|
2030
2032
|
dangerouslySetInnerHTML?: {
|
|
2031
|
-
__html: string;
|
|
2033
|
+
__html: string | TrustedHTML;
|
|
2032
2034
|
} | undefined;
|
|
2033
2035
|
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
2034
2036
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
@@ -3076,57 +3078,57 @@ export declare const StyledBoxProfileEdit: import("@emotion/styled").StyledCompo
|
|
|
3076
3078
|
unselectable?: "on" | "off" | undefined;
|
|
3077
3079
|
inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
3078
3080
|
is?: string | undefined;
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3081
|
+
"aria-activedescendant"?: string | undefined;
|
|
3082
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
3083
|
+
"aria-autocomplete"?: "none" | "list" | "both" | "inline" | undefined;
|
|
3084
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
3085
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
3086
|
+
"aria-colcount"?: number | undefined;
|
|
3087
|
+
"aria-colindex"?: number | undefined;
|
|
3088
|
+
"aria-colspan"?: number | undefined;
|
|
3089
|
+
"aria-controls"?: string | undefined;
|
|
3090
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "false" | "true" | "location" | "date" | undefined;
|
|
3091
|
+
"aria-describedby"?: string | undefined;
|
|
3092
|
+
"aria-details"?: string | undefined;
|
|
3093
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
3094
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
3095
|
+
"aria-errormessage"?: string | undefined;
|
|
3096
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
3097
|
+
"aria-flowto"?: string | undefined;
|
|
3098
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
3099
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
|
|
3100
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
3101
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
3102
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
3103
|
+
"aria-label"?: string | undefined;
|
|
3104
|
+
"aria-labelledby"?: string | undefined;
|
|
3105
|
+
"aria-level"?: number | undefined;
|
|
3106
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
3107
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
3108
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
3109
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
3110
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
3111
|
+
"aria-owns"?: string | undefined;
|
|
3112
|
+
"aria-placeholder"?: string | undefined;
|
|
3113
|
+
"aria-posinset"?: number | undefined;
|
|
3114
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
3115
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
3116
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
3117
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
3118
|
+
"aria-roledescription"?: string | undefined;
|
|
3119
|
+
"aria-rowcount"?: number | undefined;
|
|
3120
|
+
"aria-rowindex"?: number | undefined;
|
|
3121
|
+
"aria-rowspan"?: number | undefined;
|
|
3122
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
3123
|
+
"aria-setsize"?: number | undefined;
|
|
3124
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
3125
|
+
"aria-valuemax"?: number | undefined;
|
|
3126
|
+
"aria-valuemin"?: number | undefined;
|
|
3127
|
+
"aria-valuenow"?: number | undefined;
|
|
3128
|
+
"aria-valuetext"?: string | undefined;
|
|
3127
3129
|
children?: import("react").ReactNode;
|
|
3128
3130
|
dangerouslySetInnerHTML?: {
|
|
3129
|
-
__html: string;
|
|
3131
|
+
__html: string | TrustedHTML;
|
|
3130
3132
|
} | undefined;
|
|
3131
3133
|
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
3132
3134
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
@@ -3304,10 +3306,10 @@ export declare const StyledAvatarName: import("@emotion/styled").StyledComponent
|
|
|
3304
3306
|
sx?: import("@mui/material").SxProps<import("@mui/material").Theme> | undefined;
|
|
3305
3307
|
variant?: "button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "overline" | "subtitle1" | "subtitle2" | "body1" | "body2" | undefined;
|
|
3306
3308
|
variantMapping?: Partial<Record<"button" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "inherit" | "overline" | "subtitle1" | "subtitle2" | "body1" | "body2", string>> | undefined;
|
|
3307
|
-
} & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
3309
|
+
} & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
3308
3310
|
ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
|
|
3309
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "children" | "sx" | "variant" | "align" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
3310
|
-
export declare const StyledOutlineButton: import("@emotion/styled").StyledComponent<
|
|
3311
|
+
}, keyof import("@mui/material/OverridableComponent").CommonProps | "children" | "sx" | "variant" | "align" | ("p" | "color" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "boxShadow" | "boxSizing" | "columnGap" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "rowGap" | "textAlign" | "textOverflow" | "textTransform" | "top" | "visibility" | "whiteSpace" | "width" | "zIndex" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "flex" | "gap" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "marginBlock" | "marginInline" | "overflow" | "padding" | "paddingBlock" | "paddingInline" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "typography" | "displayPrint") | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
3312
|
+
export declare const StyledOutlineButton: import("@emotion/styled").StyledComponent<Omit<{
|
|
3311
3313
|
children?: import("react").ReactNode;
|
|
3312
3314
|
classes?: Partial<import("@mui/material").ButtonClasses> | undefined;
|
|
3313
3315
|
color?: "inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning" | undefined;
|
|
@@ -3337,9 +3339,9 @@ export declare const StyledOutlineButton: import("@emotion/styled").StyledCompon
|
|
|
3337
3339
|
tabIndex?: number | undefined;
|
|
3338
3340
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
3339
3341
|
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
3340
|
-
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
3342
|
+
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
3341
3343
|
ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
3342
|
-
}, keyof import("@mui/material/OverridableComponent").CommonProps | "tabIndex" | "color" | "children" | "sx" | "variant" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "href" | "size" | "startIcon">,
|
|
3344
|
+
}, keyof import("@mui/material/OverridableComponent").CommonProps | "tabIndex" | "color" | "children" | "sx" | "variant" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "href" | "size" | "startIcon">, "ref"> & import("react").RefAttributes<HTMLButtonElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
3343
3345
|
export declare const StyledAvatar: import("@emotion/styled").StyledComponent<any, {}, {}>;
|
|
3344
3346
|
export declare const StyledListItemButton: import("@emotion/styled").StyledComponent<import("@mui/material").ListItemButtonBaseProps & Omit<{
|
|
3345
3347
|
action?: import("react").Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
@@ -3357,6 +3359,6 @@ export declare const StyledListItemButton: import("@emotion/styled").StyledCompo
|
|
|
3357
3359
|
tabIndex?: number | undefined;
|
|
3358
3360
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
3359
3361
|
touchRippleRef?: import("react").Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
3360
|
-
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
3362
|
+
}, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
3361
3363
|
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
3362
3364
|
}, "className" | "style" | "classes" | "autoFocus" | "tabIndex" | "children" | "sx" | "alignItems" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "selected" | "dense" | "disableGutters" | "divider"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|