@xyo-network/react-xns 6.1.4 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.d.ts +2 -500
- package/package.json +17 -13
- package/src/global.d.ts +1 -1
- package/typedoc.json +0 -5
- package/xy.config.ts +0 -10
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,500 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import * as react from 'react';
|
|
4
|
-
import react__default, { ReactNode, Dispatch } from 'react';
|
|
5
|
-
import * as _xylabs_react_shared from '@xylabs/react-shared';
|
|
6
|
-
import * as _mui_system_styleFunctionSx from '@mui/system/styleFunctionSx';
|
|
7
|
-
import * as csstype from 'csstype';
|
|
8
|
-
import * as _mui_system from '@mui/system';
|
|
9
|
-
import * as react_router_dom from 'react-router-dom';
|
|
10
|
-
import { To } from 'react-router-dom';
|
|
11
|
-
import { FlexBoxProps } from '@xylabs/react-flexbox';
|
|
12
|
-
import { LinkExProps } from '@xylabs/react-link';
|
|
13
|
-
|
|
14
|
-
interface XnsEstimateNameTextFieldProps {
|
|
15
|
-
maskOutput?: boolean;
|
|
16
|
-
}
|
|
17
|
-
declare const XnsEstimateNameTextField: react__default.FC<XnsEstimateNameTextFieldProps & TextFieldProps>;
|
|
18
|
-
|
|
19
|
-
interface XnsNameCaptureErrorsProps {
|
|
20
|
-
error?: Error;
|
|
21
|
-
errorUi?: 'alert' | 'toast';
|
|
22
|
-
resetError?: () => void;
|
|
23
|
-
}
|
|
24
|
-
declare const XnsNameCaptureErrors: react__default.FC<XnsNameCaptureErrorsProps>;
|
|
25
|
-
|
|
26
|
-
interface XnsNameCaptureBuyCallbacks {
|
|
27
|
-
onCaptureName?: (name: string) => Promise<void>;
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Trackers for user actions
|
|
31
|
-
*/
|
|
32
|
-
interface XnsNameCaptureTrackingProps {
|
|
33
|
-
funnel?: string;
|
|
34
|
-
intent?: string;
|
|
35
|
-
placement?: string;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Properties derived from the route and used for navigation
|
|
39
|
-
*/
|
|
40
|
-
interface XnsNameCaptureRoutingProps {
|
|
41
|
-
navigate?: (to: string) => void;
|
|
42
|
-
paramsString?: string;
|
|
43
|
-
routingError?: Error;
|
|
44
|
-
to?: To;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* Base properties for the XnsNameCapture component related to the UI and Events
|
|
48
|
-
*/
|
|
49
|
-
interface XnsNameCaptureBaseProps {
|
|
50
|
-
autoFocus?: boolean;
|
|
51
|
-
buttonText?: string;
|
|
52
|
-
defaultXnsName?: string;
|
|
53
|
-
disabled?: boolean;
|
|
54
|
-
errorUi?: 'alert' | 'toast';
|
|
55
|
-
mobileButtonText?: string;
|
|
56
|
-
onNameChange?: (name: string) => void;
|
|
57
|
-
showSecondary?: boolean | ReactNode;
|
|
58
|
-
}
|
|
59
|
-
interface XnsNameCaptureProps extends XnsNameCaptureBaseProps, XnsNameCaptureTrackingProps, XnsNameCaptureBuyCallbacks, XnsNameCaptureRoutingProps, FlexBoxProps {
|
|
60
|
-
}
|
|
61
|
-
type WithXnsCapture<T> = T & {
|
|
62
|
-
XnsCapture?: React.FC<XnsNameCaptureProps>;
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
declare const useXnsNameCaptureRouting: (props: XnsNameCaptureProps) => {
|
|
66
|
-
defaultXnsName: string | undefined;
|
|
67
|
-
routingError: Error | undefined;
|
|
68
|
-
navigate: (to: string) => void;
|
|
69
|
-
paramsString: string;
|
|
70
|
-
autoFocus?: boolean;
|
|
71
|
-
buttonText?: string;
|
|
72
|
-
disabled?: boolean;
|
|
73
|
-
errorUi?: "alert" | "toast";
|
|
74
|
-
mobileButtonText?: string;
|
|
75
|
-
onNameChange?: (name: string) => void;
|
|
76
|
-
showSecondary?: boolean | react.ReactNode;
|
|
77
|
-
funnel?: string;
|
|
78
|
-
intent?: string;
|
|
79
|
-
placement?: string;
|
|
80
|
-
onCaptureName?: (name: string) => Promise<void>;
|
|
81
|
-
to?: react_router_dom.To;
|
|
82
|
-
background?: boolean;
|
|
83
|
-
paper?: boolean;
|
|
84
|
-
children?: react.ReactNode;
|
|
85
|
-
ref?: react.Ref<unknown>;
|
|
86
|
-
sx?: _mui_system.SxProps<_mui_material.Theme> | undefined;
|
|
87
|
-
color?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Color | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Color | undefined>);
|
|
88
|
-
margin?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined>);
|
|
89
|
-
p?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined>);
|
|
90
|
-
border?: _mui_system_styleFunctionSx.ResponsiveStyleValue<number | "hidden" | "medium" | (string & {}) | "none" | "inherit" | "grey" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "inset" | "thick" | "thin" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<number | "hidden" | "medium" | (string & {}) | "none" | "inherit" | "grey" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "inset" | "thick" | "thin" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | undefined>);
|
|
91
|
-
height?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Height<string | number> | readonly NonNullable<csstype.Property.Height<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Height<string | number> | readonly NonNullable<csstype.Property.Height<string | number> | undefined>[] | undefined>);
|
|
92
|
-
width?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Width<string | number> | readonly NonNullable<csstype.Property.Width<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Width<string | number> | readonly NonNullable<csstype.Property.Width<string | number> | undefined>[] | undefined>);
|
|
93
|
-
position?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Position | readonly NonNullable<csstype.Property.Position | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Position | readonly NonNullable<csstype.Property.Position | undefined>[] | undefined>);
|
|
94
|
-
boxShadow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<number | csstype.Property.BoxShadow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<number | csstype.Property.BoxShadow | undefined>);
|
|
95
|
-
fontWeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
|
|
96
|
-
zIndex?: _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
|
|
97
|
-
alignContent?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignContent | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignContent | undefined>);
|
|
98
|
-
alignItems?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignItems | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignItems | undefined>);
|
|
99
|
-
alignSelf?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignSelf | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignSelf | undefined>);
|
|
100
|
-
bottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Bottom<string | number> | readonly NonNullable<csstype.Property.Bottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Bottom<string | number> | readonly NonNullable<csstype.Property.Bottom<string | number> | undefined>[] | undefined>);
|
|
101
|
-
boxSizing?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BoxSizing | readonly NonNullable<csstype.Property.BoxSizing | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BoxSizing | readonly NonNullable<csstype.Property.BoxSizing | undefined>[] | undefined>);
|
|
102
|
-
columnGap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.ColumnGap<string | number> | readonly NonNullable<csstype.Property.ColumnGap<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.ColumnGap<string | number> | readonly NonNullable<csstype.Property.ColumnGap<string | number> | undefined>[] | undefined>);
|
|
103
|
-
display?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined>);
|
|
104
|
-
flexBasis?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexBasis<string | number> | readonly NonNullable<csstype.Property.FlexBasis<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexBasis<string | number> | readonly NonNullable<csstype.Property.FlexBasis<string | number> | undefined>[] | undefined>);
|
|
105
|
-
flexDirection?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexDirection | readonly NonNullable<csstype.Property.FlexDirection | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexDirection | readonly NonNullable<csstype.Property.FlexDirection | undefined>[] | undefined>);
|
|
106
|
-
flexGrow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexGrow | readonly NonNullable<csstype.Property.FlexGrow | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexGrow | readonly NonNullable<csstype.Property.FlexGrow | undefined>[] | undefined>);
|
|
107
|
-
flexShrink?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexShrink | readonly NonNullable<csstype.Property.FlexShrink | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexShrink | readonly NonNullable<csstype.Property.FlexShrink | undefined>[] | undefined>);
|
|
108
|
-
flexWrap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexWrap | readonly NonNullable<csstype.Property.FlexWrap | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexWrap | readonly NonNullable<csstype.Property.FlexWrap | undefined>[] | undefined>);
|
|
109
|
-
fontFamily?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontFamily | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontFamily | undefined>);
|
|
110
|
-
fontSize?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FontSize<string | number> | readonly NonNullable<csstype.Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FontSize<string | number> | readonly NonNullable<csstype.Property.FontSize<string | number> | undefined>[] | undefined>);
|
|
111
|
-
fontStyle?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontStyle | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontStyle | undefined>);
|
|
112
|
-
gridAutoColumns?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoColumns<string | number> | readonly NonNullable<csstype.Property.GridAutoColumns<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoColumns<string | number> | readonly NonNullable<csstype.Property.GridAutoColumns<string | number> | undefined>[] | undefined>);
|
|
113
|
-
gridAutoFlow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridAutoFlow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridAutoFlow | undefined>);
|
|
114
|
-
gridAutoRows?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoRows<string | number> | readonly NonNullable<csstype.Property.GridAutoRows<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoRows<string | number> | readonly NonNullable<csstype.Property.GridAutoRows<string | number> | undefined>[] | undefined>);
|
|
115
|
-
gridTemplateAreas?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridTemplateAreas | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridTemplateAreas | undefined>);
|
|
116
|
-
gridTemplateColumns?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateColumns<string | number> | readonly NonNullable<csstype.Property.GridTemplateColumns<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateColumns<string | number> | readonly NonNullable<csstype.Property.GridTemplateColumns<string | number> | undefined>[] | undefined>);
|
|
117
|
-
gridTemplateRows?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateRows<string | number> | readonly NonNullable<csstype.Property.GridTemplateRows<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateRows<string | number> | readonly NonNullable<csstype.Property.GridTemplateRows<string | number> | undefined>[] | undefined>);
|
|
118
|
-
justifyContent?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyContent | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyContent | undefined>);
|
|
119
|
-
justifyItems?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyItems | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyItems | undefined>);
|
|
120
|
-
justifySelf?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifySelf | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifySelf | undefined>);
|
|
121
|
-
left?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Left<string | number> | readonly NonNullable<csstype.Property.Left<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Left<string | number> | readonly NonNullable<csstype.Property.Left<string | number> | undefined>[] | undefined>);
|
|
122
|
-
letterSpacing?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LetterSpacing<string | number> | readonly NonNullable<csstype.Property.LetterSpacing<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LetterSpacing<string | number> | readonly NonNullable<csstype.Property.LetterSpacing<string | number> | undefined>[] | undefined>);
|
|
123
|
-
lineHeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LineHeight<string | number> | readonly NonNullable<csstype.Property.LineHeight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LineHeight<string | number> | readonly NonNullable<csstype.Property.LineHeight<string | number> | undefined>[] | undefined>);
|
|
124
|
-
marginBlockEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockEnd<string | number> | readonly NonNullable<csstype.Property.MarginBlockEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockEnd<string | number> | readonly NonNullable<csstype.Property.MarginBlockEnd<string | number> | undefined>[] | undefined>);
|
|
125
|
-
marginBlockStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockStart<string | number> | readonly NonNullable<csstype.Property.MarginBlockStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockStart<string | number> | readonly NonNullable<csstype.Property.MarginBlockStart<string | number> | undefined>[] | undefined>);
|
|
126
|
-
marginBottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined>);
|
|
127
|
-
marginInlineEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineEnd<string | number> | readonly NonNullable<csstype.Property.MarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineEnd<string | number> | readonly NonNullable<csstype.Property.MarginInlineEnd<string | number> | undefined>[] | undefined>);
|
|
128
|
-
marginInlineStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineStart<string | number> | readonly NonNullable<csstype.Property.MarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineStart<string | number> | readonly NonNullable<csstype.Property.MarginInlineStart<string | number> | undefined>[] | undefined>);
|
|
129
|
-
marginLeft?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
130
|
-
marginRight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined>);
|
|
131
|
-
marginTop?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
132
|
-
maxHeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxHeight<string | number> | readonly NonNullable<csstype.Property.MaxHeight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxHeight<string | number> | readonly NonNullable<csstype.Property.MaxHeight<string | number> | undefined>[] | undefined>);
|
|
133
|
-
maxWidth?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxWidth<string | number> | readonly NonNullable<csstype.Property.MaxWidth<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxWidth<string | number> | readonly NonNullable<csstype.Property.MaxWidth<string | number> | undefined>[] | undefined>);
|
|
134
|
-
minHeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinHeight<string | number> | readonly NonNullable<csstype.Property.MinHeight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinHeight<string | number> | readonly NonNullable<csstype.Property.MinHeight<string | number> | undefined>[] | undefined>);
|
|
135
|
-
minWidth?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinWidth<string | number> | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinWidth<string | number> | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined>);
|
|
136
|
-
order?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Order | readonly NonNullable<csstype.Property.Order | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Order | readonly NonNullable<csstype.Property.Order | undefined>[] | undefined>);
|
|
137
|
-
paddingBlockEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockEnd<string | number> | readonly NonNullable<csstype.Property.PaddingBlockEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockEnd<string | number> | readonly NonNullable<csstype.Property.PaddingBlockEnd<string | number> | undefined>[] | undefined>);
|
|
138
|
-
paddingBlockStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockStart<string | number> | readonly NonNullable<csstype.Property.PaddingBlockStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockStart<string | number> | readonly NonNullable<csstype.Property.PaddingBlockStart<string | number> | undefined>[] | undefined>);
|
|
139
|
-
paddingBottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined>);
|
|
140
|
-
paddingInlineEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineEnd<string | number> | readonly NonNullable<csstype.Property.PaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineEnd<string | number> | readonly NonNullable<csstype.Property.PaddingInlineEnd<string | number> | undefined>[] | undefined>);
|
|
141
|
-
paddingInlineStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineStart<string | number> | readonly NonNullable<csstype.Property.PaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineStart<string | number> | readonly NonNullable<csstype.Property.PaddingInlineStart<string | number> | undefined>[] | undefined>);
|
|
142
|
-
paddingLeft?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
143
|
-
paddingRight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined>);
|
|
144
|
-
paddingTop?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
145
|
-
right?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Right<string | number> | readonly NonNullable<csstype.Property.Right<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Right<string | number> | readonly NonNullable<csstype.Property.Right<string | number> | undefined>[] | undefined>);
|
|
146
|
-
rowGap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.RowGap<string | number> | readonly NonNullable<csstype.Property.RowGap<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.RowGap<string | number> | readonly NonNullable<csstype.Property.RowGap<string | number> | undefined>[] | undefined>);
|
|
147
|
-
textAlign?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextAlign | readonly NonNullable<csstype.Property.TextAlign | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextAlign | readonly NonNullable<csstype.Property.TextAlign | undefined>[] | undefined>);
|
|
148
|
-
textOverflow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.TextOverflow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.TextOverflow | undefined>);
|
|
149
|
-
textTransform?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextTransform | readonly NonNullable<csstype.Property.TextTransform | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextTransform | readonly NonNullable<csstype.Property.TextTransform | undefined>[] | undefined>);
|
|
150
|
-
top?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Top<string | number> | readonly NonNullable<csstype.Property.Top<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Top<string | number> | readonly NonNullable<csstype.Property.Top<string | number> | undefined>[] | undefined>);
|
|
151
|
-
visibility?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Visibility | readonly NonNullable<csstype.Property.Visibility | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Visibility | readonly NonNullable<csstype.Property.Visibility | undefined>[] | undefined>);
|
|
152
|
-
whiteSpace?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.WhiteSpace | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.WhiteSpace | undefined>);
|
|
153
|
-
borderBottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderBottom<string | number> | readonly NonNullable<csstype.Property.BorderBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderBottom<string | number> | readonly NonNullable<csstype.Property.BorderBottom<string | number> | undefined>[] | undefined>);
|
|
154
|
-
borderColor?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BorderColor | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BorderColor | undefined>);
|
|
155
|
-
borderLeft?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderLeft<string | number> | readonly NonNullable<csstype.Property.BorderLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderLeft<string | number> | readonly NonNullable<csstype.Property.BorderLeft<string | number> | undefined>[] | undefined>);
|
|
156
|
-
borderRadius?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined>);
|
|
157
|
-
borderRight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRight<string | number> | readonly NonNullable<csstype.Property.BorderRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRight<string | number> | readonly NonNullable<csstype.Property.BorderRight<string | number> | undefined>[] | undefined>);
|
|
158
|
-
borderTop?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderTop<string | number> | readonly NonNullable<csstype.Property.BorderTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderTop<string | number> | readonly NonNullable<csstype.Property.BorderTop<string | number> | undefined>[] | undefined>);
|
|
159
|
-
flex?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Flex<string | number> | readonly NonNullable<csstype.Property.Flex<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Flex<string | number> | readonly NonNullable<csstype.Property.Flex<string | number> | undefined>[] | undefined>);
|
|
160
|
-
gap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Gap<string | number> | readonly NonNullable<csstype.Property.Gap<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Gap<string | number> | readonly NonNullable<csstype.Property.Gap<string | number> | undefined>[] | undefined>);
|
|
161
|
-
gridArea?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined>);
|
|
162
|
-
gridColumn?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined>);
|
|
163
|
-
gridRow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined>);
|
|
164
|
-
marginBlock?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlock<string | number> | readonly NonNullable<csstype.Property.MarginBlock<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlock<string | number> | readonly NonNullable<csstype.Property.MarginBlock<string | number> | undefined>[] | undefined>);
|
|
165
|
-
marginInline?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInline<string | number> | readonly NonNullable<csstype.Property.MarginInline<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInline<string | number> | readonly NonNullable<csstype.Property.MarginInline<string | number> | undefined>[] | undefined>);
|
|
166
|
-
overflow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Overflow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Overflow | undefined>);
|
|
167
|
-
padding?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined>);
|
|
168
|
-
paddingBlock?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlock<string | number> | readonly NonNullable<csstype.Property.PaddingBlock<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlock<string | number> | readonly NonNullable<csstype.Property.PaddingBlock<string | number> | undefined>[] | undefined>);
|
|
169
|
-
paddingInline?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInline<string | number> | readonly NonNullable<csstype.Property.PaddingInline<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInline<string | number> | readonly NonNullable<csstype.Property.PaddingInline<string | number> | undefined>[] | undefined>);
|
|
170
|
-
bgcolor?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BackgroundColor | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BackgroundColor | undefined>);
|
|
171
|
-
m?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined>);
|
|
172
|
-
mt?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
173
|
-
mr?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined>);
|
|
174
|
-
mb?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined>);
|
|
175
|
-
ml?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
176
|
-
mx?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
177
|
-
marginX?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
178
|
-
my?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
179
|
-
marginY?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
180
|
-
pt?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
181
|
-
pr?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined>);
|
|
182
|
-
pb?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined>);
|
|
183
|
-
pl?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
184
|
-
px?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
185
|
-
paddingX?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
186
|
-
py?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
187
|
-
paddingY?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
188
|
-
typography?: _mui_system_styleFunctionSx.ResponsiveStyleValue<string | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<string | undefined>);
|
|
189
|
-
displayPrint?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined>);
|
|
190
|
-
className?: string;
|
|
191
|
-
style?: react.CSSProperties;
|
|
192
|
-
classes?: Partial<_mui_material.ClassNameMap<never>> | undefined;
|
|
193
|
-
slot?: string | undefined | undefined;
|
|
194
|
-
title?: string | undefined | undefined;
|
|
195
|
-
key?: react.Key | null | undefined;
|
|
196
|
-
defaultChecked?: boolean | undefined | undefined;
|
|
197
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
198
|
-
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
199
|
-
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
200
|
-
accessKey?: string | undefined | undefined;
|
|
201
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
202
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
203
|
-
contextMenu?: string | undefined | undefined;
|
|
204
|
-
dir?: string | undefined | undefined;
|
|
205
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
206
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
207
|
-
hidden?: boolean | undefined | undefined;
|
|
208
|
-
id?: string | undefined | undefined;
|
|
209
|
-
lang?: string | undefined | undefined;
|
|
210
|
-
nonce?: string | undefined | undefined;
|
|
211
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
212
|
-
tabIndex?: number | undefined | undefined;
|
|
213
|
-
translate?: "yes" | "no" | undefined | undefined;
|
|
214
|
-
radioGroup?: string | undefined | undefined;
|
|
215
|
-
role?: react.AriaRole | undefined;
|
|
216
|
-
about?: string | undefined | undefined;
|
|
217
|
-
content?: string | undefined | undefined;
|
|
218
|
-
datatype?: string | undefined | undefined;
|
|
219
|
-
inlist?: any;
|
|
220
|
-
prefix?: string | undefined | undefined;
|
|
221
|
-
property?: string | undefined | undefined;
|
|
222
|
-
rel?: string | undefined | undefined;
|
|
223
|
-
resource?: string | undefined | undefined;
|
|
224
|
-
rev?: string | undefined | undefined;
|
|
225
|
-
typeof?: string | undefined | undefined;
|
|
226
|
-
vocab?: string | undefined | undefined;
|
|
227
|
-
autoCorrect?: string | undefined | undefined;
|
|
228
|
-
autoSave?: string | undefined | undefined;
|
|
229
|
-
itemProp?: string | undefined | undefined;
|
|
230
|
-
itemScope?: boolean | undefined | undefined;
|
|
231
|
-
itemType?: string | undefined | undefined;
|
|
232
|
-
itemID?: string | undefined | undefined;
|
|
233
|
-
itemRef?: string | undefined | undefined;
|
|
234
|
-
results?: number | undefined | undefined;
|
|
235
|
-
security?: string | undefined | undefined;
|
|
236
|
-
unselectable?: "on" | "off" | undefined | undefined;
|
|
237
|
-
popover?: "" | "auto" | "manual" | undefined | undefined;
|
|
238
|
-
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
239
|
-
popoverTarget?: string | undefined | undefined;
|
|
240
|
-
inert?: boolean | undefined | undefined;
|
|
241
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
242
|
-
is?: string | undefined | undefined;
|
|
243
|
-
exportparts?: string | undefined | undefined;
|
|
244
|
-
part?: string | undefined | undefined;
|
|
245
|
-
"aria-activedescendant"?: string | undefined | undefined;
|
|
246
|
-
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
247
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
248
|
-
"aria-braillelabel"?: string | undefined | undefined;
|
|
249
|
-
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
250
|
-
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
251
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
252
|
-
"aria-colcount"?: number | undefined | undefined;
|
|
253
|
-
"aria-colindex"?: number | undefined | undefined;
|
|
254
|
-
"aria-colindextext"?: string | undefined | undefined;
|
|
255
|
-
"aria-colspan"?: number | undefined | undefined;
|
|
256
|
-
"aria-controls"?: string | undefined | undefined;
|
|
257
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
258
|
-
"aria-describedby"?: string | undefined | undefined;
|
|
259
|
-
"aria-description"?: string | undefined | undefined;
|
|
260
|
-
"aria-details"?: string | undefined | undefined;
|
|
261
|
-
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
262
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
263
|
-
"aria-errormessage"?: string | undefined | undefined;
|
|
264
|
-
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
265
|
-
"aria-flowto"?: string | undefined | undefined;
|
|
266
|
-
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
267
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
268
|
-
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
269
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
270
|
-
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
271
|
-
"aria-label"?: string | undefined | undefined;
|
|
272
|
-
"aria-labelledby"?: string | undefined | undefined;
|
|
273
|
-
"aria-level"?: number | undefined | undefined;
|
|
274
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
275
|
-
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
276
|
-
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
277
|
-
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
278
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
279
|
-
"aria-owns"?: string | undefined | undefined;
|
|
280
|
-
"aria-placeholder"?: string | undefined | undefined;
|
|
281
|
-
"aria-posinset"?: number | undefined | undefined;
|
|
282
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
283
|
-
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
284
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
285
|
-
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
286
|
-
"aria-roledescription"?: string | undefined | undefined;
|
|
287
|
-
"aria-rowcount"?: number | undefined | undefined;
|
|
288
|
-
"aria-rowindex"?: number | undefined | undefined;
|
|
289
|
-
"aria-rowindextext"?: string | undefined | undefined;
|
|
290
|
-
"aria-rowspan"?: number | undefined | undefined;
|
|
291
|
-
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
292
|
-
"aria-setsize"?: number | undefined | undefined;
|
|
293
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
294
|
-
"aria-valuemax"?: number | undefined | undefined;
|
|
295
|
-
"aria-valuemin"?: number | undefined | undefined;
|
|
296
|
-
"aria-valuenow"?: number | undefined | undefined;
|
|
297
|
-
"aria-valuetext"?: string | undefined | undefined;
|
|
298
|
-
dangerouslySetInnerHTML?: {
|
|
299
|
-
__html: string | TrustedHTML;
|
|
300
|
-
} | undefined | undefined;
|
|
301
|
-
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
302
|
-
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
303
|
-
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
304
|
-
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
305
|
-
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
306
|
-
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
307
|
-
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
308
|
-
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
309
|
-
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
310
|
-
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
311
|
-
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
312
|
-
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
313
|
-
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
314
|
-
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
315
|
-
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
316
|
-
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
317
|
-
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
318
|
-
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
319
|
-
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
320
|
-
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
321
|
-
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
322
|
-
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
323
|
-
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
324
|
-
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
325
|
-
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
326
|
-
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
327
|
-
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
328
|
-
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
329
|
-
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
330
|
-
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
331
|
-
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
332
|
-
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
333
|
-
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
334
|
-
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
335
|
-
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
336
|
-
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
337
|
-
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
338
|
-
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
339
|
-
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
340
|
-
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
341
|
-
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
342
|
-
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
343
|
-
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
344
|
-
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
345
|
-
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
346
|
-
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
347
|
-
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
348
|
-
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
349
|
-
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
350
|
-
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
351
|
-
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
352
|
-
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
353
|
-
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
354
|
-
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
355
|
-
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
356
|
-
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
357
|
-
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
358
|
-
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
359
|
-
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
360
|
-
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
361
|
-
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
362
|
-
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
363
|
-
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
364
|
-
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
365
|
-
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
366
|
-
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
367
|
-
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
368
|
-
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
369
|
-
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
370
|
-
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
371
|
-
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
372
|
-
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
373
|
-
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
374
|
-
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
375
|
-
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
376
|
-
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
377
|
-
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
378
|
-
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
379
|
-
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
380
|
-
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
381
|
-
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
382
|
-
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
383
|
-
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
384
|
-
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
385
|
-
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
386
|
-
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
387
|
-
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
388
|
-
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
389
|
-
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
390
|
-
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
391
|
-
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
392
|
-
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
393
|
-
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
394
|
-
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
395
|
-
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
396
|
-
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
397
|
-
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
398
|
-
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
399
|
-
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
400
|
-
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
401
|
-
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
402
|
-
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
403
|
-
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
404
|
-
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
405
|
-
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
406
|
-
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
407
|
-
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
408
|
-
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
409
|
-
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
410
|
-
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
411
|
-
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
412
|
-
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
413
|
-
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
414
|
-
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
415
|
-
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
416
|
-
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
417
|
-
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
418
|
-
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
419
|
-
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
420
|
-
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
421
|
-
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
422
|
-
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
423
|
-
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
424
|
-
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
425
|
-
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
426
|
-
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
427
|
-
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
428
|
-
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
429
|
-
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
430
|
-
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
431
|
-
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
432
|
-
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
433
|
-
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
434
|
-
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
435
|
-
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
436
|
-
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
437
|
-
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
438
|
-
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
439
|
-
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
440
|
-
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
441
|
-
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
442
|
-
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
443
|
-
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
444
|
-
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
445
|
-
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
446
|
-
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
447
|
-
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
448
|
-
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
449
|
-
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
450
|
-
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
451
|
-
onScrollEnd?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
452
|
-
onScrollEndCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
453
|
-
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
454
|
-
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
455
|
-
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
456
|
-
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
457
|
-
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
458
|
-
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
459
|
-
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
460
|
-
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
461
|
-
onToggle?: react.ToggleEventHandler<HTMLDivElement> | undefined;
|
|
462
|
-
onBeforeToggle?: react.ToggleEventHandler<HTMLDivElement> | undefined;
|
|
463
|
-
onTransitionCancel?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
464
|
-
onTransitionCancelCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
465
|
-
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
466
|
-
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
467
|
-
onTransitionRun?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
468
|
-
onTransitionRunCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
469
|
-
onTransitionStart?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
470
|
-
onTransitionStartCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
471
|
-
component?: React.ElementType;
|
|
472
|
-
busy?: boolean;
|
|
473
|
-
busyCircularProps?: _xylabs_react_shared.BusyCircularProgressProps;
|
|
474
|
-
busyColor?: _xylabs_react_shared.MaterialUIThemeColor;
|
|
475
|
-
busyLinearProps?: _xylabs_react_shared.BusyLinearProgressProps;
|
|
476
|
-
busyMinimum?: number;
|
|
477
|
-
busyOpacity?: string | number;
|
|
478
|
-
busySize?: number;
|
|
479
|
-
busyVariant?: _xylabs_react_shared.BusyVariant;
|
|
480
|
-
};
|
|
481
|
-
|
|
482
|
-
/**
|
|
483
|
-
* Assumes the user was redirected with a link that contains a username query parameter.
|
|
484
|
-
* @returns The xNS name from the URI username query parameter.
|
|
485
|
-
*/
|
|
486
|
-
declare const useXnsNameFromLocation: () => [name: string | undefined, error: Error | undefined];
|
|
487
|
-
|
|
488
|
-
type XnsCaptureSecondaryLinkProps = XnsNameCaptureTrackingProps & XnsNameCaptureRoutingProps & XnsNameCaptureBuyCallbacks & LinkExProps & {
|
|
489
|
-
setError?: Dispatch<Error | undefined>;
|
|
490
|
-
text?: string;
|
|
491
|
-
xnsName: string;
|
|
492
|
-
};
|
|
493
|
-
declare const XnsCaptureSecondaryLink: react__default.FC<XnsCaptureSecondaryLinkProps>;
|
|
494
|
-
|
|
495
|
-
declare const XnsNameCapture: react__default.FC<XnsNameCaptureProps>;
|
|
496
|
-
|
|
497
|
-
declare const XnsNameCaptureWithContext: react__default.FC<XnsNameCaptureProps>;
|
|
498
|
-
|
|
499
|
-
export { XnsCaptureSecondaryLink, XnsEstimateNameTextField, XnsNameCapture, XnsNameCaptureErrors, XnsNameCaptureWithContext, useXnsNameCaptureRouting, useXnsNameFromLocation };
|
|
500
|
-
export type { WithXnsCapture, XnsCaptureSecondaryLinkProps, XnsEstimateNameTextFieldProps, XnsNameCaptureBaseProps, XnsNameCaptureBuyCallbacks, XnsNameCaptureErrorsProps, XnsNameCaptureProps, XnsNameCaptureRoutingProps, XnsNameCaptureTrackingProps };
|
|
1
|
+
export * from './components/index.ts';
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-xns",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -38,24 +38,28 @@
|
|
|
38
38
|
},
|
|
39
39
|
"module": "dist/browser/index.mjs",
|
|
40
40
|
"types": "dist/browser/index.d.ts",
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"src"
|
|
44
|
+
],
|
|
41
45
|
"dependencies": {
|
|
42
|
-
"@xylabs/react-button": "^
|
|
43
|
-
"@xylabs/react-flexbox": "^
|
|
44
|
-
"@xylabs/react-link": "^
|
|
45
|
-
"@xylabs/react-pixel": "^
|
|
46
|
-
"@xylabs/react-theme": "^
|
|
47
|
-
"@xyo-network/xns-record-payloadset-plugins": "^
|
|
46
|
+
"@xylabs/react-button": "^7.0.0",
|
|
47
|
+
"@xylabs/react-flexbox": "^7.0.0",
|
|
48
|
+
"@xylabs/react-link": "^7.0.0",
|
|
49
|
+
"@xylabs/react-pixel": "^7.0.0",
|
|
50
|
+
"@xylabs/react-theme": "^7.0.0",
|
|
51
|
+
"@xyo-network/xns-record-payloadset-plugins": "^5.0.0"
|
|
48
52
|
},
|
|
49
53
|
"devDependencies": {
|
|
50
54
|
"@mui/icons-material": "^7.2.0",
|
|
51
55
|
"@mui/material": "^7.2.0",
|
|
52
56
|
"@storybook/react-vite": "^9.0.18",
|
|
53
|
-
"@types/react": "^19.1.
|
|
54
|
-
"@xylabs/ts-scripts-yarn3": "
|
|
55
|
-
"@xylabs/tsconfig-react": "
|
|
56
|
-
"react": "^19.1.
|
|
57
|
-
"react-dom": "^19.1.
|
|
58
|
-
"react-router-dom": "^7.7.
|
|
57
|
+
"@types/react": "^19.1.9",
|
|
58
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.2",
|
|
59
|
+
"@xylabs/tsconfig-react": "^7.0.2",
|
|
60
|
+
"react": "^19.1.1",
|
|
61
|
+
"react-dom": "^19.1.1",
|
|
62
|
+
"react-router-dom": "^7.7.1",
|
|
59
63
|
"storybook": "^9.0.18",
|
|
60
64
|
"typescript": "^5.8.3"
|
|
61
65
|
},
|
package/src/global.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import '@mui/material/themeCssVarsAugmentation'
|
package/typedoc.json
DELETED