@galaxy-ds/core 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Accordion/Accordion.stories.d.ts +313 -20
- package/dist/AccordionDetails/AccordionDetails.stories.d.ts +2 -2
- package/dist/AccordionPanel/AccordionPanel.stories.d.ts +5 -5
- package/dist/AccordionSummary/AccordionSummary.stories.d.ts +27 -27
- package/dist/ActivityLog/ActivityLog.stories.d.ts +19 -1
- package/dist/AppBar/AppBar.stories.d.ts +860 -19
- package/dist/Autocomplete/Autocomplete.stories.d.ts +480 -126
- package/dist/Avatar/Avatar.stories.d.ts +45 -45
- package/dist/AvatarGroup/AvatarGroup.stories.d.ts +49 -48
- package/dist/BottomListButton/BottomListButton.stories.d.ts +18 -18
- package/dist/Box/Box.stories.d.ts +17 -16
- package/dist/Breadcrumbs/Breadcrumbs.stories.d.ts +16 -15
- package/dist/Button/Button.stories.d.ts +161 -160
- package/dist/Card/Card.stories.d.ts +7 -6
- package/dist/Checkbox/Checkbox.stories.d.ts +71 -70
- package/dist/Chip/Chip.stories.d.ts +37 -36
- package/dist/CssBaseline/CssBaseline.stories.d.ts +2 -2
- package/dist/DatePicker/DatePicker.stories.d.ts +1 -0
- package/dist/DateRangePicker/DateRangePicker.stories.d.ts +16 -15
- package/dist/Dialog/Dialog.stories.d.ts +41 -40
- package/dist/Divider/Divider.stories.d.ts +285 -6
- package/dist/Drawer/Drawer.stories.d.ts +21 -21
- package/dist/DrawerMenu/DrawerMenu.stories.d.ts +325 -27
- package/dist/Dropdown/Dropdown.stories.d.ts +217 -216
- package/dist/EmptyState/EmptyState.stories.d.ts +1 -0
- package/dist/FooterActions/FooterActions.stories.d.ts +11 -5
- package/dist/FormBody/FormBody.stories.d.ts +10 -1
- package/dist/FormContainer/FormContainer.stories.d.ts +11 -1
- package/dist/FormGroup/FormGroup.stories.d.ts +5 -4
- package/dist/FormHeader/FormHeader.stories.d.ts +18 -2
- package/dist/Grid/Grid.stories.d.ts +389 -0
- package/dist/HeaderToolbar/HeaderToolbar.stories.d.ts +326 -40
- package/dist/Icon/Icon.stories.d.ts +13 -12
- package/dist/IconButton/IconButton.stories.d.ts +21 -20
- package/dist/Icons/doctype-icons.stories.d.ts +16 -16
- package/dist/Icons/leap-icons.stories.d.ts +20 -20
- package/dist/ImageUpload/ImageUpload.stories.d.ts +2 -1
- package/dist/Input/Input.stories.d.ts +409 -340
- package/dist/InputLabel/InputLabel.stories.d.ts +1 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/stories/resources/tokensColorsLeap.d.ts +2 -2
- package/dist/stories/resources/typographyLeapDesktop.d.ts +2 -2
- package/dist/stories/resources/typographyLeapWeb.d.ts +2 -2
- package/package.json +1 -3
|
@@ -1,9 +1,307 @@
|
|
|
1
|
+
import { BADGE } from '@geometricpanda/storybook-addon-badges';
|
|
1
2
|
/**
|
|
2
3
|
* Drawer Menu Item
|
|
3
4
|
*/
|
|
4
5
|
declare const meta: {
|
|
5
6
|
title: string;
|
|
6
7
|
component: import("react").ForwardRefExoticComponent<Omit<import("./DrawerMenu.types").DrawerMenuProps, "ref"> & import("react").RefAttributes<HTMLLIElement>>;
|
|
8
|
+
parameters: {
|
|
9
|
+
badges: BADGE[];
|
|
10
|
+
layout: string;
|
|
11
|
+
};
|
|
12
|
+
decorators: ((Story: import("@storybook/types").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
13
|
+
children: React.ReactNode;
|
|
14
|
+
classes?: (Partial<import("@mui/material").MenuItemClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
15
|
+
className?: string | undefined;
|
|
16
|
+
style?: React.CSSProperties | undefined;
|
|
17
|
+
color?: string | undefined;
|
|
18
|
+
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
19
|
+
slot?: string | undefined;
|
|
20
|
+
title?: string | undefined;
|
|
21
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
22
|
+
id?: string | undefined;
|
|
23
|
+
lang?: string | undefined;
|
|
24
|
+
role?: import("react").AriaRole | undefined;
|
|
25
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
26
|
+
"aria-activedescendant"?: string | undefined;
|
|
27
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
28
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
29
|
+
"aria-braillelabel"?: string | undefined;
|
|
30
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
31
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
32
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
33
|
+
"aria-colcount"?: number | undefined;
|
|
34
|
+
"aria-colindex"?: number | undefined;
|
|
35
|
+
"aria-colindextext"?: string | undefined;
|
|
36
|
+
"aria-colspan"?: number | undefined;
|
|
37
|
+
"aria-controls"?: string | undefined;
|
|
38
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
39
|
+
"aria-describedby"?: string | undefined;
|
|
40
|
+
"aria-description"?: string | undefined;
|
|
41
|
+
"aria-details"?: string | undefined;
|
|
42
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
43
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
44
|
+
"aria-errormessage"?: string | undefined;
|
|
45
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
46
|
+
"aria-flowto"?: string | undefined;
|
|
47
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
48
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
49
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
50
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
51
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
52
|
+
"aria-label"?: string | undefined;
|
|
53
|
+
"aria-labelledby"?: string | undefined;
|
|
54
|
+
"aria-level"?: number | undefined;
|
|
55
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
56
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
57
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
58
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
59
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
60
|
+
"aria-owns"?: string | undefined;
|
|
61
|
+
"aria-placeholder"?: string | undefined;
|
|
62
|
+
"aria-posinset"?: number | undefined;
|
|
63
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
64
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
65
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
66
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
67
|
+
"aria-roledescription"?: string | undefined;
|
|
68
|
+
"aria-rowcount"?: number | undefined;
|
|
69
|
+
"aria-rowindex"?: number | undefined;
|
|
70
|
+
"aria-rowindextext"?: string | undefined;
|
|
71
|
+
"aria-rowspan"?: number | undefined;
|
|
72
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
73
|
+
"aria-setsize"?: number | undefined;
|
|
74
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
75
|
+
"aria-valuemax"?: number | undefined;
|
|
76
|
+
"aria-valuemin"?: number | undefined;
|
|
77
|
+
"aria-valuenow"?: number | undefined;
|
|
78
|
+
"aria-valuetext"?: string | undefined;
|
|
79
|
+
dangerouslySetInnerHTML?: {
|
|
80
|
+
__html: string | TrustedHTML;
|
|
81
|
+
} | undefined;
|
|
82
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLLIElement> | undefined;
|
|
83
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLLIElement> | undefined;
|
|
84
|
+
onCut?: import("react").ClipboardEventHandler<HTMLLIElement> | undefined;
|
|
85
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLLIElement> | undefined;
|
|
86
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLLIElement> | undefined;
|
|
87
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLLIElement> | undefined;
|
|
88
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLLIElement> | undefined;
|
|
89
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLLIElement> | undefined;
|
|
90
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLLIElement> | undefined;
|
|
91
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLLIElement> | undefined;
|
|
92
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLLIElement> | undefined;
|
|
93
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLLIElement> | undefined;
|
|
94
|
+
onFocus?: import("react").FocusEventHandler<HTMLLIElement> | undefined;
|
|
95
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLLIElement> | undefined;
|
|
96
|
+
onBlur?: import("react").FocusEventHandler<HTMLLIElement> | undefined;
|
|
97
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLLIElement> | undefined;
|
|
98
|
+
onChange?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
99
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
100
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
101
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
102
|
+
onInput?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
103
|
+
onInputCapture?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
104
|
+
onReset?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
105
|
+
onResetCapture?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
106
|
+
onSubmit?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
107
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
108
|
+
onInvalid?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
109
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLLIElement> | undefined;
|
|
110
|
+
onLoad?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
111
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
112
|
+
onError?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
113
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
114
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLLIElement> | undefined;
|
|
115
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLLIElement> | undefined;
|
|
116
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLLIElement> | undefined;
|
|
117
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLLIElement> | undefined;
|
|
118
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLLIElement> | undefined;
|
|
119
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLLIElement> | undefined;
|
|
120
|
+
onAbort?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
121
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
122
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
123
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
124
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
125
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
126
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
127
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
128
|
+
onEmptied?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
129
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
130
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
131
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
132
|
+
onEnded?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
133
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
134
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
135
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
136
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
137
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
138
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
139
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
140
|
+
onPause?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
141
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
142
|
+
onPlay?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
143
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
144
|
+
onPlaying?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
145
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
146
|
+
onProgress?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
147
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
148
|
+
onRateChange?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
149
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
150
|
+
onResize?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
151
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
152
|
+
onSeeked?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
153
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
154
|
+
onSeeking?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
155
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
156
|
+
onStalled?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
157
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
158
|
+
onSuspend?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
159
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
160
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
161
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
162
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
163
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
164
|
+
onWaiting?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
165
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
166
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
167
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
168
|
+
onClick?: (() => void) | undefined;
|
|
169
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
170
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
171
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
172
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
173
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
174
|
+
onDrag?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
175
|
+
onDragCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
176
|
+
onDragEnd?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
177
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
178
|
+
onDragEnter?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
179
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
180
|
+
onDragExit?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
181
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
182
|
+
onDragLeave?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
183
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
184
|
+
onDragOver?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
185
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
186
|
+
onDragStart?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
187
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
188
|
+
onDrop?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
189
|
+
onDropCapture?: import("react").DragEventHandler<HTMLLIElement> | undefined;
|
|
190
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
191
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
192
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
193
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
194
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
195
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
196
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
197
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
198
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
199
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
200
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
201
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLLIElement> | undefined;
|
|
202
|
+
onSelect?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
203
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLLIElement> | undefined;
|
|
204
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
205
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
206
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
207
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
208
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
209
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
210
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
211
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLLIElement> | undefined;
|
|
212
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
213
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
214
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
215
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
216
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
217
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
218
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
219
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
220
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
221
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
222
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
223
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
224
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
225
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
226
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
227
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
228
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
229
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLLIElement> | undefined;
|
|
230
|
+
onScroll?: import("react").UIEventHandler<HTMLLIElement> | undefined;
|
|
231
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLLIElement> | undefined;
|
|
232
|
+
onWheel?: import("react").WheelEventHandler<HTMLLIElement> | undefined;
|
|
233
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLLIElement> | undefined;
|
|
234
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLLIElement> | undefined;
|
|
235
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLLIElement> | undefined;
|
|
236
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLLIElement> | undefined;
|
|
237
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLLIElement> | undefined;
|
|
238
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLLIElement> | undefined;
|
|
239
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLLIElement> | undefined;
|
|
240
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLLIElement> | undefined;
|
|
241
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLLIElement> | undefined;
|
|
242
|
+
key?: import("react").Key | null | undefined;
|
|
243
|
+
disabled?: boolean | undefined;
|
|
244
|
+
variant?: ("dark" | "light") | undefined;
|
|
245
|
+
content?: string | undefined;
|
|
246
|
+
translate?: "yes" | "no" | undefined;
|
|
247
|
+
disableGutters?: boolean | undefined;
|
|
248
|
+
defaultChecked?: boolean | undefined;
|
|
249
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
250
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
251
|
+
accessKey?: string | undefined;
|
|
252
|
+
autoFocus?: boolean | undefined;
|
|
253
|
+
contentEditable?: (boolean | "false" | "true") | "inherit" | "plaintext-only" | undefined;
|
|
254
|
+
contextMenu?: string | undefined;
|
|
255
|
+
dir?: string | undefined;
|
|
256
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
257
|
+
hidden?: boolean | undefined;
|
|
258
|
+
nonce?: string | undefined;
|
|
259
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
260
|
+
radioGroup?: string | undefined;
|
|
261
|
+
about?: string | undefined;
|
|
262
|
+
datatype?: string | undefined;
|
|
263
|
+
inlist?: any;
|
|
264
|
+
prefix?: string | undefined;
|
|
265
|
+
property?: string | undefined;
|
|
266
|
+
rel?: string | undefined;
|
|
267
|
+
resource?: string | undefined;
|
|
268
|
+
rev?: string | undefined;
|
|
269
|
+
typeof?: string | undefined;
|
|
270
|
+
vocab?: string | undefined;
|
|
271
|
+
autoCapitalize?: string | undefined;
|
|
272
|
+
autoCorrect?: string | undefined;
|
|
273
|
+
autoSave?: string | undefined;
|
|
274
|
+
itemProp?: string | undefined;
|
|
275
|
+
itemScope?: boolean | undefined;
|
|
276
|
+
itemType?: string | undefined;
|
|
277
|
+
itemID?: string | undefined;
|
|
278
|
+
itemRef?: string | undefined;
|
|
279
|
+
results?: number | undefined;
|
|
280
|
+
security?: string | undefined;
|
|
281
|
+
unselectable?: "on" | "off" | undefined;
|
|
282
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
283
|
+
is?: string | undefined;
|
|
284
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
285
|
+
centerRipple?: boolean | undefined;
|
|
286
|
+
disableRipple?: boolean | undefined;
|
|
287
|
+
disableTouchRipple?: boolean | undefined;
|
|
288
|
+
focusRipple?: boolean | undefined;
|
|
289
|
+
focusVisibleClassName?: string | undefined;
|
|
290
|
+
LinkComponent?: React.ElementType | undefined;
|
|
291
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
292
|
+
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
293
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
294
|
+
value?: string | number | readonly string[] | undefined;
|
|
295
|
+
component?: React.ElementType | undefined;
|
|
296
|
+
open?: boolean | undefined;
|
|
297
|
+
dense?: boolean | undefined;
|
|
298
|
+
startAdornment?: React.ReactNode;
|
|
299
|
+
selected?: boolean | undefined;
|
|
300
|
+
divider?: boolean | undefined;
|
|
301
|
+
submenu?: boolean | undefined;
|
|
302
|
+
expand?: boolean | undefined;
|
|
303
|
+
ref?: import("react").LegacyRef<HTMLLIElement> | undefined;
|
|
304
|
+
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
7
305
|
};
|
|
8
306
|
export default meta;
|
|
9
307
|
export declare const Default: {
|
|
@@ -11,10 +309,10 @@ export declare const Default: {
|
|
|
11
309
|
children: import("react/jsx-runtime").JSX.Element;
|
|
12
310
|
};
|
|
13
311
|
play: ({ canvasElement }: import("@storybook/types").PlayFunctionContext<import("@storybook/react").ReactRenderer, {
|
|
14
|
-
children:
|
|
312
|
+
children: React.ReactNode;
|
|
15
313
|
classes?: (Partial<import("@mui/material").MenuItemClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
16
314
|
className?: string | undefined;
|
|
17
|
-
style?:
|
|
315
|
+
style?: React.CSSProperties | undefined;
|
|
18
316
|
color?: string | undefined;
|
|
19
317
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
20
318
|
slot?: string | undefined;
|
|
@@ -23,7 +321,7 @@ export declare const Default: {
|
|
|
23
321
|
id?: string | undefined;
|
|
24
322
|
lang?: string | undefined;
|
|
25
323
|
role?: import("react").AriaRole | undefined;
|
|
26
|
-
tabIndex?: NonNullable<
|
|
324
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
27
325
|
"aria-activedescendant"?: string | undefined;
|
|
28
326
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
29
327
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -282,21 +580,21 @@ export declare const Default: {
|
|
|
282
580
|
unselectable?: "on" | "off" | undefined;
|
|
283
581
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
284
582
|
is?: string | undefined;
|
|
285
|
-
action?:
|
|
583
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
286
584
|
centerRipple?: boolean | undefined;
|
|
287
585
|
disableRipple?: boolean | undefined;
|
|
288
586
|
disableTouchRipple?: boolean | undefined;
|
|
289
587
|
focusRipple?: boolean | undefined;
|
|
290
588
|
focusVisibleClassName?: string | undefined;
|
|
291
|
-
LinkComponent?:
|
|
292
|
-
onFocusVisible?:
|
|
589
|
+
LinkComponent?: React.ElementType | undefined;
|
|
590
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
293
591
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
294
|
-
touchRippleRef?:
|
|
592
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
295
593
|
value?: string | number | readonly string[] | undefined;
|
|
296
|
-
component?:
|
|
594
|
+
component?: React.ElementType | undefined;
|
|
297
595
|
open?: boolean | undefined;
|
|
298
596
|
dense?: boolean | undefined;
|
|
299
|
-
startAdornment?:
|
|
597
|
+
startAdornment?: React.ReactNode;
|
|
300
598
|
selected?: boolean | undefined;
|
|
301
599
|
divider?: boolean | undefined;
|
|
302
600
|
submenu?: boolean | undefined;
|
|
@@ -311,10 +609,10 @@ export declare const Default: {
|
|
|
311
609
|
};
|
|
312
610
|
};
|
|
313
611
|
render: (args: {
|
|
314
|
-
children:
|
|
612
|
+
children: React.ReactNode;
|
|
315
613
|
classes?: (Partial<import("@mui/material").MenuItemClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
316
614
|
className?: string | undefined;
|
|
317
|
-
style?:
|
|
615
|
+
style?: React.CSSProperties | undefined;
|
|
318
616
|
color?: string | undefined;
|
|
319
617
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
320
618
|
slot?: string | undefined;
|
|
@@ -323,7 +621,7 @@ export declare const Default: {
|
|
|
323
621
|
id?: string | undefined;
|
|
324
622
|
lang?: string | undefined;
|
|
325
623
|
role?: import("react").AriaRole | undefined;
|
|
326
|
-
tabIndex?: NonNullable<
|
|
624
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
327
625
|
"aria-activedescendant"?: string | undefined;
|
|
328
626
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
329
627
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -582,21 +880,21 @@ export declare const Default: {
|
|
|
582
880
|
unselectable?: "on" | "off" | undefined;
|
|
583
881
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
584
882
|
is?: string | undefined;
|
|
585
|
-
action?:
|
|
883
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
586
884
|
centerRipple?: boolean | undefined;
|
|
587
885
|
disableRipple?: boolean | undefined;
|
|
588
886
|
disableTouchRipple?: boolean | undefined;
|
|
589
887
|
focusRipple?: boolean | undefined;
|
|
590
888
|
focusVisibleClassName?: string | undefined;
|
|
591
|
-
LinkComponent?:
|
|
592
|
-
onFocusVisible?:
|
|
889
|
+
LinkComponent?: React.ElementType | undefined;
|
|
890
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
593
891
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
594
|
-
touchRippleRef?:
|
|
892
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
595
893
|
value?: string | number | readonly string[] | undefined;
|
|
596
|
-
component?:
|
|
894
|
+
component?: React.ElementType | undefined;
|
|
597
895
|
open?: boolean | undefined;
|
|
598
896
|
dense?: boolean | undefined;
|
|
599
|
-
startAdornment?:
|
|
897
|
+
startAdornment?: React.ReactNode;
|
|
600
898
|
selected?: boolean | undefined;
|
|
601
899
|
divider?: boolean | undefined;
|
|
602
900
|
submenu?: boolean | undefined;
|
|
@@ -610,10 +908,10 @@ export declare const Selected: {
|
|
|
610
908
|
selected: true;
|
|
611
909
|
};
|
|
612
910
|
render: (args: {
|
|
613
|
-
children:
|
|
911
|
+
children: React.ReactNode;
|
|
614
912
|
classes?: (Partial<import("@mui/material").MenuItemClasses> & Partial<import("@mui/material").ClassNameMap<never>>) | undefined;
|
|
615
913
|
className?: string | undefined;
|
|
616
|
-
style?:
|
|
914
|
+
style?: React.CSSProperties | undefined;
|
|
617
915
|
color?: string | undefined;
|
|
618
916
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
619
917
|
slot?: string | undefined;
|
|
@@ -622,7 +920,7 @@ export declare const Selected: {
|
|
|
622
920
|
id?: string | undefined;
|
|
623
921
|
lang?: string | undefined;
|
|
624
922
|
role?: import("react").AriaRole | undefined;
|
|
625
|
-
tabIndex?: NonNullable<
|
|
923
|
+
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
626
924
|
"aria-activedescendant"?: string | undefined;
|
|
627
925
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
628
926
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
@@ -881,21 +1179,21 @@ export declare const Selected: {
|
|
|
881
1179
|
unselectable?: "on" | "off" | undefined;
|
|
882
1180
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
883
1181
|
is?: string | undefined;
|
|
884
|
-
action?:
|
|
1182
|
+
action?: React.Ref<import("@mui/material").ButtonBaseActions> | undefined;
|
|
885
1183
|
centerRipple?: boolean | undefined;
|
|
886
1184
|
disableRipple?: boolean | undefined;
|
|
887
1185
|
disableTouchRipple?: boolean | undefined;
|
|
888
1186
|
focusRipple?: boolean | undefined;
|
|
889
1187
|
focusVisibleClassName?: string | undefined;
|
|
890
|
-
LinkComponent?:
|
|
891
|
-
onFocusVisible?:
|
|
1188
|
+
LinkComponent?: React.ElementType | undefined;
|
|
1189
|
+
onFocusVisible?: React.FocusEventHandler<any> | undefined;
|
|
892
1190
|
TouchRippleProps?: Partial<import("@mui/material/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
893
|
-
touchRippleRef?:
|
|
1191
|
+
touchRippleRef?: React.Ref<import("@mui/material/ButtonBase/TouchRipple").TouchRippleActions> | undefined;
|
|
894
1192
|
value?: string | number | readonly string[] | undefined;
|
|
895
|
-
component?:
|
|
1193
|
+
component?: React.ElementType | undefined;
|
|
896
1194
|
open?: boolean | undefined;
|
|
897
1195
|
dense?: boolean | undefined;
|
|
898
|
-
startAdornment?:
|
|
1196
|
+
startAdornment?: React.ReactNode;
|
|
899
1197
|
selected?: boolean | undefined;
|
|
900
1198
|
divider?: boolean | undefined;
|
|
901
1199
|
submenu?: boolean | undefined;
|