@rnaga/wp-next-ui 1.0.3 → 1.0.5
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/Button.d.ts.map +1 -1
- package/Button.js +2 -2
- package/SelectAutocomplete.d.ts +116 -61
- package/SelectAutocomplete.d.ts.map +1 -1
- package/SelectAutocomplete.js +1 -1
- package/package.json +1 -4
package/Button.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../src/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,SAAS,EAAE,MAAM,eAAe,CAAC;AAIpD,eAAO,MAAM,MAAM,GACjB,OAAO;IACL,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IAEpC,SAAS,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;CAC5E,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../src/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,SAAS,EAAE,MAAM,eAAe,CAAC;AAIpD,eAAO,MAAM,MAAM,GACjB,OAAO;IACL,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;IAEpC,SAAS,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;CAC5E,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC,4CAyB/D,CAAC"}
|
package/Button.js
CHANGED
|
@@ -3,9 +3,9 @@ import { Button as MuiButton } from "@mui/material";
|
|
|
3
3
|
import { CircularProgress } from "@mui/material";
|
|
4
4
|
import { useWPTheme } from "./ThemeRegistry";
|
|
5
5
|
export const Button = (props) => {
|
|
6
|
-
const { children, size, component, bold, loading, color, ...rest } = props;
|
|
6
|
+
const { children, size, component, bold, loading, color, disabled, ...rest } = props;
|
|
7
7
|
const { wpTheme } = useWPTheme();
|
|
8
|
-
return (_jsx(MuiButton, { ...rest, component: component, variant: "contained", size: "small", disableElevation: true, disabled: loading, sx: {
|
|
8
|
+
return (_jsx(MuiButton, { ...rest, component: component, variant: "contained", size: "small", disableElevation: true, disabled: loading || disabled === true, sx: {
|
|
9
9
|
textTransform: "none",
|
|
10
10
|
fontSize: size === "large" ? 16 : size === "medium" ? 14 : 12,
|
|
11
11
|
...(bold ? { fontWeight: "bold" } : {}),
|
package/SelectAutocomplete.d.ts
CHANGED
|
@@ -46,6 +46,9 @@ export declare const SelectAutocomplete: {
|
|
|
46
46
|
alignItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems>);
|
|
47
47
|
alignSelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf>);
|
|
48
48
|
alignTracks?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignTracks> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignTracks>);
|
|
49
|
+
alignmentBaseline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline>[]>);
|
|
50
|
+
anchorName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorName> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorName>);
|
|
51
|
+
anchorScope?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorScope> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnchorScope>);
|
|
49
52
|
animationComposition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationComposition> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationComposition>);
|
|
50
53
|
animationDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}>>);
|
|
51
54
|
animationDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDirection>);
|
|
@@ -72,17 +75,14 @@ export declare const SelectAutocomplete: {
|
|
|
72
75
|
backgroundPositionY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number>>[]>);
|
|
73
76
|
backgroundRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundRepeat> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundRepeat>);
|
|
74
77
|
backgroundSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number>>[]>);
|
|
75
|
-
|
|
78
|
+
baselineShift?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number>>[]>);
|
|
76
79
|
blockSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number>>[]>);
|
|
77
|
-
borderBlockColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockColor>);
|
|
78
80
|
borderBlockEndColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockEndColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockEndColor>);
|
|
79
81
|
borderBlockEndStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle>[]>);
|
|
80
82
|
borderBlockEndWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number>>[]>);
|
|
81
83
|
borderBlockStartColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStartColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStartColor>);
|
|
82
84
|
borderBlockStartStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle>[]>);
|
|
83
85
|
borderBlockStartWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number>>[]>);
|
|
84
|
-
borderBlockStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle>[]>);
|
|
85
|
-
borderBlockWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number>>[]>);
|
|
86
86
|
borderBottomColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBottomColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBottomColor>);
|
|
87
87
|
borderBottomLeftRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number>>[]>);
|
|
88
88
|
borderBottomRightRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number>>[]>);
|
|
@@ -96,15 +96,12 @@ export declare const SelectAutocomplete: {
|
|
|
96
96
|
borderImageSlice?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice>[]>);
|
|
97
97
|
borderImageSource?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderImageSource> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderImageSource>);
|
|
98
98
|
borderImageWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number>>[]>);
|
|
99
|
-
borderInlineColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineColor>);
|
|
100
99
|
borderInlineEndColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor>);
|
|
101
100
|
borderInlineEndStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle>[]>);
|
|
102
101
|
borderInlineEndWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number>>[]>);
|
|
103
102
|
borderInlineStartColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStartColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStartColor>);
|
|
104
103
|
borderInlineStartStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle>[]>);
|
|
105
104
|
borderInlineStartWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number>>[]>);
|
|
106
|
-
borderInlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle>[]>);
|
|
107
|
-
borderInlineWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number>>[]>);
|
|
108
105
|
borderLeftColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderLeftColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderLeftColor>);
|
|
109
106
|
borderLeftStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle>[]>);
|
|
110
107
|
borderLeftWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number>>[]>);
|
|
@@ -129,8 +126,10 @@ export declare const SelectAutocomplete: {
|
|
|
129
126
|
caretColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CaretColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CaretColor>);
|
|
130
127
|
caretShape?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape>[]>);
|
|
131
128
|
clear?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear>[]>);
|
|
129
|
+
clipRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule>[]>);
|
|
132
130
|
color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color>);
|
|
133
131
|
colorAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust>[]>);
|
|
132
|
+
colorInterpolationFilters?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolationFilters | readonly NonNullable<import("csstype").Property.ColorInterpolationFilters>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolationFilters | readonly NonNullable<import("csstype").Property.ColorInterpolationFilters>[]>);
|
|
134
133
|
colorScheme?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColorScheme> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColorScheme>);
|
|
135
134
|
columnCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount>[]>);
|
|
136
135
|
columnFill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill>[]>);
|
|
@@ -146,22 +145,32 @@ export declare const SelectAutocomplete: {
|
|
|
146
145
|
containIntrinsicInlineSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number>>[]>);
|
|
147
146
|
containIntrinsicWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number>>[]>);
|
|
148
147
|
containerName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerName> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerName>);
|
|
149
|
-
containerType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<
|
|
148
|
+
containerType?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerType> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ContainerType>);
|
|
150
149
|
content?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Content> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Content>);
|
|
151
150
|
contentVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility>[]>);
|
|
152
151
|
counterIncrement?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterIncrement> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterIncrement>);
|
|
153
152
|
counterReset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterReset> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterReset>);
|
|
154
153
|
counterSet?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterSet> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.CounterSet>);
|
|
155
154
|
cursor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Cursor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Cursor>);
|
|
155
|
+
cx?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cx<string | number> | readonly NonNullable<import("csstype").Property.Cx<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cx<string | number> | readonly NonNullable<import("csstype").Property.Cx<string | number>>[]>);
|
|
156
|
+
cy?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cy<string | number> | readonly NonNullable<import("csstype").Property.Cy<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Cy<string | number> | readonly NonNullable<import("csstype").Property.Cy<string | number>>[]>);
|
|
157
|
+
d?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.D> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.D>);
|
|
156
158
|
direction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction>[]>);
|
|
157
159
|
display?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display>);
|
|
160
|
+
dominantBaseline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline>[]>);
|
|
158
161
|
emptyCells?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells>[]>);
|
|
162
|
+
fieldSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FieldSizing | readonly NonNullable<import("csstype").Property.FieldSizing>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FieldSizing | readonly NonNullable<import("csstype").Property.FieldSizing>[]>);
|
|
163
|
+
fill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Fill> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Fill>);
|
|
164
|
+
fillOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity>[]>);
|
|
165
|
+
fillRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule>[]>);
|
|
159
166
|
flexBasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number>>[]>);
|
|
160
167
|
flexDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection>[]>);
|
|
161
168
|
flexGrow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow>[]>);
|
|
162
169
|
flexShrink?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink>[]>);
|
|
163
170
|
flexWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap>[]>);
|
|
164
171
|
float?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float>[]>);
|
|
172
|
+
floodColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FloodColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FloodColor>);
|
|
173
|
+
floodOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity>[]>);
|
|
165
174
|
fontFamily?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily>);
|
|
166
175
|
fontFeatureSettings?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings>);
|
|
167
176
|
fontKerning?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning>[]>);
|
|
@@ -171,7 +180,6 @@ export declare const SelectAutocomplete: {
|
|
|
171
180
|
fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number>>[]>);
|
|
172
181
|
fontSizeAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust>[]>);
|
|
173
182
|
fontSmooth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number>>[]>);
|
|
174
|
-
fontStretch?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStretch> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStretch>);
|
|
175
183
|
fontStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle>);
|
|
176
184
|
fontSynthesis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontSynthesis> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontSynthesis>);
|
|
177
185
|
fontSynthesisPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition>[]>);
|
|
@@ -187,6 +195,7 @@ export declare const SelectAutocomplete: {
|
|
|
187
195
|
fontVariantNumeric?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantNumeric> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariantNumeric>);
|
|
188
196
|
fontVariantPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition>[]>);
|
|
189
197
|
fontVariationSettings?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariationSettings> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontVariationSettings>);
|
|
198
|
+
fontWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontWidth> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontWidth>);
|
|
190
199
|
forcedColorAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust>[]>);
|
|
191
200
|
gridAutoColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number>>[]>);
|
|
192
201
|
gridAutoFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow>);
|
|
@@ -207,12 +216,13 @@ export declare const SelectAutocomplete: {
|
|
|
207
216
|
imageRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering>[]>);
|
|
208
217
|
imageResolution?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ImageResolution> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ImageResolution>);
|
|
209
218
|
initialLetter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter>[]>);
|
|
219
|
+
initialLetterAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetterAlign | readonly NonNullable<import("csstype").Property.InitialLetterAlign>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InitialLetterAlign | readonly NonNullable<import("csstype").Property.InitialLetterAlign>[]>);
|
|
210
220
|
inlineSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number>>[]>);
|
|
211
|
-
inputSecurity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity>[]>);
|
|
212
221
|
insetBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number>>[]>);
|
|
213
222
|
insetBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number>>[]>);
|
|
214
223
|
insetInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number>>[]>);
|
|
215
224
|
insetInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number>>[]>);
|
|
225
|
+
interpolateSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InterpolateSize | readonly NonNullable<import("csstype").Property.InterpolateSize>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InterpolateSize | readonly NonNullable<import("csstype").Property.InterpolateSize>[]>);
|
|
216
226
|
isolation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation>[]>);
|
|
217
227
|
justifyContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent>);
|
|
218
228
|
justifyItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems>);
|
|
@@ -220,6 +230,7 @@ export declare const SelectAutocomplete: {
|
|
|
220
230
|
justifyTracks?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyTracks> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyTracks>);
|
|
221
231
|
left?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number>>[]>);
|
|
222
232
|
letterSpacing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number>>[]>);
|
|
233
|
+
lightingColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.LightingColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.LightingColor>);
|
|
223
234
|
lineBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[]>);
|
|
224
235
|
lineHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number>>[]>);
|
|
225
236
|
lineHeightStep?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number>>[]>);
|
|
@@ -235,6 +246,9 @@ export declare const SelectAutocomplete: {
|
|
|
235
246
|
marginRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number>>[]>);
|
|
236
247
|
marginTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number>>[]>);
|
|
237
248
|
marginTrim?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim>[]>);
|
|
249
|
+
markerEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerEnd> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerEnd>);
|
|
250
|
+
markerMid?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerMid> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerMid>);
|
|
251
|
+
markerStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerStart> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerStart>);
|
|
238
252
|
maskBorderMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode>[]>);
|
|
239
253
|
maskBorderOutset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number>>[]>);
|
|
240
254
|
maskBorderRepeat?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderRepeat> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MaskBorderRepeat>);
|
|
@@ -269,6 +283,7 @@ export declare const SelectAutocomplete: {
|
|
|
269
283
|
motionRotation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetRotate>);
|
|
270
284
|
objectFit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit>[]>);
|
|
271
285
|
objectPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number>>[]>);
|
|
286
|
+
objectViewBox?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ObjectViewBox> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ObjectViewBox>);
|
|
272
287
|
offsetAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number>>[]>);
|
|
273
288
|
offsetDistance?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number>>[]>);
|
|
274
289
|
offsetPath?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetPath> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OffsetPath>);
|
|
@@ -280,7 +295,7 @@ export declare const SelectAutocomplete: {
|
|
|
280
295
|
orphans?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans>[]>);
|
|
281
296
|
outlineColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor>);
|
|
282
297
|
outlineOffset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number>>[]>);
|
|
283
|
-
outlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<
|
|
298
|
+
outlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle>[]>);
|
|
284
299
|
outlineWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number>>[]>);
|
|
285
300
|
overflowAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor>[]>);
|
|
286
301
|
overflowBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock>[]>);
|
|
@@ -304,25 +319,32 @@ export declare const SelectAutocomplete: {
|
|
|
304
319
|
paddingRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number>>[]>);
|
|
305
320
|
paddingTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number>>[]>);
|
|
306
321
|
page?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Page> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Page>);
|
|
307
|
-
pageBreakAfter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter>[]>);
|
|
308
|
-
pageBreakBefore?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore>[]>);
|
|
309
|
-
pageBreakInside?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside>[]>);
|
|
310
322
|
paintOrder?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PaintOrder> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PaintOrder>);
|
|
311
323
|
perspective?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number>>[]>);
|
|
312
324
|
perspectiveOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number>>[]>);
|
|
313
325
|
pointerEvents?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents>[]>);
|
|
314
326
|
position?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position>[]>);
|
|
327
|
+
positionAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionAnchor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionAnchor>);
|
|
328
|
+
positionArea?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea>);
|
|
329
|
+
positionTryFallbacks?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks>);
|
|
330
|
+
positionTryOrder?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PositionTryOrder | readonly NonNullable<import("csstype").Property.PositionTryOrder>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PositionTryOrder | readonly NonNullable<import("csstype").Property.PositionTryOrder>[]>);
|
|
331
|
+
positionVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionVisibility> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionVisibility>);
|
|
315
332
|
printColorAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust>[]>);
|
|
316
333
|
quotes?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Quotes> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Quotes>);
|
|
334
|
+
r?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.R<string | number> | readonly NonNullable<import("csstype").Property.R<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.R<string | number> | readonly NonNullable<import("csstype").Property.R<string | number>>[]>);
|
|
317
335
|
resize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize>[]>);
|
|
318
336
|
right?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number>>[]>);
|
|
319
337
|
rotate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Rotate> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Rotate>);
|
|
320
338
|
rowGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number>>[]>);
|
|
321
339
|
rubyAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign>[]>);
|
|
322
340
|
rubyMerge?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge>[]>);
|
|
341
|
+
rubyOverhang?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyOverhang | readonly NonNullable<import("csstype").Property.RubyOverhang>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RubyOverhang | readonly NonNullable<import("csstype").Property.RubyOverhang>[]>);
|
|
323
342
|
rubyPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.RubyPosition> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.RubyPosition>);
|
|
343
|
+
rx?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Rx<string | number> | readonly NonNullable<import("csstype").Property.Rx<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Rx<string | number> | readonly NonNullable<import("csstype").Property.Rx<string | number>>[]>);
|
|
344
|
+
ry?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Ry<string | number> | readonly NonNullable<import("csstype").Property.Ry<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Ry<string | number> | readonly NonNullable<import("csstype").Property.Ry<string | number>>[]>);
|
|
324
345
|
scale?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale>[]>);
|
|
325
346
|
scrollBehavior?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior>[]>);
|
|
347
|
+
scrollInitialTarget?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollInitialTarget | readonly NonNullable<import("csstype").Property.ScrollInitialTarget>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollInitialTarget | readonly NonNullable<import("csstype").Property.ScrollInitialTarget>[]>);
|
|
326
348
|
scrollMarginBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number>>[]>);
|
|
327
349
|
scrollMarginBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number>>[]>);
|
|
328
350
|
scrollMarginBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number>>[]>);
|
|
@@ -354,10 +376,28 @@ export declare const SelectAutocomplete: {
|
|
|
354
376
|
shapeImageThreshold?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold>[]>);
|
|
355
377
|
shapeMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number>>[]>);
|
|
356
378
|
shapeOutside?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ShapeOutside> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ShapeOutside>);
|
|
379
|
+
shapeRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering>[]>);
|
|
380
|
+
speakAs?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.SpeakAs> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.SpeakAs>);
|
|
381
|
+
stopColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StopColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StopColor>);
|
|
382
|
+
stopOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity>[]>);
|
|
383
|
+
stroke?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Stroke> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Stroke>);
|
|
384
|
+
strokeColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StrokeColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StrokeColor>);
|
|
385
|
+
strokeDasharray?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number>>[]>);
|
|
386
|
+
strokeDashoffset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number>>[]>);
|
|
387
|
+
strokeLinecap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap>[]>);
|
|
388
|
+
strokeLinejoin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin>[]>);
|
|
389
|
+
strokeMiterlimit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit>[]>);
|
|
390
|
+
strokeOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity>[]>);
|
|
391
|
+
strokeWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number>>[]>);
|
|
357
392
|
tabSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number>>[]>);
|
|
358
393
|
tableLayout?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout>[]>);
|
|
359
394
|
textAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign>[]>);
|
|
360
395
|
textAlignLast?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast>[]>);
|
|
396
|
+
textAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor>[]>);
|
|
397
|
+
textAutospace?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextAutospace> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextAutospace>);
|
|
398
|
+
textBox?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBox> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBox>);
|
|
399
|
+
textBoxEdge?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBoxEdge> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextBoxEdge>);
|
|
400
|
+
textBoxTrim?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextBoxTrim | readonly NonNullable<import("csstype").Property.TextBoxTrim>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextBoxTrim | readonly NonNullable<import("csstype").Property.TextBoxTrim>[]>);
|
|
361
401
|
textCombineUpright?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextCombineUpright>);
|
|
362
402
|
textDecorationColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor>);
|
|
363
403
|
textDecorationLine?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine>);
|
|
@@ -375,10 +415,12 @@ export declare const SelectAutocomplete: {
|
|
|
375
415
|
textRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering>[]>);
|
|
376
416
|
textShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextShadow> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextShadow>);
|
|
377
417
|
textSizeAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust>);
|
|
378
|
-
|
|
418
|
+
textSpacingTrim?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextSpacingTrim | readonly NonNullable<import("csstype").Property.TextSpacingTrim>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextSpacingTrim | readonly NonNullable<import("csstype").Property.TextSpacingTrim>[]>);
|
|
419
|
+
textTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextTransform> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextTransform>);
|
|
379
420
|
textUnderlineOffset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number>>[]>);
|
|
380
421
|
textUnderlinePosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextUnderlinePosition> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextUnderlinePosition>);
|
|
381
|
-
|
|
422
|
+
textWrapMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapMode | readonly NonNullable<import("csstype").Property.TextWrapMode>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapMode | readonly NonNullable<import("csstype").Property.TextWrapMode>[]>);
|
|
423
|
+
textWrapStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapStyle | readonly NonNullable<import("csstype").Property.TextWrapStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextWrapStyle | readonly NonNullable<import("csstype").Property.TextWrapStyle>[]>);
|
|
382
424
|
timelineScope?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TimelineScope> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TimelineScope>);
|
|
383
425
|
top?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number>>[]>);
|
|
384
426
|
touchAction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TouchAction> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TouchAction>);
|
|
@@ -394,15 +436,16 @@ export declare const SelectAutocomplete: {
|
|
|
394
436
|
translate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number>>[]>);
|
|
395
437
|
unicodeBidi?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi>[]>);
|
|
396
438
|
userSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[]>);
|
|
439
|
+
vectorEffect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect>[]>);
|
|
397
440
|
verticalAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number>>[]>);
|
|
398
441
|
viewTimelineAxis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineAxis> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineAxis>);
|
|
399
442
|
viewTimelineInset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number>>[]>);
|
|
400
443
|
viewTimelineName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineName> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimelineName>);
|
|
444
|
+
viewTransitionClass?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionClass> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionClass>);
|
|
401
445
|
viewTransitionName?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionName> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTransitionName>);
|
|
402
446
|
visibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility>[]>);
|
|
403
447
|
whiteSpace?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace>);
|
|
404
448
|
whiteSpaceCollapse?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse>[]>);
|
|
405
|
-
whiteSpaceTrim?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpaceTrim> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpaceTrim>);
|
|
406
449
|
widows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows>[]>);
|
|
407
450
|
width?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number>>[]>);
|
|
408
451
|
willChange?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WillChange> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WillChange>);
|
|
@@ -410,6 +453,8 @@ export declare const SelectAutocomplete: {
|
|
|
410
453
|
wordSpacing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number>>[]>);
|
|
411
454
|
wordWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap>[]>);
|
|
412
455
|
writingMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[]>);
|
|
456
|
+
x?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.X<string | number> | readonly NonNullable<import("csstype").Property.X<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.X<string | number> | readonly NonNullable<import("csstype").Property.X<string | number>>[]>);
|
|
457
|
+
y?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Y<string | number> | readonly NonNullable<import("csstype").Property.Y<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Y<string | number> | readonly NonNullable<import("csstype").Property.Y<string | number>>[]>);
|
|
413
458
|
zoom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom>[]>);
|
|
414
459
|
all?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Globals | readonly NonNullable<import("csstype").Globals>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Globals | readonly NonNullable<import("csstype").Globals>[]>);
|
|
415
460
|
animation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[]>);
|
|
@@ -417,14 +462,20 @@ export declare const SelectAutocomplete: {
|
|
|
417
462
|
background?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number>>[]>);
|
|
418
463
|
backgroundPosition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number>>[]>);
|
|
419
464
|
borderBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number>>[]>);
|
|
465
|
+
borderBlockColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockColor>);
|
|
420
466
|
borderBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number>>[]>);
|
|
421
467
|
borderBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number>>[]>);
|
|
468
|
+
borderBlockStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStyle> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderBlockStyle>);
|
|
469
|
+
borderBlockWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number>>[]>);
|
|
422
470
|
borderBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number>>[]>);
|
|
423
471
|
borderColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor>);
|
|
424
472
|
borderImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[]>);
|
|
425
473
|
borderInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number>>[]>);
|
|
474
|
+
borderInlineColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineColor>);
|
|
426
475
|
borderInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number>>[]>);
|
|
427
476
|
borderInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number>>[]>);
|
|
477
|
+
borderInlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStyle> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineStyle>);
|
|
478
|
+
borderInlineWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number>>[]>);
|
|
428
479
|
borderLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number>>[]>);
|
|
429
480
|
borderRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number>>[]>);
|
|
430
481
|
borderRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number>>[]>);
|
|
@@ -465,6 +516,7 @@ export declare const SelectAutocomplete: {
|
|
|
465
516
|
placeContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceContent> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceContent>);
|
|
466
517
|
placeItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceItems> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceItems>);
|
|
467
518
|
placeSelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceSelf> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PlaceSelf>);
|
|
519
|
+
positionTry?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTry> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTry>);
|
|
468
520
|
scrollMargin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number>>[]>);
|
|
469
521
|
scrollMarginBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number>>[]>);
|
|
470
522
|
scrollMarginInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number>>[]>);
|
|
@@ -475,6 +527,7 @@ export declare const SelectAutocomplete: {
|
|
|
475
527
|
scrollTimeline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimeline> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollTimeline>);
|
|
476
528
|
textDecoration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number>>[]>);
|
|
477
529
|
textEmphasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis>);
|
|
530
|
+
textWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextWrap> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextWrap>);
|
|
478
531
|
transition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>>);
|
|
479
532
|
viewTimeline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimeline> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ViewTimeline>);
|
|
480
533
|
MozAnimationDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationDelay<string & {}>>);
|
|
@@ -486,6 +539,7 @@ export declare const SelectAutocomplete: {
|
|
|
486
539
|
MozAnimationPlayState?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationPlayState>);
|
|
487
540
|
MozAnimationTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AnimationTimingFunction>);
|
|
488
541
|
MozAppearance?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance>[]>);
|
|
542
|
+
MozBackfaceVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility>[]>);
|
|
489
543
|
MozBinding?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBinding> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBinding>);
|
|
490
544
|
MozBorderBottomColors?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderBottomColors> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderBottomColors>);
|
|
491
545
|
MozBorderEndColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderInlineEndColor>);
|
|
@@ -497,8 +551,6 @@ export declare const SelectAutocomplete: {
|
|
|
497
551
|
MozBorderStartStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle>[]>);
|
|
498
552
|
MozBorderTopColors?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderTopColors> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozBorderTopColors>);
|
|
499
553
|
MozBoxSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing>[]>);
|
|
500
|
-
MozColumnCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount>[]>);
|
|
501
|
-
MozColumnFill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill>[]>);
|
|
502
554
|
MozColumnRuleColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleColor>);
|
|
503
555
|
MozColumnRuleStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ColumnRuleStyle>);
|
|
504
556
|
MozColumnRuleWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number>>[]>);
|
|
@@ -507,7 +559,6 @@ export declare const SelectAutocomplete: {
|
|
|
507
559
|
MozFontFeatureSettings?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFeatureSettings>);
|
|
508
560
|
MozFontLanguageOverride?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontLanguageOverride> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontLanguageOverride>);
|
|
509
561
|
MozHyphens?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens>[]>);
|
|
510
|
-
MozImageRegion?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozImageRegion> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MozImageRegion>);
|
|
511
562
|
MozMarginEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number>>[]>);
|
|
512
563
|
MozMarginStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number>>[]>);
|
|
513
564
|
MozOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient>[]>);
|
|
@@ -518,11 +569,15 @@ export declare const SelectAutocomplete: {
|
|
|
518
569
|
MozOutlineRadiusTopright?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number>>[]>);
|
|
519
570
|
MozPaddingEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number>>[]>);
|
|
520
571
|
MozPaddingStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number>>[]>);
|
|
572
|
+
MozPerspective?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number>>[]>);
|
|
573
|
+
MozPerspectiveOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number>>[]>);
|
|
521
574
|
MozStackSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing>[]>);
|
|
522
575
|
MozTabSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number>>[]>);
|
|
523
576
|
MozTextBlink?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink>[]>);
|
|
524
577
|
MozTextSizeAdjust?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextSizeAdjust>);
|
|
525
|
-
|
|
578
|
+
MozTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform>);
|
|
579
|
+
MozTransformOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number>>[]>);
|
|
580
|
+
MozTransformStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle>[]>);
|
|
526
581
|
MozUserModify?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify>[]>);
|
|
527
582
|
MozUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[]>);
|
|
528
583
|
MozWindowDragging?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging>[]>);
|
|
@@ -641,6 +696,8 @@ export declare const SelectAutocomplete: {
|
|
|
641
696
|
WebkitJustifyContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent>);
|
|
642
697
|
WebkitLineBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[]>);
|
|
643
698
|
WebkitLineClamp?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp>[]>);
|
|
699
|
+
WebkitLogicalHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number>>[]>);
|
|
700
|
+
WebkitLogicalWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number>>[]>);
|
|
644
701
|
WebkitMarginEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number>>[]>);
|
|
645
702
|
WebkitMarginStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number>>[]>);
|
|
646
703
|
WebkitMaskAttachment?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskAttachment> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WebkitMaskAttachment>);
|
|
@@ -695,13 +752,14 @@ export declare const SelectAutocomplete: {
|
|
|
695
752
|
WebkitTransitionProperty?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty>);
|
|
696
753
|
WebkitTransitionTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction>);
|
|
697
754
|
WebkitUserModify?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify>[]>);
|
|
698
|
-
WebkitUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.
|
|
755
|
+
WebkitUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect>[]>);
|
|
699
756
|
WebkitWritingMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode>[]>);
|
|
700
757
|
MozAnimation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[]>);
|
|
701
758
|
MozBorderImage?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage>[]>);
|
|
702
759
|
MozColumnRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number>>[]>);
|
|
703
760
|
MozColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number>>[]>);
|
|
704
761
|
MozOutlineRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number>>[]>);
|
|
762
|
+
MozTransition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>>);
|
|
705
763
|
msContentZoomLimit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimit> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomLimit>);
|
|
706
764
|
msContentZoomSnap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomSnap> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MsContentZoomSnap>);
|
|
707
765
|
msFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number>>[]>);
|
|
@@ -722,7 +780,6 @@ export declare const SelectAutocomplete: {
|
|
|
722
780
|
WebkitTextEmphasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextEmphasis>);
|
|
723
781
|
WebkitTextStroke?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number>>[]>);
|
|
724
782
|
WebkitTransition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>>);
|
|
725
|
-
azimuth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Azimuth> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Azimuth>);
|
|
726
783
|
boxAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign>[]>);
|
|
727
784
|
boxDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection>[]>);
|
|
728
785
|
boxFlex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex>[]>);
|
|
@@ -732,16 +789,22 @@ export declare const SelectAutocomplete: {
|
|
|
732
789
|
boxOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient>[]>);
|
|
733
790
|
boxPack?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack>[]>);
|
|
734
791
|
clip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Clip> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Clip>);
|
|
792
|
+
fontStretch?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStretch> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStretch>);
|
|
735
793
|
gridColumnGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number>>[]>);
|
|
736
794
|
gridGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number>>[]>);
|
|
737
795
|
gridRowGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number>>[]>);
|
|
738
796
|
imeMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode>[]>);
|
|
797
|
+
insetArea?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionArea>);
|
|
739
798
|
offsetBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number>>[]>);
|
|
740
799
|
offsetBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number>>[]>);
|
|
741
800
|
offsetBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number>>[]>);
|
|
742
801
|
offsetInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number>>[]>);
|
|
743
802
|
offsetInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number>>[]>);
|
|
744
803
|
offsetInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number>>[]>);
|
|
804
|
+
pageBreakAfter?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter>[]>);
|
|
805
|
+
pageBreakBefore?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore>[]>);
|
|
806
|
+
pageBreakInside?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside>[]>);
|
|
807
|
+
positionTryOptions?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.PositionTryFallbacks>);
|
|
745
808
|
scrollSnapCoordinate?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number>>[]>);
|
|
746
809
|
scrollSnapDestination?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number>>[]>);
|
|
747
810
|
scrollSnapPointsX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapPointsX> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.ScrollSnapPointsX>);
|
|
@@ -759,9 +822,7 @@ export declare const SelectAutocomplete: {
|
|
|
759
822
|
KhtmlLineBreak?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak>[]>);
|
|
760
823
|
KhtmlOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity>[]>);
|
|
761
824
|
KhtmlUserSelect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect>[]>);
|
|
762
|
-
MozBackfaceVisibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility>[]>);
|
|
763
825
|
MozBackgroundClip?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip>);
|
|
764
|
-
MozBackgroundInlinePolicy?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak>[]>);
|
|
765
826
|
MozBackgroundOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin>);
|
|
766
827
|
MozBackgroundSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number>>[]>);
|
|
767
828
|
MozBorderRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number>>[]>);
|
|
@@ -776,27 +837,24 @@ export declare const SelectAutocomplete: {
|
|
|
776
837
|
MozBoxOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient>[]>);
|
|
777
838
|
MozBoxPack?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack>[]>);
|
|
778
839
|
MozBoxShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BoxShadow> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BoxShadow>);
|
|
840
|
+
MozColumnCount?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount>[]>);
|
|
841
|
+
MozColumnFill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill>[]>);
|
|
779
842
|
MozFloatEdge?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge>[]>);
|
|
780
843
|
MozForceBrokenImageIcon?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon>[]>);
|
|
781
844
|
MozOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity>[]>);
|
|
782
845
|
MozOutline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number>>[]>);
|
|
783
846
|
MozOutlineColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.OutlineColor>);
|
|
784
|
-
MozOutlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<
|
|
847
|
+
MozOutlineStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle>[]>);
|
|
785
848
|
MozOutlineWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number>>[]>);
|
|
786
|
-
MozPerspective?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number>>[]>);
|
|
787
|
-
MozPerspectiveOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number>>[]>);
|
|
788
849
|
MozTextAlignLast?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast>[]>);
|
|
789
850
|
MozTextDecorationColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationColor>);
|
|
790
851
|
MozTextDecorationLine?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextDecorationLine>);
|
|
791
852
|
MozTextDecorationStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle>[]>);
|
|
792
|
-
MozTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transform>);
|
|
793
|
-
MozTransformOrigin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number>>[]>);
|
|
794
|
-
MozTransformStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle>[]>);
|
|
795
|
-
MozTransition?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Transition<string & {}>>);
|
|
796
853
|
MozTransitionDelay?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDelay<string & {}>>);
|
|
797
854
|
MozTransitionDuration?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}>> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionDuration<string & {}>>);
|
|
798
855
|
MozTransitionProperty?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionProperty>);
|
|
799
856
|
MozTransitionTimingFunction?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TransitionTimingFunction>);
|
|
857
|
+
MozUserFocus?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus>[]>);
|
|
800
858
|
MozUserInput?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput>[]>);
|
|
801
859
|
msImeMode?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode>[]>);
|
|
802
860
|
OAnimation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}>>[]>);
|
|
@@ -829,36 +887,10 @@ export declare const SelectAutocomplete: {
|
|
|
829
887
|
WebkitBoxOrdinalGroup?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup>[]>);
|
|
830
888
|
WebkitBoxOrient?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient>[]>);
|
|
831
889
|
WebkitBoxPack?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack>[]>);
|
|
832
|
-
alignmentBaseline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline>[]>);
|
|
833
|
-
baselineShift?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number>>[]>);
|
|
834
|
-
clipRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule>[]>);
|
|
835
890
|
colorInterpolation?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation>[]>);
|
|
836
891
|
colorRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering>[]>);
|
|
837
|
-
dominantBaseline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline>[]>);
|
|
838
|
-
fill?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Fill> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Fill>);
|
|
839
|
-
fillOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity>[]>);
|
|
840
|
-
fillRule?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule>[]>);
|
|
841
|
-
floodColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FloodColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FloodColor>);
|
|
842
|
-
floodOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity>[]>);
|
|
843
892
|
glyphOrientationVertical?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical>[]>);
|
|
844
|
-
|
|
845
|
-
markerEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerEnd> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerEnd>);
|
|
846
|
-
markerMid?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerMid> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerMid>);
|
|
847
|
-
markerStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerStart> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.MarkerStart>);
|
|
848
|
-
shapeRendering?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering>[]>);
|
|
849
|
-
stopColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StopColor> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.StopColor>);
|
|
850
|
-
stopOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity>[]>);
|
|
851
|
-
stroke?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Stroke> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Stroke>);
|
|
852
|
-
strokeDasharray?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number>>[]>);
|
|
853
|
-
strokeDashoffset?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number>>[]>);
|
|
854
|
-
strokeLinecap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap>[]>);
|
|
855
|
-
strokeLinejoin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin>[]>);
|
|
856
|
-
strokeMiterlimit?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit>[]>);
|
|
857
|
-
strokeOpacity?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity>[]>);
|
|
858
|
-
strokeWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number>>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number>>[]>);
|
|
859
|
-
textAnchor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor>[]>);
|
|
860
|
-
vectorEffect?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect>[]> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect>[]>);
|
|
861
|
-
border?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "hidden" | "-moz-initial" | "inherit" | "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" | "grey" | "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" | "none" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "medium" | "thick" | "thin"> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "hidden" | "-moz-initial" | "inherit" | "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" | "grey" | "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" | "none" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "medium" | "thick" | "thin">);
|
|
893
|
+
border?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "hidden" | "-moz-initial" | "inherit" | "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" | "grey" | "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" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "transparent" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "none" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "medium" | "thick" | "thin"> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "hidden" | "-moz-initial" | "inherit" | "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" | "grey" | "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" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "transparent" | "AccentColor" | "AccentColorText" | "ActiveText" | "ButtonBorder" | "ButtonFace" | "ButtonText" | "Canvas" | "CanvasText" | "Field" | "FieldText" | "GrayText" | "Highlight" | "HighlightText" | "LinkText" | "Mark" | "MarkText" | "SelectedItem" | "SelectedItemText" | "VisitedText" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonHighlight" | "ButtonShadow" | "CaptionText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentColor" | "none" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "medium" | "thick" | "thin">);
|
|
862
894
|
boxShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow>);
|
|
863
895
|
fontWeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {})> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {})>);
|
|
864
896
|
zIndex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {})> | ((theme: {}) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {})>);
|
|
@@ -905,12 +937,15 @@ export declare const SelectAutocomplete: {
|
|
|
905
937
|
":-webkit-any()"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
906
938
|
"::cue"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
907
939
|
"::cue-region"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
940
|
+
"::highlight"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
908
941
|
"::part"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
942
|
+
"::picker"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
909
943
|
"::slotted"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
910
944
|
"::view-transition-group"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
911
945
|
"::view-transition-image-pair"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
912
946
|
"::view-transition-new"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
913
947
|
"::view-transition-old"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
948
|
+
":active-view-transition-type"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
914
949
|
":dir"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
915
950
|
":has"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
916
951
|
":host"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
@@ -923,6 +958,7 @@ export declare const SelectAutocomplete: {
|
|
|
923
958
|
":nth-last-child"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
924
959
|
":nth-last-of-type"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
925
960
|
":nth-of-type"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
961
|
+
":state"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
926
962
|
":where"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
927
963
|
":-khtml-any-link"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
928
964
|
":-moz-any-link"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
@@ -936,6 +972,7 @@ export declare const SelectAutocomplete: {
|
|
|
936
972
|
":-ms-fullscreen"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
937
973
|
":-ms-input-placeholder"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
938
974
|
":-webkit-any-link"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
975
|
+
":-webkit-autofill"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
939
976
|
":-webkit-full-screen"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
940
977
|
"::-moz-placeholder"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
941
978
|
"::-moz-progress-bar"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
@@ -960,6 +997,7 @@ export declare const SelectAutocomplete: {
|
|
|
960
997
|
"::-ms-track"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
961
998
|
"::-ms-value"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
962
999
|
"::-webkit-backdrop"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1000
|
+
"::-webkit-file-upload-button"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
963
1001
|
"::-webkit-input-placeholder"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
964
1002
|
"::-webkit-progress-bar"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
965
1003
|
"::-webkit-progress-inner-value"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
@@ -969,20 +1007,29 @@ export declare const SelectAutocomplete: {
|
|
|
969
1007
|
"::after"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
970
1008
|
"::backdrop"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
971
1009
|
"::before"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1010
|
+
"::checkmark"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1011
|
+
"::details-content"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1012
|
+
"::file-selector-button"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
972
1013
|
"::first-letter"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
973
1014
|
"::first-line"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
974
1015
|
"::grammar-error"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
975
1016
|
"::marker"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1017
|
+
"::picker-icon"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
976
1018
|
"::placeholder"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1019
|
+
"::scroll-marker"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1020
|
+
"::scroll-marker-group"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
977
1021
|
"::selection"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
978
1022
|
"::spelling-error"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
979
1023
|
"::target-text"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
980
1024
|
"::view-transition"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
981
1025
|
":active"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1026
|
+
":active-view-transition"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
982
1027
|
":after"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
983
1028
|
":any-link"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1029
|
+
":autofill"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
984
1030
|
":before"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
985
1031
|
":blank"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1032
|
+
":buffering"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
986
1033
|
":checked"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
987
1034
|
":current"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
988
1035
|
":default"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
@@ -1000,6 +1047,7 @@ export declare const SelectAutocomplete: {
|
|
|
1000
1047
|
":focus-within"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1001
1048
|
":fullscreen"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1002
1049
|
":future"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1050
|
+
":has-slotted"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1003
1051
|
":hover"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1004
1052
|
":in-range"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1005
1053
|
":indeterminate"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
@@ -1009,10 +1057,11 @@ export declare const SelectAutocomplete: {
|
|
|
1009
1057
|
":left"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1010
1058
|
":link"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1011
1059
|
":local-link"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1012
|
-
":
|
|
1013
|
-
":
|
|
1060
|
+
":modal"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1061
|
+
":muted"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1014
1062
|
":only-child"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1015
1063
|
":only-of-type"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1064
|
+
":open"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1016
1065
|
":optional"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1017
1066
|
":out-of-range"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1018
1067
|
":past"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
@@ -1020,18 +1069,24 @@ export declare const SelectAutocomplete: {
|
|
|
1020
1069
|
":picture-in-picture"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1021
1070
|
":placeholder-shown"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1022
1071
|
":playing"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1072
|
+
":popover-open"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1023
1073
|
":read-only"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1024
1074
|
":read-write"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1025
1075
|
":required"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1026
1076
|
":right"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1027
1077
|
":root"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1028
1078
|
":scope"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1079
|
+
":seeking"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1080
|
+
":stalled"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1029
1081
|
":target"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1082
|
+
":target-current"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1030
1083
|
":target-within"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1031
1084
|
":user-invalid"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1032
1085
|
":user-valid"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1033
1086
|
":valid"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1034
1087
|
":visited"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1088
|
+
":volume-locked"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1089
|
+
":xr-overlay"?: import("@mui/system").SystemStyleObject<{}> | ((theme: {}) => import("@mui/system").SystemStyleObject<{}>);
|
|
1035
1090
|
p: string;
|
|
1036
1091
|
"& .MuiOutlinedInput-root": any;
|
|
1037
1092
|
"& .MuiInputBase-input": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectAutocomplete.d.ts","sourceRoot":"","sources":["../src/SelectAutocomplete.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EACZ,6BAA6B,EAI7B,OAAO,EAER,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,EAEZ,cAAc,EAKf,MAAM,OAAO,CAAC;AAGf,KAAK,IAAI,GAAG;IACV,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AA+HF,KAAK,sBAAsB,GAAG,UAAU,CACtC,OAAO,YAAY,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC,CACH,CAAC,CAAC,CAAC,CAAC;AAiBL,eAAO,MAAM,kBAAkB;YACtB;QACL,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;QAC9C,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;QAC7C,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;QAC1B,SAAS,CAAC,EAAE;YACV,KAAK,CAAC,EAAE,OAAO,CAAC;YAChB,SAAS,CAAC,EAAE,OAAO,CAAC;YACpB,MAAM,CAAC,EAAE,OAAO,CAAC;YACjB,OAAO,CAAC,EAAE,OAAO,CAAC;SACnB,GAAG,sBAAsB,CAAC,WAAW,CAAC,CAAC;QACxC,KAAK,EAAE;YACL,KAAK,EAAE,MAAM,CAAC;YACd,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;SACxB,EAAE,CAAC;QACJ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,gBAAgB,CAAC,EAAE,OAAO,CAAC;KAC5B,GAAG,IAAI,CACN,sBAAsB,EACpB,UAAU,GACV,OAAO,GACP,QAAQ,GACR,MAAM,GACN,aAAa,GACb,SAAS,GACT,kBAAkB,GAClB,UAAU,CACb;gBAvKkC;QACnC,IAAI,EAAE,OAAO,GAAG,QAAQ,CAAC;QACzB,EAAE,CAAC,EAAE,OAAO,CAAC;KACd
|
|
1
|
+
{"version":3,"file":"SelectAutocomplete.d.ts","sourceRoot":"","sources":["../src/SelectAutocomplete.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EACZ,6BAA6B,EAI7B,OAAO,EAER,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,EAEZ,cAAc,EAKf,MAAM,OAAO,CAAC;AAGf,KAAK,IAAI,GAAG;IACV,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AA+HF,KAAK,sBAAsB,GAAG,UAAU,CACtC,OAAO,YAAY,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC,CACH,CAAC,CAAC,CAAC,CAAC;AAiBL,eAAO,MAAM,kBAAkB;YACtB;QACL,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;QAC9C,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;QAC7C,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;QAC1B,SAAS,CAAC,EAAE;YACV,KAAK,CAAC,EAAE,OAAO,CAAC;YAChB,SAAS,CAAC,EAAE,OAAO,CAAC;YACpB,MAAM,CAAC,EAAE,OAAO,CAAC;YACjB,OAAO,CAAC,EAAE,OAAO,CAAC;SACnB,GAAG,sBAAsB,CAAC,WAAW,CAAC,CAAC;QACxC,KAAK,EAAE;YACL,KAAK,EAAE,MAAM,CAAC;YACd,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;SACxB,EAAE,CAAC;QACJ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,gBAAgB,CAAC,EAAE,OAAO,CAAC;KAC5B,GAAG,IAAI,CACN,sBAAsB,EACpB,UAAU,GACV,OAAO,GACP,QAAQ,GACR,MAAM,GACN,aAAa,GACb,SAAS,GACT,kBAAkB,GAClB,UAAU,CACb;gBAvKkC;QACnC,IAAI,EAAE,OAAO,GAAG,QAAQ,CAAC;QACzB,EAAE,CAAC,EAAE,OAAO,CAAC;KACd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA4B2C;QAC1C,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;QAC1B,EAAE,CAAC,EAAE,OAAO,CAAC;QACb,MAAM,EAAE,6BAA6B,CAAC;KACvC;mBAqBC,CAAC,SAAS;QACR,KAAK,EAAE,MAAM,CAAC;QACd,EAAE,EAAE,MAAM,CAAC;KACZ,UACO;QACR,KAAK,EAAE,cAAc,CAAC,aAAa,CAAC,GAAG;YACrC,GAAG,EAAE,GAAG,CAAC;SACV,CAAC;QACF,MAAM,EAAE,CAAC,CAAC;QACV,KAAK,EAAE;YAAE,QAAQ,EAAE,OAAO,CAAA;SAAE,CAAC;QAC7B,QAAQ,CAAC,EAAE,CACT,KAAK,EAAE,MAAM,EACb,IAAI,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,KAC5C,IAAI,CAAC;QACV,MAAM,CAAC,EAAE,CACP,KAAK,EAAE,MAAM,EACb,IAAI,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,KAC5C,IAAI,CAAC;KACX;qBAmDuB;QACtB,WAAW,CAAC,EAAE,WAAW,CAAC;QAC1B,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;QAC1B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;KAC3B;CAwHA,CAAC"}
|
package/SelectAutocomplete.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rnaga/wp-next-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "node ../../scripts/build-ui.mjs",
|
|
6
6
|
"release-old": "node ../../scripts/release.mjs",
|
|
@@ -26,8 +26,5 @@
|
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
28
|
"url": "https://github.com/rnaga/wp-next.git"
|
|
29
|
-
},
|
|
30
|
-
"publishConfig": {
|
|
31
|
-
"registry": "https://npm.pkg.github.com"
|
|
32
29
|
}
|
|
33
30
|
}
|