@chris-c-brine/form-dialog 1.2.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/buttons/FormCancelButton.d.ts +2 -1
- package/dist/components/buttons/FormResetButton.d.ts +3 -8
- package/dist/components/buttons/FormSubmitButton.d.ts +4 -11
- package/dist/components/buttons/LoadingButton.d.ts +2 -2
- package/dist/components/dialogs/FormDialogActions.d.ts +1 -2
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/useFormButton.d.ts +5 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +106 -17342
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +106 -17342
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +6 -46
- package/dist/utils/applyDefaultFormDialogProps.d.ts +256 -358
- package/dist/utils/formState.d.ts +7 -0
- package/dist/utils/index.d.ts +1 -1
- package/package.json +25 -29
|
@@ -2,152 +2,154 @@ import { ReactNode } from "react";
|
|
|
2
2
|
import { ApplyDefaultFormDialogPropsProps } from "../types";
|
|
3
3
|
export declare function applyDefaultFormDialogProps({ resetProps, submitProps, gridProps, cancelProps, variant }: ApplyDefaultFormDialogPropsProps): {
|
|
4
4
|
resetButtonProps: {
|
|
5
|
-
|
|
6
|
-
style?: React.CSSProperties | undefined;
|
|
5
|
+
children?: string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
|
|
7
6
|
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
7
|
+
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
8
|
+
disabled?: boolean | undefined;
|
|
9
|
+
disableElevation?: boolean | undefined;
|
|
10
|
+
disableFocusRipple?: boolean | undefined;
|
|
11
|
+
endIcon?: React.ReactNode;
|
|
12
|
+
fullWidth?: boolean | undefined;
|
|
13
|
+
href?: string | undefined;
|
|
14
|
+
loading?: boolean | undefined;
|
|
15
|
+
loadingIndicator?: React.ReactNode;
|
|
16
|
+
loadingPosition?: "start" | "end" | "center" | undefined;
|
|
17
|
+
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
18
|
+
startIcon?: React.ReactNode;
|
|
19
|
+
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
20
|
+
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
8
21
|
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
9
22
|
centerRipple?: boolean | undefined;
|
|
10
|
-
children?: string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
|
|
11
23
|
disableRipple?: boolean | undefined;
|
|
12
24
|
disableTouchRipple?: boolean | undefined;
|
|
13
25
|
focusRipple?: boolean | undefined;
|
|
14
26
|
focusVisibleClassName?: string | undefined;
|
|
15
27
|
LinkComponent?: React.ElementType | undefined;
|
|
28
|
+
nativeButton?: boolean | undefined;
|
|
16
29
|
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
17
|
-
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
18
30
|
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
19
31
|
TouchRippleProps?: Partial<import("@mui/material").TouchRippleProps> | undefined;
|
|
20
32
|
touchRippleRef?: React.Ref<import("@mui/material").TouchRippleActions> | undefined;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
endIcon?: ReactNode;
|
|
27
|
-
fullWidth?: boolean | undefined;
|
|
28
|
-
href?: string | undefined;
|
|
29
|
-
loading?: boolean | null | undefined;
|
|
30
|
-
loadingIndicator?: ReactNode;
|
|
31
|
-
loadingPosition?: "start" | "end" | "center" | undefined;
|
|
32
|
-
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
33
|
-
startIcon?: ReactNode;
|
|
34
|
-
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
35
|
-
form?: string | undefined | undefined;
|
|
36
|
-
slot?: string | undefined | undefined;
|
|
37
|
-
title?: string | undefined | undefined;
|
|
33
|
+
className?: string | undefined;
|
|
34
|
+
style?: React.CSSProperties | undefined;
|
|
35
|
+
form?: string | undefined;
|
|
36
|
+
slot?: string | undefined;
|
|
37
|
+
title?: string | undefined;
|
|
38
38
|
ref?: import("react").Ref<HTMLButtonElement> | undefined;
|
|
39
39
|
key?: import("react").Key | null | undefined;
|
|
40
|
-
formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
|
|
41
|
-
formEncType?: string | undefined
|
|
42
|
-
formMethod?: string | undefined
|
|
43
|
-
formNoValidate?: boolean | undefined
|
|
44
|
-
formTarget?: string | undefined
|
|
45
|
-
name?: string | undefined
|
|
46
|
-
type?: "submit" | "reset" | "button" | undefined
|
|
47
|
-
value?: string |
|
|
48
|
-
defaultChecked?: boolean | undefined
|
|
40
|
+
formAction?: string | ((formData: FormData) => void | Promise<void>) | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
41
|
+
formEncType?: string | undefined;
|
|
42
|
+
formMethod?: string | undefined;
|
|
43
|
+
formNoValidate?: boolean | undefined;
|
|
44
|
+
formTarget?: string | undefined;
|
|
45
|
+
name?: string | undefined;
|
|
46
|
+
type?: "submit" | "reset" | "button" | undefined;
|
|
47
|
+
value?: string | readonly string[] | number | undefined;
|
|
48
|
+
defaultChecked?: boolean | undefined;
|
|
49
49
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
50
|
-
suppressContentEditableWarning?: boolean | undefined
|
|
51
|
-
suppressHydrationWarning?: boolean | undefined
|
|
52
|
-
accessKey?: string | undefined
|
|
53
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {})
|
|
54
|
-
autoFocus?: boolean | undefined
|
|
55
|
-
contentEditable?:
|
|
56
|
-
contextMenu?: string | undefined
|
|
57
|
-
dir?: string | undefined
|
|
50
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
51
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
52
|
+
accessKey?: string | undefined;
|
|
53
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
54
|
+
autoFocus?: boolean | undefined;
|
|
55
|
+
contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
|
|
56
|
+
contextMenu?: string | undefined;
|
|
57
|
+
dir?: string | undefined;
|
|
58
58
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
59
|
-
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined
|
|
60
|
-
hidden?: boolean | undefined
|
|
61
|
-
id?: string | undefined
|
|
62
|
-
lang?: string | undefined
|
|
63
|
-
nonce?: string | undefined
|
|
59
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
60
|
+
hidden?: boolean | undefined;
|
|
61
|
+
id?: string | undefined;
|
|
62
|
+
lang?: string | undefined;
|
|
63
|
+
nonce?: string | undefined;
|
|
64
64
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
65
|
-
|
|
65
|
+
translate?: "yes" | "no" | undefined;
|
|
66
|
+
radioGroup?: string | undefined;
|
|
66
67
|
role?: import("react").AriaRole | undefined;
|
|
67
|
-
about?: string | undefined
|
|
68
|
-
|
|
68
|
+
about?: string | undefined;
|
|
69
|
+
content?: string | undefined;
|
|
70
|
+
datatype?: string | undefined;
|
|
69
71
|
inlist?: any;
|
|
70
|
-
prefix?: string | undefined
|
|
71
|
-
property?: string | undefined
|
|
72
|
-
rel?: string | undefined
|
|
73
|
-
resource?: string | undefined
|
|
74
|
-
rev?: string | undefined
|
|
75
|
-
typeof?: string | undefined
|
|
76
|
-
vocab?: string | undefined
|
|
77
|
-
autoCorrect?: string | undefined
|
|
78
|
-
autoSave?: string | undefined
|
|
79
|
-
itemProp?: string | undefined
|
|
80
|
-
itemScope?: boolean | undefined
|
|
81
|
-
itemType?: string | undefined
|
|
82
|
-
itemID?: string | undefined
|
|
83
|
-
itemRef?: string | undefined
|
|
84
|
-
results?: number | undefined
|
|
85
|
-
security?: string | undefined
|
|
86
|
-
unselectable?: "on" | "off" | undefined
|
|
87
|
-
popover?: "" | "auto" | "manual" |
|
|
88
|
-
popoverTargetAction?: "toggle" | "show" | "hide" | undefined
|
|
89
|
-
popoverTarget?: string | undefined
|
|
90
|
-
inert?: boolean | undefined
|
|
91
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined
|
|
92
|
-
is?: string | undefined
|
|
93
|
-
exportparts?: string | undefined
|
|
94
|
-
part?: string | undefined
|
|
95
|
-
"aria-activedescendant"?: string | undefined
|
|
72
|
+
prefix?: string | undefined;
|
|
73
|
+
property?: string | undefined;
|
|
74
|
+
rel?: string | undefined;
|
|
75
|
+
resource?: string | undefined;
|
|
76
|
+
rev?: string | undefined;
|
|
77
|
+
typeof?: string | undefined;
|
|
78
|
+
vocab?: string | undefined;
|
|
79
|
+
autoCorrect?: string | undefined;
|
|
80
|
+
autoSave?: string | undefined;
|
|
81
|
+
itemProp?: string | undefined;
|
|
82
|
+
itemScope?: boolean | undefined;
|
|
83
|
+
itemType?: string | undefined;
|
|
84
|
+
itemID?: string | undefined;
|
|
85
|
+
itemRef?: string | undefined;
|
|
86
|
+
results?: number | undefined;
|
|
87
|
+
security?: string | undefined;
|
|
88
|
+
unselectable?: "on" | "off" | undefined;
|
|
89
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
90
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
91
|
+
popoverTarget?: string | undefined;
|
|
92
|
+
inert?: boolean | undefined;
|
|
93
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
94
|
+
is?: string | undefined;
|
|
95
|
+
exportparts?: string | undefined;
|
|
96
|
+
part?: string | undefined;
|
|
97
|
+
"aria-activedescendant"?: string | undefined;
|
|
96
98
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
97
|
-
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined
|
|
98
|
-
"aria-braillelabel"?: string | undefined
|
|
99
|
-
"aria-brailleroledescription"?: string | undefined
|
|
99
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
100
|
+
"aria-braillelabel"?: string | undefined;
|
|
101
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
100
102
|
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
101
|
-
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined
|
|
102
|
-
"aria-colcount"?: number | undefined
|
|
103
|
-
"aria-colindex"?: number | undefined
|
|
104
|
-
"aria-colindextext"?: string | undefined
|
|
105
|
-
"aria-colspan"?: number | undefined
|
|
106
|
-
"aria-controls"?: string | undefined
|
|
107
|
-
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined
|
|
108
|
-
"aria-describedby"?: string | undefined
|
|
109
|
-
"aria-description"?: string | undefined
|
|
110
|
-
"aria-details"?: string | undefined
|
|
103
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
104
|
+
"aria-colcount"?: number | undefined;
|
|
105
|
+
"aria-colindex"?: number | undefined;
|
|
106
|
+
"aria-colindextext"?: string | undefined;
|
|
107
|
+
"aria-colspan"?: number | undefined;
|
|
108
|
+
"aria-controls"?: string | undefined;
|
|
109
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
110
|
+
"aria-describedby"?: string | undefined;
|
|
111
|
+
"aria-description"?: string | undefined;
|
|
112
|
+
"aria-details"?: string | undefined;
|
|
111
113
|
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
112
|
-
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined
|
|
113
|
-
"aria-errormessage"?: string | undefined
|
|
114
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
115
|
+
"aria-errormessage"?: string | undefined;
|
|
114
116
|
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
115
|
-
"aria-flowto"?: string | undefined
|
|
117
|
+
"aria-flowto"?: string | undefined;
|
|
116
118
|
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
117
|
-
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined
|
|
119
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
118
120
|
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
119
|
-
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined
|
|
120
|
-
"aria-keyshortcuts"?: string | undefined
|
|
121
|
-
"aria-label"?: string | undefined
|
|
122
|
-
"aria-labelledby"?: string | undefined
|
|
123
|
-
"aria-level"?: number | undefined
|
|
124
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined
|
|
121
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
122
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
123
|
+
"aria-label"?: string | undefined;
|
|
124
|
+
"aria-labelledby"?: string | undefined;
|
|
125
|
+
"aria-level"?: number | undefined;
|
|
126
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
125
127
|
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
126
128
|
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
127
129
|
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
128
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined
|
|
129
|
-
"aria-owns"?: string | undefined
|
|
130
|
-
"aria-placeholder"?: string | undefined
|
|
131
|
-
"aria-posinset"?: number | undefined
|
|
132
|
-
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined
|
|
130
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
131
|
+
"aria-owns"?: string | undefined;
|
|
132
|
+
"aria-placeholder"?: string | undefined;
|
|
133
|
+
"aria-posinset"?: number | undefined;
|
|
134
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
133
135
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
134
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined
|
|
136
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
135
137
|
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
136
|
-
"aria-roledescription"?: string | undefined
|
|
137
|
-
"aria-rowcount"?: number | undefined
|
|
138
|
-
"aria-rowindex"?: number | undefined
|
|
139
|
-
"aria-rowindextext"?: string | undefined
|
|
140
|
-
"aria-rowspan"?: number | undefined
|
|
138
|
+
"aria-roledescription"?: string | undefined;
|
|
139
|
+
"aria-rowcount"?: number | undefined;
|
|
140
|
+
"aria-rowindex"?: number | undefined;
|
|
141
|
+
"aria-rowindextext"?: string | undefined;
|
|
142
|
+
"aria-rowspan"?: number | undefined;
|
|
141
143
|
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
142
|
-
"aria-setsize"?: number | undefined
|
|
143
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined
|
|
144
|
-
"aria-valuemax"?: number | undefined
|
|
145
|
-
"aria-valuemin"?: number | undefined
|
|
146
|
-
"aria-valuenow"?: number | undefined
|
|
147
|
-
"aria-valuetext"?: string | undefined
|
|
144
|
+
"aria-setsize"?: number | undefined;
|
|
145
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
146
|
+
"aria-valuemax"?: number | undefined;
|
|
147
|
+
"aria-valuemin"?: number | undefined;
|
|
148
|
+
"aria-valuenow"?: number | undefined;
|
|
149
|
+
"aria-valuetext"?: string | undefined;
|
|
148
150
|
dangerouslySetInnerHTML?: {
|
|
149
151
|
__html: string | TrustedHTML;
|
|
150
|
-
} | undefined
|
|
152
|
+
} | undefined;
|
|
151
153
|
onCopy?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
152
154
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
153
155
|
onCut?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -164,18 +166,18 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
164
166
|
onFocusCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
165
167
|
onBlur?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
166
168
|
onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
167
|
-
onChange?: import("react").
|
|
168
|
-
onChangeCapture?: import("react").
|
|
169
|
-
onBeforeInput?: import("react").
|
|
170
|
-
onBeforeInputCapture?: import("react").
|
|
171
|
-
onInput?: import("react").
|
|
172
|
-
onInputCapture?: import("react").
|
|
173
|
-
onReset?: import("react").
|
|
174
|
-
onResetCapture?: import("react").
|
|
175
|
-
onSubmit?: import("react").
|
|
176
|
-
onSubmitCapture?: import("react").
|
|
177
|
-
onInvalid?: import("react").
|
|
178
|
-
onInvalidCapture?: import("react").
|
|
169
|
+
onChange?: import("react").ChangeEventHandler<HTMLButtonElement, Element> | undefined;
|
|
170
|
+
onChangeCapture?: import("react").ChangeEventHandler<HTMLButtonElement, Element> | undefined;
|
|
171
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
172
|
+
onBeforeInputCapture?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
173
|
+
onInput?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
174
|
+
onInputCapture?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
175
|
+
onReset?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
176
|
+
onResetCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
177
|
+
onSubmit?: import("react").SubmitEventHandler<HTMLButtonElement> | undefined;
|
|
178
|
+
onSubmitCapture?: import("react").SubmitEventHandler<HTMLButtonElement> | undefined;
|
|
179
|
+
onInvalid?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
180
|
+
onInvalidCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
179
181
|
onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
180
182
|
onLoadCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
181
183
|
onError?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -317,57 +319,57 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
317
319
|
onTransitionStart?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
318
320
|
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
319
321
|
component?: React.ElementType | undefined;
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
322
|
+
loadingIconProps?: import("@mui/material").CircularProgressProps;
|
|
323
|
+
altIcon?: ReactNode;
|
|
324
|
+
iconVariant?: import("../types").FormDialogActionsProps["variant"];
|
|
323
325
|
};
|
|
324
326
|
gridContainerProps: {
|
|
325
|
-
component?: React.ElementType;
|
|
327
|
+
component?: React.ElementType | undefined;
|
|
326
328
|
children?: React.ReactNode;
|
|
327
|
-
columns?: number | (number | null)[] | {
|
|
329
|
+
columns?: (number | (number | null)[] | {
|
|
328
330
|
xs?: number | null | undefined;
|
|
329
331
|
sm?: number | null | undefined;
|
|
330
332
|
md?: number | null | undefined;
|
|
331
333
|
lg?: number | null | undefined;
|
|
332
334
|
xl?: number | null | undefined;
|
|
333
|
-
};
|
|
334
|
-
columnSpacing?: import("@mui/material").GridSpacing | (import("@mui/material").GridSpacing | null)[] | {
|
|
335
|
+
}) | undefined;
|
|
336
|
+
columnSpacing?: (import("@mui/material").GridSpacing | (import("@mui/material").GridSpacing | null)[] | {
|
|
335
337
|
xs?: import("@mui/material").GridSpacing | null | undefined;
|
|
336
338
|
sm?: import("@mui/material").GridSpacing | null | undefined;
|
|
337
339
|
md?: import("@mui/material").GridSpacing | null | undefined;
|
|
338
340
|
lg?: import("@mui/material").GridSpacing | null | undefined;
|
|
339
341
|
xl?: import("@mui/material").GridSpacing | null | undefined;
|
|
340
|
-
};
|
|
341
|
-
container?: boolean;
|
|
342
|
-
direction?: import("@mui/material").GridDirection | (import("@mui/material").GridDirection | null)[] | {
|
|
342
|
+
}) | undefined;
|
|
343
|
+
container?: boolean | undefined;
|
|
344
|
+
direction?: (import("@mui/material").GridDirection | (import("@mui/material").GridDirection | null)[] | {
|
|
343
345
|
xs?: import("@mui/material").GridDirection | null | undefined;
|
|
344
346
|
sm?: import("@mui/material").GridDirection | null | undefined;
|
|
345
347
|
md?: import("@mui/material").GridDirection | null | undefined;
|
|
346
348
|
lg?: import("@mui/material").GridDirection | null | undefined;
|
|
347
349
|
xl?: import("@mui/material").GridDirection | null | undefined;
|
|
348
|
-
};
|
|
349
|
-
offset?: import("@mui/material").GridOffset | (import("@mui/material").GridOffset | null)[] | {
|
|
350
|
+
}) | undefined;
|
|
351
|
+
offset?: (import("@mui/material").GridOffset | (import("@mui/material").GridOffset | null)[] | {
|
|
350
352
|
xs?: import("@mui/material").GridOffset | null | undefined;
|
|
351
353
|
sm?: import("@mui/material").GridOffset | null | undefined;
|
|
352
354
|
md?: import("@mui/material").GridOffset | null | undefined;
|
|
353
355
|
lg?: import("@mui/material").GridOffset | null | undefined;
|
|
354
356
|
xl?: import("@mui/material").GridOffset | null | undefined;
|
|
355
|
-
};
|
|
356
|
-
unstable_level?: number;
|
|
357
|
-
rowSpacing?: import("@mui/material").GridSpacing | (import("@mui/material").GridSpacing | null)[] | {
|
|
357
|
+
}) | undefined;
|
|
358
|
+
unstable_level?: number | undefined;
|
|
359
|
+
rowSpacing?: (import("@mui/material").GridSpacing | (import("@mui/material").GridSpacing | null)[] | {
|
|
358
360
|
xs?: import("@mui/material").GridSpacing | null | undefined;
|
|
359
361
|
sm?: import("@mui/material").GridSpacing | null | undefined;
|
|
360
362
|
md?: import("@mui/material").GridSpacing | null | undefined;
|
|
361
363
|
lg?: import("@mui/material").GridSpacing | null | undefined;
|
|
362
364
|
xl?: import("@mui/material").GridSpacing | null | undefined;
|
|
363
|
-
};
|
|
364
|
-
size?: import("@mui/material").GridSize | (import("@mui/material").GridSize | null)[] | {
|
|
365
|
+
}) | undefined;
|
|
366
|
+
size?: (import("@mui/material").GridSize | (import("@mui/material").GridSize | null)[] | {
|
|
365
367
|
xs?: import("@mui/material").GridSize | null | undefined;
|
|
366
368
|
sm?: import("@mui/material").GridSize | null | undefined;
|
|
367
369
|
md?: import("@mui/material").GridSize | null | undefined;
|
|
368
370
|
lg?: import("@mui/material").GridSize | null | undefined;
|
|
369
371
|
xl?: import("@mui/material").GridSize | null | undefined;
|
|
370
|
-
};
|
|
372
|
+
}) | undefined;
|
|
371
373
|
spacing?: (import("@mui/material").GridSpacing | (import("@mui/material").GridSpacing | null)[] | {
|
|
372
374
|
xs?: import("@mui/material").GridSpacing | null | undefined;
|
|
373
375
|
sm?: import("@mui/material").GridSpacing | null | undefined;
|
|
@@ -375,128 +377,12 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
375
377
|
lg?: import("@mui/material").GridSpacing | null | undefined;
|
|
376
378
|
xl?: import("@mui/material").GridSpacing | null | undefined;
|
|
377
379
|
}) | undefined;
|
|
378
|
-
wrap?: import("@mui/material").GridWrap;
|
|
379
|
-
sx?: import("@mui/system").SxProps<import("@mui/material").Theme
|
|
380
|
-
border?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "hidden" | "black" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "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" | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | (string & {}) | "inset" | "hidden" | "black" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "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" | undefined>);
|
|
381
|
-
boxShadow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<number | import("csstype").Property.BoxShadow | undefined>);
|
|
382
|
-
fontWeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
|
|
383
|
-
zIndex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
|
|
384
|
-
alignContent?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignContent | undefined>);
|
|
385
|
-
alignItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignItems | undefined>);
|
|
386
|
-
alignSelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.AlignSelf | undefined>);
|
|
387
|
-
bottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined>);
|
|
388
|
-
boxSizing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | undefined>);
|
|
389
|
-
color?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Color | undefined>);
|
|
390
|
-
columnGap: string | number | readonly (import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | null | undefined)[] | {
|
|
391
|
-
[key: string]: import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | null | undefined;
|
|
392
|
-
} | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined>);
|
|
393
|
-
display?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
|
|
394
|
-
flexBasis?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined>);
|
|
395
|
-
flexDirection?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | undefined>);
|
|
396
|
-
flexGrow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined>);
|
|
397
|
-
flexShrink?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined>);
|
|
398
|
-
flexWrap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | undefined>);
|
|
399
|
-
fontFamily?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontFamily | undefined>);
|
|
400
|
-
fontSize?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined>);
|
|
401
|
-
fontStyle?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.FontStyle | undefined>);
|
|
402
|
-
gridAutoColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined>);
|
|
403
|
-
gridAutoFlow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridAutoFlow | undefined>);
|
|
404
|
-
gridAutoRows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined>);
|
|
405
|
-
gridTemplateAreas?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplateAreas | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.GridTemplateAreas | undefined>);
|
|
406
|
-
gridTemplateColumns?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined>);
|
|
407
|
-
gridTemplateRows?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined>);
|
|
408
|
-
height?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined>);
|
|
409
|
-
justifyContent: string | readonly (readonly string[] | import("csstype").Property.JustifyContent | null | undefined)[] | {
|
|
410
|
-
[key: string]: readonly string[] | import("csstype").Property.JustifyContent | null | undefined;
|
|
411
|
-
} | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyContent | undefined>);
|
|
412
|
-
justifyItems?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifyItems | undefined>);
|
|
413
|
-
justifySelf?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifySelf | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.JustifySelf | undefined>);
|
|
414
|
-
left?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined>);
|
|
415
|
-
letterSpacing?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined>);
|
|
416
|
-
lineHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined>);
|
|
417
|
-
marginBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined>);
|
|
418
|
-
marginBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined>);
|
|
419
|
-
marginBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined>);
|
|
420
|
-
marginInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined>);
|
|
421
|
-
marginInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined>);
|
|
422
|
-
marginLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
423
|
-
marginRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined>);
|
|
424
|
-
marginTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
425
|
-
maxHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined>);
|
|
426
|
-
maxWidth?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined>);
|
|
427
|
-
minHeight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined>);
|
|
428
|
-
minWidth: string | number | readonly (import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | null | undefined)[] | {
|
|
429
|
-
[key: string]: import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | null | undefined;
|
|
430
|
-
} | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined>);
|
|
431
|
-
order?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined>);
|
|
432
|
-
paddingBlockEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined>);
|
|
433
|
-
paddingBlockStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined>);
|
|
434
|
-
paddingBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined>);
|
|
435
|
-
paddingInlineEnd?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined>);
|
|
436
|
-
paddingInlineStart?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined>);
|
|
437
|
-
paddingLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
438
|
-
paddingRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined>);
|
|
439
|
-
paddingTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
440
|
-
position?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | undefined>);
|
|
441
|
-
right?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined>);
|
|
442
|
-
rowGap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined>);
|
|
443
|
-
textAlign?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | undefined>);
|
|
444
|
-
textOverflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.TextOverflow | undefined>);
|
|
445
|
-
textTransform?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | undefined>);
|
|
446
|
-
top?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined>);
|
|
447
|
-
visibility?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | undefined>);
|
|
448
|
-
whiteSpace?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.WhiteSpace | undefined>);
|
|
449
|
-
width: string | number | readonly (import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | null | undefined)[] | {
|
|
450
|
-
[key: string]: import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | null | undefined;
|
|
451
|
-
} | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined>);
|
|
452
|
-
borderBottom?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined>);
|
|
453
|
-
borderColor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.BorderColor | undefined>);
|
|
454
|
-
borderLeft?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined>);
|
|
455
|
-
borderRadius?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined>);
|
|
456
|
-
borderRight?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined>);
|
|
457
|
-
borderTop?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined>);
|
|
458
|
-
flex?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined>);
|
|
459
|
-
gap?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined>);
|
|
460
|
-
gridArea?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined>);
|
|
461
|
-
gridColumn?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined>);
|
|
462
|
-
gridRow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined>);
|
|
463
|
-
margin?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined>);
|
|
464
|
-
marginBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined>);
|
|
465
|
-
marginInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined>);
|
|
466
|
-
overflow?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Overflow | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Overflow | undefined>);
|
|
467
|
-
padding?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined>);
|
|
468
|
-
paddingBlock?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined>);
|
|
469
|
-
paddingInline?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined>);
|
|
470
|
-
bgcolor?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | readonly string[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | readonly string[] | undefined>);
|
|
471
|
-
m?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined>);
|
|
472
|
-
mt?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
473
|
-
mr?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined>);
|
|
474
|
-
mb?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined>);
|
|
475
|
-
ml?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
476
|
-
mx?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
477
|
-
marginX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined>);
|
|
478
|
-
my?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
479
|
-
marginY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined>);
|
|
480
|
-
p?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined>);
|
|
481
|
-
pt?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
482
|
-
pr?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined>);
|
|
483
|
-
pb: string | number | readonly (import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | null | undefined)[] | {
|
|
484
|
-
[key: string]: import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | null | undefined;
|
|
485
|
-
} | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined>);
|
|
486
|
-
pl?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
487
|
-
px: string | number | readonly (import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | null | undefined)[] | {
|
|
488
|
-
[key: string]: import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | null | undefined;
|
|
489
|
-
} | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
490
|
-
paddingX?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined>);
|
|
491
|
-
py?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
492
|
-
paddingY?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined>);
|
|
493
|
-
typography?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<string | undefined>);
|
|
494
|
-
displayPrint?: import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined> | ((theme: import("@mui/material").Theme) => import("@mui/system/styleFunctionSx").ResponsiveStyleValue<readonly string[] | import("csstype").Property.Display | undefined>);
|
|
380
|
+
wrap?: import("@mui/material").GridWrap | undefined;
|
|
381
|
+
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
495
382
|
className?: string | undefined;
|
|
496
383
|
style?: import("react").CSSProperties | undefined;
|
|
497
384
|
tabIndex?: number | undefined;
|
|
498
|
-
|
|
499
|
-
translate?: "yes" | "no" | undefined;
|
|
385
|
+
color?: string | undefined;
|
|
500
386
|
slot?: string | undefined;
|
|
501
387
|
title?: string | undefined;
|
|
502
388
|
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
@@ -518,9 +404,11 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
518
404
|
lang?: string | undefined;
|
|
519
405
|
nonce?: string | undefined;
|
|
520
406
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
407
|
+
translate?: "yes" | "no" | undefined;
|
|
521
408
|
radioGroup?: string | undefined;
|
|
522
409
|
role?: import("react").AriaRole | undefined;
|
|
523
410
|
about?: string | undefined;
|
|
411
|
+
content?: string | undefined;
|
|
524
412
|
datatype?: string | undefined;
|
|
525
413
|
inlist?: any;
|
|
526
414
|
prefix?: string | undefined;
|
|
@@ -540,7 +428,7 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
540
428
|
results?: number | undefined;
|
|
541
429
|
security?: string | undefined;
|
|
542
430
|
unselectable?: "on" | "off" | undefined;
|
|
543
|
-
popover?: "" | "auto" | "manual" | undefined;
|
|
431
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
544
432
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
545
433
|
popoverTarget?: string | undefined;
|
|
546
434
|
inert?: boolean | undefined;
|
|
@@ -620,18 +508,18 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
620
508
|
onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
621
509
|
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
622
510
|
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
623
|
-
onChange?: import("react").
|
|
624
|
-
onChangeCapture?: import("react").
|
|
625
|
-
onBeforeInput?: import("react").
|
|
626
|
-
onBeforeInputCapture?: import("react").
|
|
627
|
-
onInput?: import("react").
|
|
628
|
-
onInputCapture?: import("react").
|
|
629
|
-
onReset?: import("react").
|
|
630
|
-
onResetCapture?: import("react").
|
|
631
|
-
onSubmit?: import("react").
|
|
632
|
-
onSubmitCapture?: import("react").
|
|
633
|
-
onInvalid?: import("react").
|
|
634
|
-
onInvalidCapture?: import("react").
|
|
511
|
+
onChange?: import("react").ChangeEventHandler<HTMLDivElement, Element> | undefined;
|
|
512
|
+
onChangeCapture?: import("react").ChangeEventHandler<HTMLDivElement, Element> | undefined;
|
|
513
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLDivElement> | undefined;
|
|
514
|
+
onBeforeInputCapture?: import("react").InputEventHandler<HTMLDivElement> | undefined;
|
|
515
|
+
onInput?: import("react").InputEventHandler<HTMLDivElement> | undefined;
|
|
516
|
+
onInputCapture?: import("react").InputEventHandler<HTMLDivElement> | undefined;
|
|
517
|
+
onReset?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
518
|
+
onResetCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
519
|
+
onSubmit?: import("react").SubmitEventHandler<HTMLDivElement> | undefined;
|
|
520
|
+
onSubmitCapture?: import("react").SubmitEventHandler<HTMLDivElement> | undefined;
|
|
521
|
+
onInvalid?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
522
|
+
onInvalidCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
635
523
|
onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
636
524
|
onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
637
525
|
onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
@@ -772,39 +660,44 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
772
660
|
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
773
661
|
onTransitionStart?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
774
662
|
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
663
|
+
justifyContent: string;
|
|
664
|
+
minWidth: number;
|
|
665
|
+
px: number;
|
|
666
|
+
pb: number;
|
|
667
|
+
columnGap: number;
|
|
668
|
+
width: string;
|
|
775
669
|
};
|
|
776
670
|
cancelButtonProps: {
|
|
777
|
-
className?: string;
|
|
778
|
-
style?: React.CSSProperties;
|
|
779
|
-
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
780
|
-
action?: React.Ref<import("@mui/material").ButtonBaseActions>;
|
|
781
|
-
centerRipple?: boolean;
|
|
782
671
|
children?: string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | null | undefined;
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
LinkComponent?: React.ElementType;
|
|
789
|
-
onFocusVisible?: React.FocusEventHandler<any>;
|
|
790
|
-
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
791
|
-
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]>;
|
|
792
|
-
TouchRippleProps?: Partial<import("@mui/material").TouchRippleProps>;
|
|
793
|
-
touchRippleRef?: React.Ref<import("@mui/material").TouchRippleActions>;
|
|
794
|
-
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides>;
|
|
795
|
-
content?: string | undefined;
|
|
796
|
-
translate?: "yes" | "no" | undefined;
|
|
797
|
-
disableElevation?: boolean;
|
|
798
|
-
disableFocusRipple?: boolean;
|
|
672
|
+
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
673
|
+
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
674
|
+
disabled?: boolean | undefined;
|
|
675
|
+
disableElevation?: boolean | undefined;
|
|
676
|
+
disableFocusRipple?: boolean | undefined;
|
|
799
677
|
endIcon?: React.ReactNode;
|
|
800
|
-
fullWidth?: boolean;
|
|
801
|
-
href?: string;
|
|
802
|
-
loading?: boolean |
|
|
678
|
+
fullWidth?: boolean | undefined;
|
|
679
|
+
href?: string | undefined;
|
|
680
|
+
loading?: boolean | undefined;
|
|
803
681
|
loadingIndicator?: React.ReactNode;
|
|
804
|
-
loadingPosition?: "start" | "end" | "center";
|
|
805
|
-
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides
|
|
682
|
+
loadingPosition?: "start" | "end" | "center" | undefined;
|
|
683
|
+
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
806
684
|
startIcon?: React.ReactNode;
|
|
807
|
-
|
|
685
|
+
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
686
|
+
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
687
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
688
|
+
centerRipple?: boolean | undefined;
|
|
689
|
+
disableRipple?: boolean | undefined;
|
|
690
|
+
disableTouchRipple?: boolean | undefined;
|
|
691
|
+
focusRipple?: boolean | undefined;
|
|
692
|
+
focusVisibleClassName?: string | undefined;
|
|
693
|
+
LinkComponent?: React.ElementType | undefined;
|
|
694
|
+
nativeButton?: boolean | undefined;
|
|
695
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
696
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
697
|
+
TouchRippleProps?: Partial<import("@mui/material").TouchRippleProps> | undefined;
|
|
698
|
+
touchRippleRef?: React.Ref<import("@mui/material").TouchRippleActions> | undefined;
|
|
699
|
+
className?: string | undefined;
|
|
700
|
+
style?: React.CSSProperties | undefined;
|
|
808
701
|
form?: string | undefined;
|
|
809
702
|
slot?: string | undefined;
|
|
810
703
|
title?: string | undefined;
|
|
@@ -835,9 +728,11 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
835
728
|
lang?: string | undefined;
|
|
836
729
|
nonce?: string | undefined;
|
|
837
730
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
731
|
+
translate?: "yes" | "no" | undefined;
|
|
838
732
|
radioGroup?: string | undefined;
|
|
839
733
|
role?: import("react").AriaRole | undefined;
|
|
840
734
|
about?: string | undefined;
|
|
735
|
+
content?: string | undefined;
|
|
841
736
|
datatype?: string | undefined;
|
|
842
737
|
inlist?: any;
|
|
843
738
|
prefix?: string | undefined;
|
|
@@ -857,7 +752,7 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
857
752
|
results?: number | undefined;
|
|
858
753
|
security?: string | undefined;
|
|
859
754
|
unselectable?: "on" | "off" | undefined;
|
|
860
|
-
popover?: "" | "auto" | "manual" | undefined;
|
|
755
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
861
756
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
862
757
|
popoverTarget?: string | undefined;
|
|
863
758
|
inert?: boolean | undefined;
|
|
@@ -937,18 +832,18 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
937
832
|
onFocusCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
938
833
|
onBlur?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
939
834
|
onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
940
|
-
onChange?: import("react").
|
|
941
|
-
onChangeCapture?: import("react").
|
|
942
|
-
onBeforeInput?: import("react").
|
|
943
|
-
onBeforeInputCapture?: import("react").
|
|
944
|
-
onInput?: import("react").
|
|
945
|
-
onInputCapture?: import("react").
|
|
946
|
-
onReset?: import("react").
|
|
947
|
-
onResetCapture?: import("react").
|
|
948
|
-
onSubmit?: import("react").
|
|
949
|
-
onSubmitCapture?: import("react").
|
|
950
|
-
onInvalid?: import("react").
|
|
951
|
-
onInvalidCapture?: import("react").
|
|
835
|
+
onChange?: import("react").ChangeEventHandler<HTMLButtonElement, Element> | undefined;
|
|
836
|
+
onChangeCapture?: import("react").ChangeEventHandler<HTMLButtonElement, Element> | undefined;
|
|
837
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
838
|
+
onBeforeInputCapture?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
839
|
+
onInput?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
840
|
+
onInputCapture?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
841
|
+
onReset?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
842
|
+
onResetCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
843
|
+
onSubmit?: import("react").SubmitEventHandler<HTMLButtonElement> | undefined;
|
|
844
|
+
onSubmitCapture?: import("react").SubmitEventHandler<HTMLButtonElement> | undefined;
|
|
845
|
+
onInvalid?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
846
|
+
onInvalidCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
952
847
|
onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
953
848
|
onLoadCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
954
849
|
onError?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -1005,6 +900,7 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
1005
900
|
onWaitingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1006
901
|
onAuxClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1007
902
|
onAuxClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
903
|
+
onClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1008
904
|
onClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1009
905
|
onContextMenu?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1010
906
|
onContextMenuCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -1088,41 +984,42 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
1088
984
|
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
1089
985
|
onTransitionStart?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
1090
986
|
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
1091
|
-
component?: React.ElementType;
|
|
987
|
+
component?: React.ElementType | undefined;
|
|
988
|
+
loadingIconProps?: import("@mui/material").CircularProgressProps;
|
|
989
|
+
altIcon?: ReactNode;
|
|
1092
990
|
iconVariant?: import("../types").FormDialogActionsProps["variant"];
|
|
1093
991
|
};
|
|
1094
992
|
submitButtonProps: {
|
|
1095
|
-
className?: string;
|
|
1096
|
-
style?: React.CSSProperties;
|
|
1097
|
-
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
1098
|
-
action?: React.Ref<import("@mui/material").ButtonBaseActions>;
|
|
1099
|
-
centerRipple?: boolean;
|
|
1100
993
|
children?: React.ReactNode;
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
LinkComponent?: React.ElementType;
|
|
1107
|
-
onFocusVisible?: React.FocusEventHandler<any>;
|
|
1108
|
-
sx?: import("@mui/system").SxProps<import("@mui/material").Theme>;
|
|
1109
|
-
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]>;
|
|
1110
|
-
TouchRippleProps?: Partial<import("@mui/material").TouchRippleProps>;
|
|
1111
|
-
touchRippleRef?: React.Ref<import("@mui/material").TouchRippleActions>;
|
|
1112
|
-
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides>;
|
|
1113
|
-
content?: string | undefined;
|
|
1114
|
-
translate?: "yes" | "no" | undefined;
|
|
1115
|
-
disableElevation?: boolean;
|
|
1116
|
-
disableFocusRipple?: boolean;
|
|
994
|
+
classes?: (Partial<import("@mui/material").ButtonClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
995
|
+
color?: import("@mui/types").OverridableStringUnion<"inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning", import("@mui/material").ButtonPropsColorOverrides> | undefined;
|
|
996
|
+
disabled?: boolean | undefined;
|
|
997
|
+
disableElevation?: boolean | undefined;
|
|
998
|
+
disableFocusRipple?: boolean | undefined;
|
|
1117
999
|
endIcon?: React.ReactNode;
|
|
1118
|
-
fullWidth?: boolean;
|
|
1119
|
-
href?: string;
|
|
1000
|
+
fullWidth?: boolean | undefined;
|
|
1001
|
+
href?: string | undefined;
|
|
1120
1002
|
loading?: boolean | undefined;
|
|
1121
1003
|
loadingIndicator?: React.ReactNode;
|
|
1122
|
-
loadingPosition?: "start" | "end" | "center";
|
|
1123
|
-
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides
|
|
1004
|
+
loadingPosition?: "start" | "end" | "center" | undefined;
|
|
1005
|
+
size?: import("@mui/types").OverridableStringUnion<"small" | "medium" | "large", import("@mui/material").ButtonPropsSizeOverrides> | undefined;
|
|
1124
1006
|
startIcon?: React.ReactNode;
|
|
1125
|
-
|
|
1007
|
+
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1008
|
+
variant?: import("@mui/types").OverridableStringUnion<"text" | "outlined" | "contained", import("@mui/material").ButtonPropsVariantOverrides> | undefined;
|
|
1009
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
1010
|
+
centerRipple?: boolean | undefined;
|
|
1011
|
+
disableRipple?: boolean | undefined;
|
|
1012
|
+
disableTouchRipple?: boolean | undefined;
|
|
1013
|
+
focusRipple?: boolean | undefined;
|
|
1014
|
+
focusVisibleClassName?: string | undefined;
|
|
1015
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1016
|
+
nativeButton?: boolean | undefined;
|
|
1017
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
1018
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
1019
|
+
TouchRippleProps?: Partial<import("@mui/material").TouchRippleProps> | undefined;
|
|
1020
|
+
touchRippleRef?: React.Ref<import("@mui/material").TouchRippleActions> | undefined;
|
|
1021
|
+
className?: string | undefined;
|
|
1022
|
+
style?: React.CSSProperties | undefined;
|
|
1126
1023
|
form?: string | undefined;
|
|
1127
1024
|
slot?: string | undefined;
|
|
1128
1025
|
title?: string | undefined;
|
|
@@ -1153,9 +1050,11 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
1153
1050
|
lang?: string | undefined;
|
|
1154
1051
|
nonce?: string | undefined;
|
|
1155
1052
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
1053
|
+
translate?: "yes" | "no" | undefined;
|
|
1156
1054
|
radioGroup?: string | undefined;
|
|
1157
1055
|
role?: import("react").AriaRole | undefined;
|
|
1158
1056
|
about?: string | undefined;
|
|
1057
|
+
content?: string | undefined;
|
|
1159
1058
|
datatype?: string | undefined;
|
|
1160
1059
|
inlist?: any;
|
|
1161
1060
|
prefix?: string | undefined;
|
|
@@ -1175,7 +1074,7 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
1175
1074
|
results?: number | undefined;
|
|
1176
1075
|
security?: string | undefined;
|
|
1177
1076
|
unselectable?: "on" | "off" | undefined;
|
|
1178
|
-
popover?: "" | "auto" | "manual" | undefined;
|
|
1077
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined;
|
|
1179
1078
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
1180
1079
|
popoverTarget?: string | undefined;
|
|
1181
1080
|
inert?: boolean | undefined;
|
|
@@ -1255,18 +1154,18 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
1255
1154
|
onFocusCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
1256
1155
|
onBlur?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
1257
1156
|
onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
1258
|
-
onChange?: import("react").
|
|
1259
|
-
onChangeCapture?: import("react").
|
|
1260
|
-
onBeforeInput?: import("react").
|
|
1261
|
-
onBeforeInputCapture?: import("react").
|
|
1262
|
-
onInput?: import("react").
|
|
1263
|
-
onInputCapture?: import("react").
|
|
1264
|
-
onReset?: import("react").
|
|
1265
|
-
onResetCapture?: import("react").
|
|
1266
|
-
onSubmit?: import("react").
|
|
1267
|
-
onSubmitCapture?: import("react").
|
|
1268
|
-
onInvalid?: import("react").
|
|
1269
|
-
onInvalidCapture?: import("react").
|
|
1157
|
+
onChange?: import("react").ChangeEventHandler<HTMLButtonElement, Element> | undefined;
|
|
1158
|
+
onChangeCapture?: import("react").ChangeEventHandler<HTMLButtonElement, Element> | undefined;
|
|
1159
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
1160
|
+
onBeforeInputCapture?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
1161
|
+
onInput?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
1162
|
+
onInputCapture?: import("react").InputEventHandler<HTMLButtonElement> | undefined;
|
|
1163
|
+
onReset?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1164
|
+
onResetCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1165
|
+
onSubmit?: import("react").SubmitEventHandler<HTMLButtonElement> | undefined;
|
|
1166
|
+
onSubmitCapture?: import("react").SubmitEventHandler<HTMLButtonElement> | undefined;
|
|
1167
|
+
onInvalid?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1168
|
+
onInvalidCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1270
1169
|
onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1271
1170
|
onLoadCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1272
1171
|
onError?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -1323,6 +1222,7 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
1323
1222
|
onWaitingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
1324
1223
|
onAuxClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1325
1224
|
onAuxClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1225
|
+
onClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1326
1226
|
onClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1327
1227
|
onContextMenu?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
1328
1228
|
onContextMenuCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -1406,11 +1306,9 @@ export declare function applyDefaultFormDialogProps({ resetProps, submitProps, g
|
|
|
1406
1306
|
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
1407
1307
|
onTransitionStart?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
1408
1308
|
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
1409
|
-
component?: React.ElementType;
|
|
1309
|
+
component?: React.ElementType | undefined;
|
|
1410
1310
|
loadingIconProps?: import("@mui/material").CircularProgressProps;
|
|
1411
1311
|
altIcon?: ReactNode;
|
|
1412
1312
|
iconVariant?: import("../types").FormDialogActionsProps["variant"];
|
|
1413
|
-
showAttempts?: boolean;
|
|
1414
|
-
maxAttempts?: number;
|
|
1415
1313
|
};
|
|
1416
1314
|
};
|