@xyo-network/react-xns 4.4.2 → 4.4.4

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.
Files changed (33) hide show
  1. package/dist/browser/index.d.ts +467 -2
  2. package/package.json +14 -14
  3. package/dist/browser/components/EstimateName/EstimateNameTextField.d.ts +0 -7
  4. package/dist/browser/components/EstimateName/EstimateNameTextField.d.ts.map +0 -1
  5. package/dist/browser/components/EstimateName/index.d.ts +0 -2
  6. package/dist/browser/components/EstimateName/index.d.ts.map +0 -1
  7. package/dist/browser/components/XnsNameCapture/Errors.d.ts +0 -8
  8. package/dist/browser/components/XnsNameCapture/Errors.d.ts.map +0 -1
  9. package/dist/browser/components/XnsNameCapture/Props.d.ts +0 -41
  10. package/dist/browser/components/XnsNameCapture/Props.d.ts.map +0 -1
  11. package/dist/browser/components/XnsNameCapture/SecondaryLink.d.ts +0 -11
  12. package/dist/browser/components/XnsNameCapture/SecondaryLink.d.ts.map +0 -1
  13. package/dist/browser/components/XnsNameCapture/XnsNameCapture.d.ts +0 -4
  14. package/dist/browser/components/XnsNameCapture/XnsNameCapture.d.ts.map +0 -1
  15. package/dist/browser/components/XnsNameCapture/XnsNameCaptureWithContext.d.ts +0 -4
  16. package/dist/browser/components/XnsNameCapture/XnsNameCaptureWithContext.d.ts.map +0 -1
  17. package/dist/browser/components/XnsNameCapture/hooks/index.d.ts +0 -2
  18. package/dist/browser/components/XnsNameCapture/hooks/index.d.ts.map +0 -1
  19. package/dist/browser/components/XnsNameCapture/hooks/routing/index.d.ts +0 -3
  20. package/dist/browser/components/XnsNameCapture/hooks/routing/index.d.ts.map +0 -1
  21. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameCaptureRouting.d.ts +0 -400
  22. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameCaptureRouting.d.ts.map +0 -1
  23. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameFromLocation.d.ts +0 -6
  24. package/dist/browser/components/XnsNameCapture/hooks/routing/useXnsNameFromLocation.d.ts.map +0 -1
  25. package/dist/browser/components/XnsNameCapture/index.d.ts +0 -7
  26. package/dist/browser/components/XnsNameCapture/index.d.ts.map +0 -1
  27. package/dist/browser/components/XnsNameCapture/lib/index.d.ts +0 -2
  28. package/dist/browser/components/XnsNameCapture/lib/index.d.ts.map +0 -1
  29. package/dist/browser/components/XnsNameCapture/lib/navigateWithUsername.d.ts +0 -3
  30. package/dist/browser/components/XnsNameCapture/lib/navigateWithUsername.d.ts.map +0 -1
  31. package/dist/browser/components/index.d.ts +0 -3
  32. package/dist/browser/components/index.d.ts.map +0 -1
  33. package/dist/browser/index.d.ts.map +0 -1
@@ -1,2 +1,467 @@
1
- export * from './components/index.ts';
2
- //# sourceMappingURL=index.d.ts.map
1
+ import * as _mui_material from '@mui/material';
2
+ import { TextFieldProps } from '@mui/material';
3
+ import * as react from 'react';
4
+ import react__default, { ReactNode, Dispatch } from 'react';
5
+ import * as _mui_system from '@mui/system';
6
+ import * as _mui_system_styleFunctionSx from '@mui/system/styleFunctionSx';
7
+ import * as csstype from 'csstype';
8
+ import * as _xylabs_react_shared from '@xylabs/react-shared';
9
+ import * as react_router_dom from 'react-router-dom';
10
+ import { To } from 'react-router-dom';
11
+ import { FlexBoxProps } from '@xylabs/react-flexbox';
12
+ import { LinkExProps } from '@xylabs/react-link';
13
+
14
+ interface XnsEstimateNameTextFieldProps {
15
+ maskOutput?: boolean;
16
+ }
17
+ declare const XnsEstimateNameTextField: react__default.FC<XnsEstimateNameTextFieldProps & TextFieldProps>;
18
+
19
+ interface XnsNameCaptureErrorsProps {
20
+ error?: Error;
21
+ errorUi?: 'alert' | 'toast';
22
+ resetError?: () => void;
23
+ }
24
+ declare const XnsNameCaptureErrors: react__default.FC<XnsNameCaptureErrorsProps>;
25
+
26
+ interface XnsNameCaptureBuyCallbacks {
27
+ onCaptureName?: (name: string) => Promise<void>;
28
+ }
29
+ interface XnsNameCaptureTrackingProps {
30
+ funnel?: string;
31
+ intent?: string;
32
+ placement?: string;
33
+ }
34
+ interface XnsNameCaptureRoutingProps {
35
+ navigate?: (to: string) => void;
36
+ paramsString?: string;
37
+ routingError?: Error;
38
+ to?: To;
39
+ }
40
+ interface XnsNameCaptureBaseProps {
41
+ autoFocus?: boolean;
42
+ buttonText?: string;
43
+ defaultXnsName?: string;
44
+ errorUi?: 'alert' | 'toast';
45
+ mobileButtonText?: string;
46
+ onNameChange?: (name: string) => void;
47
+ showSecondary?: boolean | ReactNode;
48
+ }
49
+ interface XnsNameCaptureProps extends XnsNameCaptureBaseProps, XnsNameCaptureTrackingProps, XnsNameCaptureBuyCallbacks, XnsNameCaptureRoutingProps, FlexBoxProps {
50
+ }
51
+ type WithXnsCapture<T> = T & {
52
+ XnsCapture?: React.FC<XnsNameCaptureProps>;
53
+ };
54
+
55
+ declare const useXnsNameCaptureRouting: (props: XnsNameCaptureProps) => {
56
+ defaultXnsName: string | undefined;
57
+ routingError: Error | undefined;
58
+ navigate: (to: string) => void;
59
+ paramsString: string;
60
+ autoFocus?: boolean;
61
+ buttonText?: string;
62
+ errorUi?: "alert" | "toast";
63
+ mobileButtonText?: string;
64
+ onNameChange?: (name: string) => void;
65
+ showSecondary?: boolean | react.ReactNode;
66
+ funnel?: string;
67
+ intent?: string;
68
+ placement?: string;
69
+ onCaptureName?: (name: string) => Promise<void>;
70
+ to?: react_router_dom.To;
71
+ background?: boolean;
72
+ paper?: boolean;
73
+ busy?: boolean;
74
+ busyCircularProps?: _xylabs_react_shared.BusyCircularProgressProps;
75
+ busyColor?: _xylabs_react_shared.MaterialUIThemeColor;
76
+ busyLinearProps?: _xylabs_react_shared.BusyLinearProgressProps;
77
+ busyMinimum?: number;
78
+ busyOpacity?: string | number;
79
+ busySize?: number;
80
+ busyVariant?: _xylabs_react_shared.BusyVariant;
81
+ classes?: Partial<_mui_material.ClassNameMap<never>> | undefined;
82
+ className?: string | undefined;
83
+ style?: React.CSSProperties | undefined;
84
+ children?: react.ReactNode;
85
+ color?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Color | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Color | undefined>);
86
+ margin?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined>);
87
+ sx?: _mui_system.SxProps<_mui_material.Theme> | undefined;
88
+ p?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined>);
89
+ slot?: string | undefined | undefined;
90
+ title?: string | undefined | undefined;
91
+ key?: react.Key | null | undefined;
92
+ defaultChecked?: boolean | undefined | undefined;
93
+ defaultValue?: string | number | readonly string[] | undefined;
94
+ suppressContentEditableWarning?: boolean | undefined | undefined;
95
+ suppressHydrationWarning?: boolean | undefined | undefined;
96
+ accessKey?: string | undefined | undefined;
97
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
98
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
99
+ contextMenu?: string | undefined | undefined;
100
+ dir?: string | undefined | undefined;
101
+ draggable?: (boolean | "true" | "false") | undefined;
102
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
103
+ hidden?: boolean | undefined | undefined;
104
+ id?: string | undefined | undefined;
105
+ lang?: string | undefined | undefined;
106
+ nonce?: string | undefined | undefined;
107
+ spellCheck?: (boolean | "true" | "false") | undefined;
108
+ tabIndex?: number | undefined | undefined;
109
+ translate?: "yes" | "no" | undefined | undefined;
110
+ radioGroup?: string | undefined | undefined;
111
+ role?: react.AriaRole | undefined;
112
+ about?: string | undefined | undefined;
113
+ content?: string | undefined | undefined;
114
+ datatype?: string | undefined | undefined;
115
+ inlist?: any;
116
+ prefix?: string | undefined | undefined;
117
+ property?: string | undefined | undefined;
118
+ rel?: string | undefined | undefined;
119
+ resource?: string | undefined | undefined;
120
+ rev?: string | undefined | undefined;
121
+ typeof?: string | undefined | undefined;
122
+ vocab?: string | undefined | undefined;
123
+ autoCorrect?: string | undefined | undefined;
124
+ autoSave?: string | undefined | undefined;
125
+ itemProp?: string | undefined | undefined;
126
+ itemScope?: boolean | undefined | undefined;
127
+ itemType?: string | undefined | undefined;
128
+ itemID?: string | undefined | undefined;
129
+ itemRef?: string | undefined | undefined;
130
+ results?: number | undefined | undefined;
131
+ security?: string | undefined | undefined;
132
+ unselectable?: "on" | "off" | undefined | undefined;
133
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
134
+ is?: string | undefined | undefined;
135
+ "aria-activedescendant"?: string | undefined | undefined;
136
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
137
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
138
+ "aria-braillelabel"?: string | undefined | undefined;
139
+ "aria-brailleroledescription"?: string | undefined | undefined;
140
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
141
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
142
+ "aria-colcount"?: number | undefined | undefined;
143
+ "aria-colindex"?: number | undefined | undefined;
144
+ "aria-colindextext"?: string | undefined | undefined;
145
+ "aria-colspan"?: number | undefined | undefined;
146
+ "aria-controls"?: string | undefined | undefined;
147
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
148
+ "aria-describedby"?: string | undefined | undefined;
149
+ "aria-description"?: string | undefined | undefined;
150
+ "aria-details"?: string | undefined | undefined;
151
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
152
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
153
+ "aria-errormessage"?: string | undefined | undefined;
154
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
155
+ "aria-flowto"?: string | undefined | undefined;
156
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
157
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
158
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
159
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
160
+ "aria-keyshortcuts"?: string | undefined | undefined;
161
+ "aria-label"?: string | undefined | undefined;
162
+ "aria-labelledby"?: string | undefined | undefined;
163
+ "aria-level"?: number | undefined | undefined;
164
+ "aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
165
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
166
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
167
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
168
+ "aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
169
+ "aria-owns"?: string | undefined | undefined;
170
+ "aria-placeholder"?: string | undefined | undefined;
171
+ "aria-posinset"?: number | undefined | undefined;
172
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
173
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
174
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
175
+ "aria-required"?: (boolean | "true" | "false") | undefined;
176
+ "aria-roledescription"?: string | undefined | undefined;
177
+ "aria-rowcount"?: number | undefined | undefined;
178
+ "aria-rowindex"?: number | undefined | undefined;
179
+ "aria-rowindextext"?: string | undefined | undefined;
180
+ "aria-rowspan"?: number | undefined | undefined;
181
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
182
+ "aria-setsize"?: number | undefined | undefined;
183
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
184
+ "aria-valuemax"?: number | undefined | undefined;
185
+ "aria-valuemin"?: number | undefined | undefined;
186
+ "aria-valuenow"?: number | undefined | undefined;
187
+ "aria-valuetext"?: string | undefined | undefined;
188
+ dangerouslySetInnerHTML?: {
189
+ __html: string | TrustedHTML;
190
+ } | undefined | undefined;
191
+ onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
192
+ onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
193
+ onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
194
+ onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
195
+ onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
196
+ onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
197
+ onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
198
+ onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
199
+ onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
200
+ onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
201
+ onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
202
+ onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
203
+ onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
204
+ onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
205
+ onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
206
+ onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
207
+ onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
208
+ onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
209
+ onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
210
+ onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
211
+ onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
212
+ onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
213
+ onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
214
+ onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
215
+ onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
216
+ onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
217
+ onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
218
+ onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
219
+ onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
220
+ onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
221
+ onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
222
+ onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
223
+ onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
224
+ onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
225
+ onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
226
+ onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
227
+ onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
228
+ onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
229
+ onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
230
+ onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
231
+ onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
232
+ onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
233
+ onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
234
+ onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
235
+ onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
236
+ onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
237
+ onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
238
+ onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
239
+ onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
240
+ onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
241
+ onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
242
+ onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
243
+ onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
244
+ onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
245
+ onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
246
+ onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
247
+ onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
248
+ onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
249
+ onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
250
+ onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
251
+ onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
252
+ onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
253
+ onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
254
+ onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
255
+ onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
256
+ onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
257
+ onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
258
+ onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
259
+ onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
260
+ onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
261
+ onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
262
+ onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
263
+ onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
264
+ onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
265
+ onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
266
+ onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
267
+ onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
268
+ onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
269
+ onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
270
+ onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
271
+ onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
272
+ onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
273
+ onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
274
+ onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
275
+ onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
276
+ onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
277
+ onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
278
+ onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
279
+ onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
280
+ onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
281
+ onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
282
+ onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
283
+ onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
284
+ onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
285
+ onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
286
+ onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
287
+ onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
288
+ onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
289
+ onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
290
+ onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
291
+ onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
292
+ onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
293
+ onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
294
+ onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
295
+ onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
296
+ onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
297
+ onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
298
+ onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
299
+ onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
300
+ onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
301
+ onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
302
+ onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
303
+ onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
304
+ onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
305
+ onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
306
+ onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
307
+ onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
308
+ onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
309
+ onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
310
+ onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
311
+ onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
312
+ onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
313
+ onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
314
+ onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
315
+ onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
316
+ onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
317
+ onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
318
+ onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
319
+ onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
320
+ onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
321
+ onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
322
+ onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
323
+ onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
324
+ onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
325
+ onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
326
+ onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
327
+ onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
328
+ onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
329
+ onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
330
+ onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
331
+ onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
332
+ onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
333
+ onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
334
+ onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
335
+ onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
336
+ onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
337
+ onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
338
+ onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
339
+ onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
340
+ onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
341
+ onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
342
+ onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
343
+ onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
344
+ onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
345
+ onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
346
+ onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
347
+ onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
348
+ onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
349
+ onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
350
+ onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
351
+ component?: React.ElementType | undefined;
352
+ border?: _mui_system_styleFunctionSx.ResponsiveStyleValue<number | "hidden" | "medium" | (string & {}) | "none" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "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" | "inset" | "thick" | "thin" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<number | "hidden" | "medium" | (string & {}) | "none" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "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" | "inset" | "thick" | "thin" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | undefined>);
353
+ height?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Height<string | number> | readonly NonNullable<csstype.Property.Height<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Height<string | number> | readonly NonNullable<csstype.Property.Height<string | number> | undefined>[] | undefined>);
354
+ width?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Width<string | number> | readonly NonNullable<csstype.Property.Width<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Width<string | number> | readonly NonNullable<csstype.Property.Width<string | number> | undefined>[] | undefined>);
355
+ position?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Position | readonly NonNullable<csstype.Property.Position | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Position | readonly NonNullable<csstype.Property.Position | undefined>[] | undefined>);
356
+ boxShadow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<number | csstype.Property.BoxShadow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<number | csstype.Property.BoxShadow | undefined>);
357
+ fontWeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
358
+ zIndex?: _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined>);
359
+ alignContent?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignContent | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignContent | undefined>);
360
+ alignItems?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignItems | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignItems | undefined>);
361
+ alignSelf?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignSelf | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.AlignSelf | undefined>);
362
+ bottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Bottom<string | number> | readonly NonNullable<csstype.Property.Bottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Bottom<string | number> | readonly NonNullable<csstype.Property.Bottom<string | number> | undefined>[] | undefined>);
363
+ boxSizing?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BoxSizing | readonly NonNullable<csstype.Property.BoxSizing | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BoxSizing | readonly NonNullable<csstype.Property.BoxSizing | undefined>[] | undefined>);
364
+ columnGap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.ColumnGap<string | number> | readonly NonNullable<csstype.Property.ColumnGap<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.ColumnGap<string | number> | readonly NonNullable<csstype.Property.ColumnGap<string | number> | undefined>[] | undefined>);
365
+ display?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined>);
366
+ flexBasis?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexBasis<string | number> | readonly NonNullable<csstype.Property.FlexBasis<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexBasis<string | number> | readonly NonNullable<csstype.Property.FlexBasis<string | number> | undefined>[] | undefined>);
367
+ flexDirection?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexDirection | readonly NonNullable<csstype.Property.FlexDirection | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexDirection | readonly NonNullable<csstype.Property.FlexDirection | undefined>[] | undefined>);
368
+ flexGrow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexGrow | readonly NonNullable<csstype.Property.FlexGrow | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexGrow | readonly NonNullable<csstype.Property.FlexGrow | undefined>[] | undefined>);
369
+ flexShrink?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexShrink | readonly NonNullable<csstype.Property.FlexShrink | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexShrink | readonly NonNullable<csstype.Property.FlexShrink | undefined>[] | undefined>);
370
+ flexWrap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexWrap | readonly NonNullable<csstype.Property.FlexWrap | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FlexWrap | readonly NonNullable<csstype.Property.FlexWrap | undefined>[] | undefined>);
371
+ fontFamily?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontFamily | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontFamily | undefined>);
372
+ fontSize?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FontSize<string | number> | readonly NonNullable<csstype.Property.FontSize<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.FontSize<string | number> | readonly NonNullable<csstype.Property.FontSize<string | number> | undefined>[] | undefined>);
373
+ fontStyle?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontStyle | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.FontStyle | undefined>);
374
+ gridAutoColumns?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoColumns<string | number> | readonly NonNullable<csstype.Property.GridAutoColumns<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoColumns<string | number> | readonly NonNullable<csstype.Property.GridAutoColumns<string | number> | undefined>[] | undefined>);
375
+ gridAutoFlow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridAutoFlow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridAutoFlow | undefined>);
376
+ gridAutoRows?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoRows<string | number> | readonly NonNullable<csstype.Property.GridAutoRows<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridAutoRows<string | number> | readonly NonNullable<csstype.Property.GridAutoRows<string | number> | undefined>[] | undefined>);
377
+ gridTemplateAreas?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridTemplateAreas | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.GridTemplateAreas | undefined>);
378
+ gridTemplateColumns?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateColumns<string | number> | readonly NonNullable<csstype.Property.GridTemplateColumns<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateColumns<string | number> | readonly NonNullable<csstype.Property.GridTemplateColumns<string | number> | undefined>[] | undefined>);
379
+ gridTemplateRows?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateRows<string | number> | readonly NonNullable<csstype.Property.GridTemplateRows<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridTemplateRows<string | number> | readonly NonNullable<csstype.Property.GridTemplateRows<string | number> | undefined>[] | undefined>);
380
+ justifyContent?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyContent | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyContent | undefined>);
381
+ justifyItems?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyItems | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifyItems | undefined>);
382
+ justifySelf?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifySelf | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.JustifySelf | undefined>);
383
+ left?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Left<string | number> | readonly NonNullable<csstype.Property.Left<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Left<string | number> | readonly NonNullable<csstype.Property.Left<string | number> | undefined>[] | undefined>);
384
+ letterSpacing?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LetterSpacing<string | number> | readonly NonNullable<csstype.Property.LetterSpacing<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LetterSpacing<string | number> | readonly NonNullable<csstype.Property.LetterSpacing<string | number> | undefined>[] | undefined>);
385
+ lineHeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LineHeight<string | number> | readonly NonNullable<csstype.Property.LineHeight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.LineHeight<string | number> | readonly NonNullable<csstype.Property.LineHeight<string | number> | undefined>[] | undefined>);
386
+ marginBlockEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockEnd<string | number> | readonly NonNullable<csstype.Property.MarginBlockEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockEnd<string | number> | readonly NonNullable<csstype.Property.MarginBlockEnd<string | number> | undefined>[] | undefined>);
387
+ marginBlockStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockStart<string | number> | readonly NonNullable<csstype.Property.MarginBlockStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlockStart<string | number> | readonly NonNullable<csstype.Property.MarginBlockStart<string | number> | undefined>[] | undefined>);
388
+ marginBottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined>);
389
+ marginInlineEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineEnd<string | number> | readonly NonNullable<csstype.Property.MarginInlineEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineEnd<string | number> | readonly NonNullable<csstype.Property.MarginInlineEnd<string | number> | undefined>[] | undefined>);
390
+ marginInlineStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineStart<string | number> | readonly NonNullable<csstype.Property.MarginInlineStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInlineStart<string | number> | readonly NonNullable<csstype.Property.MarginInlineStart<string | number> | undefined>[] | undefined>);
391
+ marginLeft?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
392
+ marginRight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined>);
393
+ marginTop?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
394
+ maxHeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxHeight<string | number> | readonly NonNullable<csstype.Property.MaxHeight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxHeight<string | number> | readonly NonNullable<csstype.Property.MaxHeight<string | number> | undefined>[] | undefined>);
395
+ maxWidth?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxWidth<string | number> | readonly NonNullable<csstype.Property.MaxWidth<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MaxWidth<string | number> | readonly NonNullable<csstype.Property.MaxWidth<string | number> | undefined>[] | undefined>);
396
+ minHeight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinHeight<string | number> | readonly NonNullable<csstype.Property.MinHeight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinHeight<string | number> | readonly NonNullable<csstype.Property.MinHeight<string | number> | undefined>[] | undefined>);
397
+ minWidth?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinWidth<string | number> | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MinWidth<string | number> | readonly NonNullable<csstype.Property.MinWidth<string | number> | undefined>[] | undefined>);
398
+ order?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Order | readonly NonNullable<csstype.Property.Order | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Order | readonly NonNullable<csstype.Property.Order | undefined>[] | undefined>);
399
+ paddingBlockEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockEnd<string | number> | readonly NonNullable<csstype.Property.PaddingBlockEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockEnd<string | number> | readonly NonNullable<csstype.Property.PaddingBlockEnd<string | number> | undefined>[] | undefined>);
400
+ paddingBlockStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockStart<string | number> | readonly NonNullable<csstype.Property.PaddingBlockStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlockStart<string | number> | readonly NonNullable<csstype.Property.PaddingBlockStart<string | number> | undefined>[] | undefined>);
401
+ paddingBottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined>);
402
+ paddingInlineEnd?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineEnd<string | number> | readonly NonNullable<csstype.Property.PaddingInlineEnd<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineEnd<string | number> | readonly NonNullable<csstype.Property.PaddingInlineEnd<string | number> | undefined>[] | undefined>);
403
+ paddingInlineStart?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineStart<string | number> | readonly NonNullable<csstype.Property.PaddingInlineStart<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInlineStart<string | number> | readonly NonNullable<csstype.Property.PaddingInlineStart<string | number> | undefined>[] | undefined>);
404
+ paddingLeft?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
405
+ paddingRight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined>);
406
+ paddingTop?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
407
+ right?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Right<string | number> | readonly NonNullable<csstype.Property.Right<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Right<string | number> | readonly NonNullable<csstype.Property.Right<string | number> | undefined>[] | undefined>);
408
+ rowGap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.RowGap<string | number> | readonly NonNullable<csstype.Property.RowGap<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.RowGap<string | number> | readonly NonNullable<csstype.Property.RowGap<string | number> | undefined>[] | undefined>);
409
+ textAlign?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextAlign | readonly NonNullable<csstype.Property.TextAlign | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextAlign | readonly NonNullable<csstype.Property.TextAlign | undefined>[] | undefined>);
410
+ textOverflow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.TextOverflow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.TextOverflow | undefined>);
411
+ textTransform?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextTransform | readonly NonNullable<csstype.Property.TextTransform | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.TextTransform | readonly NonNullable<csstype.Property.TextTransform | undefined>[] | undefined>);
412
+ top?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Top<string | number> | readonly NonNullable<csstype.Property.Top<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Top<string | number> | readonly NonNullable<csstype.Property.Top<string | number> | undefined>[] | undefined>);
413
+ visibility?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Visibility | readonly NonNullable<csstype.Property.Visibility | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Visibility | readonly NonNullable<csstype.Property.Visibility | undefined>[] | undefined>);
414
+ whiteSpace?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.WhiteSpace | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.WhiteSpace | undefined>);
415
+ borderBottom?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderBottom<string | number> | readonly NonNullable<csstype.Property.BorderBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderBottom<string | number> | readonly NonNullable<csstype.Property.BorderBottom<string | number> | undefined>[] | undefined>);
416
+ borderColor?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BorderColor | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BorderColor | undefined>);
417
+ borderLeft?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderLeft<string | number> | readonly NonNullable<csstype.Property.BorderLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderLeft<string | number> | readonly NonNullable<csstype.Property.BorderLeft<string | number> | undefined>[] | undefined>);
418
+ borderRadius?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRadius<string | number> | readonly NonNullable<csstype.Property.BorderRadius<string | number> | undefined>[] | undefined>);
419
+ borderRight?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRight<string | number> | readonly NonNullable<csstype.Property.BorderRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderRight<string | number> | readonly NonNullable<csstype.Property.BorderRight<string | number> | undefined>[] | undefined>);
420
+ borderTop?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderTop<string | number> | readonly NonNullable<csstype.Property.BorderTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.BorderTop<string | number> | readonly NonNullable<csstype.Property.BorderTop<string | number> | undefined>[] | undefined>);
421
+ flex?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Flex<string | number> | readonly NonNullable<csstype.Property.Flex<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Flex<string | number> | readonly NonNullable<csstype.Property.Flex<string | number> | undefined>[] | undefined>);
422
+ gap?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Gap<string | number> | readonly NonNullable<csstype.Property.Gap<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Gap<string | number> | readonly NonNullable<csstype.Property.Gap<string | number> | undefined>[] | undefined>);
423
+ gridArea?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridArea | readonly NonNullable<csstype.Property.GridArea | undefined>[] | undefined>);
424
+ gridColumn?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridColumn | readonly NonNullable<csstype.Property.GridColumn | undefined>[] | undefined>);
425
+ gridRow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.GridRow | readonly NonNullable<csstype.Property.GridRow | undefined>[] | undefined>);
426
+ marginBlock?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlock<string | number> | readonly NonNullable<csstype.Property.MarginBlock<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBlock<string | number> | readonly NonNullable<csstype.Property.MarginBlock<string | number> | undefined>[] | undefined>);
427
+ marginInline?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInline<string | number> | readonly NonNullable<csstype.Property.MarginInline<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginInline<string | number> | readonly NonNullable<csstype.Property.MarginInline<string | number> | undefined>[] | undefined>);
428
+ overflow?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Overflow | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Overflow | undefined>);
429
+ padding?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Padding<string | number> | readonly NonNullable<csstype.Property.Padding<string | number> | undefined>[] | undefined>);
430
+ paddingBlock?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlock<string | number> | readonly NonNullable<csstype.Property.PaddingBlock<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBlock<string | number> | readonly NonNullable<csstype.Property.PaddingBlock<string | number> | undefined>[] | undefined>);
431
+ paddingInline?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInline<string | number> | readonly NonNullable<csstype.Property.PaddingInline<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingInline<string | number> | readonly NonNullable<csstype.Property.PaddingInline<string | number> | undefined>[] | undefined>);
432
+ bgcolor?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BackgroundColor | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.BackgroundColor | undefined>);
433
+ m?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.Margin<string | number> | readonly NonNullable<csstype.Property.Margin<string | number> | undefined>[] | undefined>);
434
+ mt?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
435
+ mr?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginRight<string | number> | readonly NonNullable<csstype.Property.MarginRight<string | number> | undefined>[] | undefined>);
436
+ mb?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginBottom<string | number> | readonly NonNullable<csstype.Property.MarginBottom<string | number> | undefined>[] | undefined>);
437
+ ml?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
438
+ mx?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
439
+ marginX?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginLeft<string | number> | readonly NonNullable<csstype.Property.MarginLeft<string | number> | undefined>[] | undefined>);
440
+ my?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
441
+ marginY?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.MarginTop<string | number> | readonly NonNullable<csstype.Property.MarginTop<string | number> | undefined>[] | undefined>);
442
+ pt?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
443
+ pr?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingRight<string | number> | readonly NonNullable<csstype.Property.PaddingRight<string | number> | undefined>[] | undefined>);
444
+ pb?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingBottom<string | number> | readonly NonNullable<csstype.Property.PaddingBottom<string | number> | undefined>[] | undefined>);
445
+ pl?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
446
+ px?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
447
+ paddingX?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingLeft<string | number> | readonly NonNullable<csstype.Property.PaddingLeft<string | number> | undefined>[] | undefined>);
448
+ py?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
449
+ paddingY?: _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<csstype.Property.PaddingTop<string | number> | readonly NonNullable<csstype.Property.PaddingTop<string | number> | undefined>[] | undefined>);
450
+ typography?: _mui_system_styleFunctionSx.ResponsiveStyleValue<string | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<string | undefined>);
451
+ displayPrint?: _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined> | ((theme: _mui_material.Theme) => _mui_system_styleFunctionSx.ResponsiveStyleValue<readonly string[] | csstype.Property.Display | undefined>);
452
+ };
453
+
454
+ declare const useXnsNameFromLocation: () => [name: string | undefined, error: Error | undefined];
455
+
456
+ type XnsCaptureSecondaryLinkProps = XnsNameCaptureTrackingProps & XnsNameCaptureRoutingProps & XnsNameCaptureBuyCallbacks & LinkExProps & {
457
+ setError?: Dispatch<Error | undefined>;
458
+ text?: string;
459
+ xnsName: string;
460
+ };
461
+ declare const XnsCaptureSecondaryLink: react__default.FC<XnsCaptureSecondaryLinkProps>;
462
+
463
+ declare const XnsNameCapture: react__default.FC<XnsNameCaptureProps>;
464
+
465
+ declare const XnsNameCaptureWithContext: react__default.FC<XnsNameCaptureProps>;
466
+
467
+ export { type WithXnsCapture, XnsCaptureSecondaryLink, type XnsCaptureSecondaryLinkProps, XnsEstimateNameTextField, type XnsEstimateNameTextFieldProps, XnsNameCapture, type XnsNameCaptureBaseProps, type XnsNameCaptureBuyCallbacks, XnsNameCaptureErrors, type XnsNameCaptureErrorsProps, type XnsNameCaptureProps, type XnsNameCaptureRoutingProps, type XnsNameCaptureTrackingProps, XnsNameCaptureWithContext, useXnsNameCaptureRouting, useXnsNameFromLocation };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-xns",
3
- "version": "4.4.2",
3
+ "version": "4.4.4",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -44,23 +44,23 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@xylabs/pixel": "^2.0.6",
47
- "@xylabs/react-button": "^5.3.22",
48
- "@xylabs/react-flexbox": "^5.3.22",
49
- "@xylabs/react-link": "^5.3.22",
50
- "@xylabs/react-pixel": "^5.3.22",
51
- "@xyo-network/xns-record-payloadset-plugins": "^3.3.0"
47
+ "@xylabs/react-button": "^5.3.23",
48
+ "@xylabs/react-flexbox": "^5.3.23",
49
+ "@xylabs/react-link": "^5.3.23",
50
+ "@xylabs/react-pixel": "^5.3.23",
51
+ "@xyo-network/xns-record-payloadset-plugins": "^3.4.1"
52
52
  },
53
53
  "devDependencies": {
54
- "@mui/icons-material": "^6.4.1",
55
- "@mui/material": "^6.4.1",
56
- "@mui/styles": "^6.4.1",
57
- "@storybook/react": "^8.5.2",
58
- "@xylabs/ts-scripts-yarn3": "^4.2.6",
59
- "@xylabs/tsconfig-react": "^4.2.6",
54
+ "@mui/icons-material": "^6.4.4",
55
+ "@mui/material": "^6.4.4",
56
+ "@mui/styles": "^6.4.4",
57
+ "@storybook/react": "^8.5.5",
58
+ "@xylabs/ts-scripts-yarn3": "^5.0.24",
59
+ "@xylabs/tsconfig-react": "^5.0.24",
60
60
  "react": "^18.3.1",
61
61
  "react-dom": "^18.3.1",
62
- "react-router-dom": "^7.1.3",
63
- "storybook": "^8.5.2",
62
+ "react-router-dom": "^7.1.5",
63
+ "storybook": "^8.5.5",
64
64
  "typescript": "^5.7.3"
65
65
  },
66
66
  "peerDependencies": {
@@ -1,7 +0,0 @@
1
- import type { TextFieldProps } from '@mui/material';
2
- import React from 'react';
3
- export interface XnsEstimateNameTextFieldProps {
4
- maskOutput?: boolean;
5
- }
6
- export declare const XnsEstimateNameTextField: React.FC<XnsEstimateNameTextFieldProps & TextFieldProps>;
7
- //# sourceMappingURL=EstimateNameTextField.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"EstimateNameTextField.d.ts","sourceRoot":"","sources":["../../../../src/components/EstimateName/EstimateNameTextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAA0B,cAAc,EAAE,MAAM,eAAe,CAAA;AAK3E,OAAO,KAEN,MAAM,OAAO,CAAA;AAEd,MAAM,WAAW,6BAA6B;IAC5C,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,6BAA6B,GAAG,cAAc,CAsD7F,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './EstimateNameTextField.tsx';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/EstimateName/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAA"}