@koine/react 1.1.11 → 1.1.14

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 (48) hide show
  1. package/Carousel/CarouselCss.d.ts +6 -1
  2. package/Details/Details.d.ts +298 -13
  3. package/Dialog/DialogMui.d.ts +328 -19
  4. package/Dialog/css/bare.d.ts +352 -43
  5. package/Dialog/m/bare.d.ts +322 -13
  6. package/Dialog/sc/bare.d.ts +325 -17
  7. package/Dialog/sc/framer.d.ts +316 -7
  8. package/Dialog/sc/framerMaterial.d.ts +316 -7
  9. package/Dialog/sc/material.d.ts +325 -16
  10. package/Dialog/tw/bare.d.ts +358 -49
  11. package/Dialog/tw/elegant.d.ts +379 -70
  12. package/Dialog/tw/framer.d.ts +340 -31
  13. package/Dialog/tw/framerMaterial.d.ts +356 -47
  14. package/Dialog/tw/material.d.ts +379 -70
  15. package/Form/Form.d.ts +45 -19
  16. package/Form/sc/bare.d.ts +33 -8
  17. package/Forms/Checkbox/Checkbox.d.ts +1 -1
  18. package/Forms/Input/Input.d.ts +1 -1
  19. package/Forms/Password/Password.d.ts +1 -1
  20. package/Forms/Radio/Radio.d.ts +1 -1
  21. package/Forms/Switch/Switch.d.ts +1 -1
  22. package/Forms/Textarea/Textarea.d.ts +1 -1
  23. package/Forms/Textarea/TextareaRich.d.ts +1 -1
  24. package/Link/Link.d.ts +1 -1
  25. package/Menu/MenuMui.d.ts +0 -35
  26. package/Menu/MenuMui.js +164 -77
  27. package/Menu/MenuMui.mjs +165 -75
  28. package/MenuItem/MenuItemMui.d.ts +0 -6
  29. package/MenuItem/MenuItemMui.js +31 -17
  30. package/MenuItem/MenuItemMui.mjs +32 -15
  31. package/Tabs/TabsMui.d.ts +287 -55
  32. package/Tabs/tw/bare.d.ts +311 -80
  33. package/Tabs/tw/material.d.ts +326 -136
  34. package/hooks/index.d.ts +1 -2
  35. package/hooks/index.js +1 -2
  36. package/hooks/index.mjs +1 -2
  37. package/hooks/useFocus.js +3 -3
  38. package/hooks/useFocus.mjs +3 -3
  39. package/hooks/useIsomorphicLayoutEffect.d.ts +1 -1
  40. package/hooks/useIsomorphicLayoutEffect.js +1 -1
  41. package/hooks/useIsomorphicLayoutEffect.mjs +1 -1
  42. package/hooks/useSpinDelay.d.ts +14 -0
  43. package/hooks/useSpinDelay.js +54 -0
  44. package/hooks/useSpinDelay.mjs +50 -0
  45. package/package.json +25 -22
  46. package/styles/theme--vanilla.d.ts +0 -1
  47. package/styles/theme--vanilla.js +15 -15
  48. package/styles/theme--vanilla.mjs +15 -14
@@ -58,75 +58,384 @@ export type Props = Simplify<WithComponents<OwnProps, Components>>;
58
58
  export type DialogProps = Props;
59
59
  export type KoineDialogProps = Props;
60
60
  export declare const Root: import("@mui/types").OverridableComponent<import("@mui/base/ModalUnstyled").ModalUnstyledTypeMap<{}, "div">>;
61
- export declare const Backdrop: NonNullable<React.ElementType<Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
61
+ export declare const Backdrop: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
62
62
  open?: boolean | undefined;
63
63
  }>>;
64
- export declare const Container: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & Pick<OwnProps, "$scrollPaper"> & {
64
+ export declare const Container: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & Pick<OwnProps, "$scrollPaper"> & {
65
65
  children?: React.ReactNode;
66
66
  }>>;
67
- export declare const Paper: NonNullable<React.ElementType<Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
67
+ export declare const Paper: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
68
68
  "aria-label": string;
69
69
  } & Pick<OwnProps, "$scrollPaper"> & {
70
70
  children?: React.ReactNode;
71
71
  }>>;
72
- export declare const Close: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & {
72
+ export declare const Close: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
73
73
  onClick: OwnProps["onClose"];
74
74
  } & {
75
75
  children?: React.ReactNode;
76
76
  }>>;
77
- export declare const Header: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
77
+ export declare const Header: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
78
78
  children?: React.ReactNode;
79
79
  }>>;
80
- export declare const Body: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
80
+ export declare const Body: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
81
81
  children?: React.ReactNode;
82
82
  }>>;
83
- export declare const KoineDialog: ((props: Pick<Simplify<WithComponents<OwnProps, Components>>, "key" | "id" | "title" | "color" | "slot" | "style" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "container" | "disableAutoFocus" | "disableEnforceFocus" | "disableEscapeKeyDown" | "disablePortal" | "disableRestoreFocus" | "disableScrollLock" | "hideBackdrop" | "keepMounted" | "onBackdropClick" | "onClose" | "open" | "slotProps" | "slots" | "focusVisible" | "$scrollPaper" | "mBackdrop" | "mPaper" | keyof Components> & React.RefAttributes<HTMLDivElement>) => React.FunctionComponentElement<any>) & {
83
+ export declare const KoineDialog: ((props: Omit<{
84
+ key?: React.Key | null | undefined;
85
+ id?: string | undefined;
86
+ title?: string | undefined;
87
+ color?: string | undefined;
88
+ slot?: string | undefined;
89
+ style?: React.CSSProperties | undefined;
90
+ ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
91
+ defaultChecked?: boolean | undefined;
92
+ defaultValue?: string | number | readonly string[] | undefined;
93
+ suppressContentEditableWarning?: boolean | undefined;
94
+ suppressHydrationWarning?: boolean | undefined;
95
+ accessKey?: string | undefined;
96
+ className?: string | undefined;
97
+ contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
98
+ contextMenu?: string | undefined;
99
+ dir?: string | undefined;
100
+ draggable?: (boolean | "true" | "false") | undefined;
101
+ hidden?: boolean | undefined;
102
+ lang?: string | undefined;
103
+ nonce?: string | undefined;
104
+ placeholder?: string | undefined;
105
+ spellCheck?: (boolean | "true" | "false") | undefined;
106
+ tabIndex?: number | undefined;
107
+ translate?: "yes" | "no" | undefined;
108
+ radioGroup?: string | undefined;
109
+ role?: React.AriaRole | undefined;
110
+ about?: string | undefined;
111
+ datatype?: string | undefined;
112
+ inlist?: any;
113
+ prefix?: string | undefined;
114
+ property?: string | undefined;
115
+ resource?: string | undefined;
116
+ typeof?: string | undefined;
117
+ vocab?: string | undefined;
118
+ autoCapitalize?: string | undefined;
119
+ autoCorrect?: string | undefined;
120
+ autoSave?: string | undefined;
121
+ itemProp?: string | undefined;
122
+ itemScope?: boolean | undefined;
123
+ itemType?: string | undefined;
124
+ itemID?: string | undefined;
125
+ itemRef?: string | undefined;
126
+ results?: number | undefined;
127
+ security?: string | undefined;
128
+ unselectable?: "on" | "off" | undefined;
129
+ inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
130
+ is?: string | undefined;
131
+ 'aria-activedescendant'?: string | undefined;
132
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
133
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
134
+ 'aria-busy'?: (boolean | "true" | "false") | undefined;
135
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
136
+ 'aria-colcount'?: number | undefined;
137
+ 'aria-colindex'?: number | undefined;
138
+ 'aria-colspan'?: number | undefined;
139
+ 'aria-controls'?: string | undefined;
140
+ 'aria-current'?: boolean | "location" | "time" | "true" | "false" | "page" | "step" | "date" | undefined;
141
+ 'aria-describedby'?: string | undefined;
142
+ 'aria-details'?: string | undefined;
143
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
144
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
145
+ 'aria-errormessage'?: string | undefined;
146
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
147
+ 'aria-flowto'?: string | undefined;
148
+ 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
149
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
150
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
151
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
152
+ 'aria-keyshortcuts'?: string | undefined;
153
+ 'aria-label'?: string | undefined;
154
+ 'aria-labelledby'?: string | undefined;
155
+ 'aria-level'?: number | undefined;
156
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
157
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
158
+ 'aria-multiline'?: (boolean | "true" | "false") | undefined;
159
+ 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
160
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
161
+ 'aria-owns'?: string | undefined;
162
+ 'aria-placeholder'?: string | undefined;
163
+ 'aria-posinset'?: number | undefined;
164
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
165
+ 'aria-readonly'?: (boolean | "true" | "false") | undefined;
166
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
167
+ 'aria-required'?: (boolean | "true" | "false") | undefined;
168
+ 'aria-roledescription'?: string | undefined;
169
+ 'aria-rowcount'?: number | undefined;
170
+ 'aria-rowindex'?: number | undefined;
171
+ 'aria-rowspan'?: number | undefined;
172
+ 'aria-selected'?: (boolean | "true" | "false") | undefined;
173
+ 'aria-setsize'?: number | undefined;
174
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
175
+ 'aria-valuemax'?: number | undefined;
176
+ 'aria-valuemin'?: number | undefined;
177
+ 'aria-valuenow'?: number | undefined;
178
+ 'aria-valuetext'?: string | undefined;
179
+ children: React.ReactElement<any, string | React.JSXElementConstructor<any>> & React.ReactNode;
180
+ dangerouslySetInnerHTML?: {
181
+ __html: string;
182
+ } | undefined;
183
+ onCopy?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
184
+ onCopyCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
185
+ onCut?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
186
+ onCutCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
187
+ onPaste?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
188
+ onPasteCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
189
+ onCompositionEnd?: React.CompositionEventHandler<HTMLDivElement> | undefined;
190
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
191
+ onCompositionStart?: React.CompositionEventHandler<HTMLDivElement> | undefined;
192
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
193
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLDivElement> | undefined;
194
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
195
+ onFocus?: React.FocusEventHandler<HTMLDivElement> | undefined;
196
+ onFocusCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
197
+ onBlur?: React.FocusEventHandler<HTMLDivElement> | undefined;
198
+ onBlurCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
199
+ onChange?: React.FormEventHandler<HTMLDivElement> | undefined;
200
+ onChangeCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
201
+ onBeforeInput?: React.FormEventHandler<HTMLDivElement> | undefined;
202
+ onBeforeInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
203
+ onInput?: React.FormEventHandler<HTMLDivElement> | undefined;
204
+ onInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
205
+ onReset?: React.FormEventHandler<HTMLDivElement> | undefined;
206
+ onResetCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
207
+ onSubmit?: React.FormEventHandler<HTMLDivElement> | undefined;
208
+ onSubmitCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
209
+ onInvalid?: React.FormEventHandler<HTMLDivElement> | undefined;
210
+ onInvalidCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
211
+ onLoad?: React.ReactEventHandler<HTMLDivElement> | undefined;
212
+ onLoadCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
213
+ onError?: React.ReactEventHandler<HTMLDivElement> | undefined;
214
+ onErrorCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
215
+ onKeyDown?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
216
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
217
+ onKeyPress?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
218
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
219
+ onKeyUp?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
220
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
221
+ onAbort?: React.ReactEventHandler<HTMLDivElement> | undefined;
222
+ onAbortCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
223
+ onCanPlay?: React.ReactEventHandler<HTMLDivElement> | undefined;
224
+ onCanPlayCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
225
+ onCanPlayThrough?: React.ReactEventHandler<HTMLDivElement> | undefined;
226
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
227
+ onDurationChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
228
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
229
+ onEmptied?: React.ReactEventHandler<HTMLDivElement> | undefined;
230
+ onEmptiedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
231
+ onEncrypted?: React.ReactEventHandler<HTMLDivElement> | undefined;
232
+ onEncryptedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
233
+ onEnded?: React.ReactEventHandler<HTMLDivElement> | undefined;
234
+ onEndedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
235
+ onLoadedData?: React.ReactEventHandler<HTMLDivElement> | undefined;
236
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
237
+ onLoadedMetadata?: React.ReactEventHandler<HTMLDivElement> | undefined;
238
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
239
+ onLoadStart?: React.ReactEventHandler<HTMLDivElement> | undefined;
240
+ onLoadStartCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
241
+ onPause?: React.ReactEventHandler<HTMLDivElement> | undefined;
242
+ onPauseCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
243
+ onPlay?: React.ReactEventHandler<HTMLDivElement> | undefined;
244
+ onPlayCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
245
+ onPlaying?: React.ReactEventHandler<HTMLDivElement> | undefined;
246
+ onPlayingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
247
+ onProgress?: React.ReactEventHandler<HTMLDivElement> | undefined;
248
+ onProgressCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
249
+ onRateChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
250
+ onRateChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
251
+ onResize?: React.ReactEventHandler<HTMLDivElement> | undefined;
252
+ onResizeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
253
+ onSeeked?: React.ReactEventHandler<HTMLDivElement> | undefined;
254
+ onSeekedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
255
+ onSeeking?: React.ReactEventHandler<HTMLDivElement> | undefined;
256
+ onSeekingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
257
+ onStalled?: React.ReactEventHandler<HTMLDivElement> | undefined;
258
+ onStalledCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
259
+ onSuspend?: React.ReactEventHandler<HTMLDivElement> | undefined;
260
+ onSuspendCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
261
+ onTimeUpdate?: React.ReactEventHandler<HTMLDivElement> | undefined;
262
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
263
+ onVolumeChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
264
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
265
+ onWaiting?: React.ReactEventHandler<HTMLDivElement> | undefined;
266
+ onWaitingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
267
+ onAuxClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
268
+ onAuxClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
269
+ onClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
270
+ onClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
271
+ onContextMenu?: React.MouseEventHandler<HTMLDivElement> | undefined;
272
+ onContextMenuCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
273
+ onDoubleClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
274
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
275
+ onDrag?: React.DragEventHandler<HTMLDivElement> | undefined;
276
+ onDragCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
277
+ onDragEnd?: React.DragEventHandler<HTMLDivElement> | undefined;
278
+ onDragEndCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
279
+ onDragEnter?: React.DragEventHandler<HTMLDivElement> | undefined;
280
+ onDragEnterCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
281
+ onDragExit?: React.DragEventHandler<HTMLDivElement> | undefined;
282
+ onDragExitCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
283
+ onDragLeave?: React.DragEventHandler<HTMLDivElement> | undefined;
284
+ onDragLeaveCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
285
+ onDragOver?: React.DragEventHandler<HTMLDivElement> | undefined;
286
+ onDragOverCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
287
+ onDragStart?: React.DragEventHandler<HTMLDivElement> | undefined;
288
+ onDragStartCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
289
+ onDrop?: React.DragEventHandler<HTMLDivElement> | undefined;
290
+ onDropCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
291
+ onMouseDown?: React.MouseEventHandler<HTMLDivElement> | undefined;
292
+ onMouseDownCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
293
+ onMouseEnter?: React.MouseEventHandler<HTMLDivElement> | undefined;
294
+ onMouseLeave?: React.MouseEventHandler<HTMLDivElement> | undefined;
295
+ onMouseMove?: React.MouseEventHandler<HTMLDivElement> | undefined;
296
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
297
+ onMouseOut?: React.MouseEventHandler<HTMLDivElement> | undefined;
298
+ onMouseOutCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
299
+ onMouseOver?: React.MouseEventHandler<HTMLDivElement> | undefined;
300
+ onMouseOverCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
301
+ onMouseUp?: React.MouseEventHandler<HTMLDivElement> | undefined;
302
+ onMouseUpCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
303
+ onSelect?: React.ReactEventHandler<HTMLDivElement> | undefined;
304
+ onSelectCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
305
+ onTouchCancel?: React.TouchEventHandler<HTMLDivElement> | undefined;
306
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
307
+ onTouchEnd?: React.TouchEventHandler<HTMLDivElement> | undefined;
308
+ onTouchEndCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
309
+ onTouchMove?: React.TouchEventHandler<HTMLDivElement> | undefined;
310
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
311
+ onTouchStart?: React.TouchEventHandler<HTMLDivElement> | undefined;
312
+ onTouchStartCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
313
+ onPointerDown?: React.PointerEventHandler<HTMLDivElement> | undefined;
314
+ onPointerDownCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
315
+ onPointerMove?: React.PointerEventHandler<HTMLDivElement> | undefined;
316
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
317
+ onPointerUp?: React.PointerEventHandler<HTMLDivElement> | undefined;
318
+ onPointerUpCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
319
+ onPointerCancel?: React.PointerEventHandler<HTMLDivElement> | undefined;
320
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
321
+ onPointerEnter?: React.PointerEventHandler<HTMLDivElement> | undefined;
322
+ onPointerEnterCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
323
+ onPointerLeave?: React.PointerEventHandler<HTMLDivElement> | undefined;
324
+ onPointerLeaveCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
325
+ onPointerOver?: React.PointerEventHandler<HTMLDivElement> | undefined;
326
+ onPointerOverCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
327
+ onPointerOut?: React.PointerEventHandler<HTMLDivElement> | undefined;
328
+ onPointerOutCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
329
+ onGotPointerCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
330
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
331
+ onLostPointerCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
332
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
333
+ onScroll?: React.UIEventHandler<HTMLDivElement> | undefined;
334
+ onScrollCapture?: React.UIEventHandler<HTMLDivElement> | undefined;
335
+ onWheel?: React.WheelEventHandler<HTMLDivElement> | undefined;
336
+ onWheelCapture?: React.WheelEventHandler<HTMLDivElement> | undefined;
337
+ onAnimationStart?: React.AnimationEventHandler<HTMLDivElement> | undefined;
338
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
339
+ onAnimationEnd?: React.AnimationEventHandler<HTMLDivElement> | undefined;
340
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
341
+ onAnimationIteration?: React.AnimationEventHandler<HTMLDivElement> | undefined;
342
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
343
+ onTransitionEnd?: React.TransitionEventHandler<HTMLDivElement> | undefined;
344
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLDivElement> | undefined;
345
+ container?: Element | (() => Element | null) | null | undefined;
346
+ disableAutoFocus?: boolean | undefined;
347
+ disableEnforceFocus?: boolean | undefined;
348
+ disableEscapeKeyDown?: boolean | undefined;
349
+ disablePortal?: boolean | undefined;
350
+ disableRestoreFocus?: boolean | undefined;
351
+ disableScrollLock?: boolean | undefined;
352
+ hideBackdrop?: boolean | undefined;
353
+ keepMounted?: boolean | undefined;
354
+ onBackdropClick?: React.ReactEventHandler<{}> | undefined;
355
+ open: boolean;
356
+ slotProps?: {
357
+ root?: import("@mui/base/utils").SlotComponentProps<"div", import("@mui/base/ModalUnstyled").ModalUnstyledRootSlotPropsOverrides, import("@mui/base/ModalUnstyled").ModalUnstyledOwnerState> | undefined;
358
+ backdrop?: import("@mui/base/utils").SlotComponentProps<"div", import("@mui/base/ModalUnstyled").ModalUnstyledBackdropSlotPropsOverrides, import("@mui/base/ModalUnstyled").ModalUnstyledOwnerState> | undefined;
359
+ } | undefined;
360
+ slots?: {
361
+ root?: React.ElementType<any> | undefined;
362
+ backdrop?: React.ElementType<any> | undefined;
363
+ } | undefined;
364
+ focusVisible?: boolean | undefined;
365
+ onClose: (event: object, reason?: string) => any;
366
+ $scrollPaper?: boolean | undefined;
367
+ mBackdrop?: MotionProps | undefined;
368
+ mPaper?: MotionProps | undefined;
369
+ Root: import("@mui/types").OverridableComponent<import("@mui/base/ModalUnstyled").ModalUnstyledTypeMap<{}, "div">>;
370
+ Backdrop: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
371
+ open?: boolean | undefined;
372
+ }>>;
373
+ Container: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & Pick<OwnProps, "$scrollPaper"> & {
374
+ children?: React.ReactNode;
375
+ }>>;
376
+ Paper: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
377
+ "aria-label": string;
378
+ } & Pick<OwnProps, "$scrollPaper"> & {
379
+ children?: React.ReactNode;
380
+ }>>;
381
+ Close: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
382
+ onClick: OwnProps["onClose"];
383
+ } & {
384
+ children?: React.ReactNode;
385
+ }>>;
386
+ Header: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
387
+ children?: React.ReactNode;
388
+ }>>;
389
+ Body: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
390
+ children?: React.ReactNode;
391
+ }>>;
392
+ }, "ref"> & React.RefAttributes<HTMLDivElement>) => React.FunctionComponentElement<any>) & {
84
393
  Root: import("@mui/types").OverridableComponent<import("@mui/base/ModalUnstyled").ModalUnstyledTypeMap<{}, "div">>;
85
- Backdrop: NonNullable<React.ElementType<Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
394
+ Backdrop: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
86
395
  open?: boolean | undefined;
87
396
  }>>;
88
- Container: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & Pick<OwnProps, "$scrollPaper"> & {
397
+ Container: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & Pick<OwnProps, "$scrollPaper"> & {
89
398
  children?: React.ReactNode;
90
399
  }>>;
91
- Paper: NonNullable<React.ElementType<Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
400
+ Paper: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
92
401
  "aria-label": string;
93
402
  } & Pick<OwnProps, "$scrollPaper"> & {
94
403
  children?: React.ReactNode;
95
404
  }>>;
96
- Close: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & {
405
+ Close: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
97
406
  onClick: OwnProps["onClose"];
98
407
  } & {
99
408
  children?: React.ReactNode;
100
409
  }>>;
101
- Header: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
410
+ Header: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
102
411
  children?: React.ReactNode;
103
412
  }>>;
104
- Body: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
413
+ Body: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
105
414
  children?: React.ReactNode;
106
415
  }>>;
107
416
  } & {
108
417
  defaultProps: {
109
418
  Root: import("@mui/types").OverridableComponent<import("@mui/base/ModalUnstyled").ModalUnstyledTypeMap<{}, "div">>;
110
- Backdrop: NonNullable<React.ElementType<Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
419
+ Backdrop: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
111
420
  open?: boolean | undefined;
112
421
  }>>;
113
- Container: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & Pick<OwnProps, "$scrollPaper"> & {
422
+ Container: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & Pick<OwnProps, "$scrollPaper"> & {
114
423
  children?: React.ReactNode;
115
424
  }>>;
116
- Paper: NonNullable<React.ElementType<Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
425
+ Paper: NonNullable<React.ElementType<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "onAnimationEnd"> & {
117
426
  "aria-label": string;
118
427
  } & Pick<OwnProps, "$scrollPaper"> & {
119
428
  children?: React.ReactNode;
120
429
  }>>;
121
- Close: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & {
430
+ Close: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
122
431
  onClick: OwnProps["onClose"];
123
432
  } & {
124
433
  children?: React.ReactNode;
125
434
  }>>;
126
- Header: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
435
+ Header: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
127
436
  children?: React.ReactNode;
128
437
  }>>;
129
- Body: NonNullable<React.ElementType<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
438
+ Body: NonNullable<React.ElementType<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
130
439
  children?: React.ReactNode;
131
440
  }>>;
132
441
  };