@stack-spot/portal-layout 0.0.24 → 0.0.25

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.
@@ -1,3 +1,548 @@
1
- import { MenuSectionContent } from './types.js';
1
+ /// <reference types="react" />
2
+ /// <reference types="react" />
3
+ import { MenuAction, MenuSectionContent } from './types.js';
4
+ export declare const MenuGroup: import("styled-components").IStyledComponent<"web", {
5
+ ref?: import("react").LegacyRef<HTMLUListElement> | undefined;
6
+ key?: import("react").Key | null | undefined;
7
+ defaultChecked?: boolean | undefined;
8
+ defaultValue?: string | number | readonly string[] | undefined;
9
+ suppressContentEditableWarning?: boolean | undefined;
10
+ suppressHydrationWarning?: boolean | undefined;
11
+ accessKey?: string | undefined;
12
+ autoFocus?: boolean | undefined;
13
+ className?: string | undefined;
14
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
15
+ contextMenu?: string | undefined;
16
+ dir?: string | undefined;
17
+ draggable?: (boolean | "false" | "true") | undefined;
18
+ hidden?: boolean | undefined;
19
+ id?: string | undefined;
20
+ lang?: string | undefined;
21
+ nonce?: string | undefined;
22
+ slot?: string | undefined;
23
+ spellCheck?: (boolean | "false" | "true") | undefined;
24
+ style?: import("react").CSSProperties | undefined;
25
+ tabIndex?: number | undefined;
26
+ title?: string | undefined;
27
+ translate?: "yes" | "no" | undefined;
28
+ radioGroup?: string | undefined;
29
+ role?: import("react").AriaRole | undefined;
30
+ about?: string | undefined;
31
+ content?: string | undefined;
32
+ datatype?: string | undefined;
33
+ inlist?: any;
34
+ prefix?: string | undefined;
35
+ property?: string | undefined;
36
+ rel?: string | undefined;
37
+ resource?: string | undefined;
38
+ rev?: string | undefined;
39
+ typeof?: string | undefined;
40
+ vocab?: string | undefined;
41
+ autoCapitalize?: string | undefined;
42
+ autoCorrect?: string | undefined;
43
+ autoSave?: string | undefined;
44
+ color?: string | undefined;
45
+ itemProp?: string | undefined;
46
+ itemScope?: boolean | undefined;
47
+ itemType?: string | undefined;
48
+ itemID?: string | undefined;
49
+ itemRef?: string | undefined;
50
+ results?: number | undefined;
51
+ security?: string | undefined;
52
+ unselectable?: "on" | "off" | undefined;
53
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
54
+ is?: string | undefined;
55
+ "aria-activedescendant"?: string | undefined;
56
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
57
+ "aria-autocomplete"?: "none" | "inline" | "both" | "list" | undefined;
58
+ "aria-braillelabel"?: string | undefined;
59
+ "aria-brailleroledescription"?: string | undefined;
60
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
61
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
62
+ "aria-colcount"?: number | undefined;
63
+ "aria-colindex"?: number | undefined;
64
+ "aria-colindextext"?: string | undefined;
65
+ "aria-colspan"?: number | undefined;
66
+ "aria-controls"?: string | undefined;
67
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
68
+ "aria-describedby"?: string | undefined;
69
+ "aria-description"?: string | undefined;
70
+ "aria-details"?: string | undefined;
71
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
72
+ "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
73
+ "aria-errormessage"?: string | undefined;
74
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
75
+ "aria-flowto"?: string | undefined;
76
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
77
+ "aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
78
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
79
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
80
+ "aria-keyshortcuts"?: string | undefined;
81
+ "aria-label"?: string | undefined;
82
+ "aria-labelledby"?: string | undefined;
83
+ "aria-level"?: number | undefined;
84
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
85
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
86
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
87
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
88
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
89
+ "aria-owns"?: string | undefined;
90
+ "aria-placeholder"?: string | undefined;
91
+ "aria-posinset"?: number | undefined;
92
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
93
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
94
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
95
+ "aria-required"?: (boolean | "false" | "true") | undefined;
96
+ "aria-roledescription"?: string | undefined;
97
+ "aria-rowcount"?: number | undefined;
98
+ "aria-rowindex"?: number | undefined;
99
+ "aria-rowindextext"?: string | undefined;
100
+ "aria-rowspan"?: number | undefined;
101
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
102
+ "aria-setsize"?: number | undefined;
103
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
104
+ "aria-valuemax"?: number | undefined;
105
+ "aria-valuemin"?: number | undefined;
106
+ "aria-valuenow"?: number | undefined;
107
+ "aria-valuetext"?: string | undefined;
108
+ children?: import("react").ReactNode;
109
+ dangerouslySetInnerHTML?: {
110
+ __html: string | TrustedHTML;
111
+ } | undefined;
112
+ onCopy?: import("react").ClipboardEventHandler<HTMLUListElement> | undefined;
113
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLUListElement> | undefined;
114
+ onCut?: import("react").ClipboardEventHandler<HTMLUListElement> | undefined;
115
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLUListElement> | undefined;
116
+ onPaste?: import("react").ClipboardEventHandler<HTMLUListElement> | undefined;
117
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLUListElement> | undefined;
118
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLUListElement> | undefined;
119
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLUListElement> | undefined;
120
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLUListElement> | undefined;
121
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLUListElement> | undefined;
122
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLUListElement> | undefined;
123
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLUListElement> | undefined;
124
+ onFocus?: import("react").FocusEventHandler<HTMLUListElement> | undefined;
125
+ onFocusCapture?: import("react").FocusEventHandler<HTMLUListElement> | undefined;
126
+ onBlur?: import("react").FocusEventHandler<HTMLUListElement> | undefined;
127
+ onBlurCapture?: import("react").FocusEventHandler<HTMLUListElement> | undefined;
128
+ onChange?: import("react").FormEventHandler<HTMLUListElement> | undefined;
129
+ onChangeCapture?: import("react").FormEventHandler<HTMLUListElement> | undefined;
130
+ onBeforeInput?: import("react").FormEventHandler<HTMLUListElement> | undefined;
131
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLUListElement> | undefined;
132
+ onInput?: import("react").FormEventHandler<HTMLUListElement> | undefined;
133
+ onInputCapture?: import("react").FormEventHandler<HTMLUListElement> | undefined;
134
+ onReset?: import("react").FormEventHandler<HTMLUListElement> | undefined;
135
+ onResetCapture?: import("react").FormEventHandler<HTMLUListElement> | undefined;
136
+ onSubmit?: import("react").FormEventHandler<HTMLUListElement> | undefined;
137
+ onSubmitCapture?: import("react").FormEventHandler<HTMLUListElement> | undefined;
138
+ onInvalid?: import("react").FormEventHandler<HTMLUListElement> | undefined;
139
+ onInvalidCapture?: import("react").FormEventHandler<HTMLUListElement> | undefined;
140
+ onLoad?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
141
+ onLoadCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
142
+ onError?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
143
+ onErrorCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
144
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLUListElement> | undefined;
145
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLUListElement> | undefined;
146
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLUListElement> | undefined;
147
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLUListElement> | undefined;
148
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLUListElement> | undefined;
149
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLUListElement> | undefined;
150
+ onAbort?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
151
+ onAbortCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
152
+ onCanPlay?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
153
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
154
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
155
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
156
+ onDurationChange?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
157
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
158
+ onEmptied?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
159
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
160
+ onEncrypted?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
161
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
162
+ onEnded?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
163
+ onEndedCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
164
+ onLoadedData?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
165
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
166
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
167
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
168
+ onLoadStart?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
169
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
170
+ onPause?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
171
+ onPauseCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
172
+ onPlay?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
173
+ onPlayCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
174
+ onPlaying?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
175
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
176
+ onProgress?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
177
+ onProgressCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
178
+ onRateChange?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
179
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
180
+ onResize?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
181
+ onResizeCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
182
+ onSeeked?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
183
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
184
+ onSeeking?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
185
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
186
+ onStalled?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
187
+ onStalledCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
188
+ onSuspend?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
189
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
190
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
191
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
192
+ onVolumeChange?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
193
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
194
+ onWaiting?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
195
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
196
+ onAuxClick?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
197
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
198
+ onClick?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
199
+ onClickCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
200
+ onContextMenu?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
201
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
202
+ onDoubleClick?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
203
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
204
+ onDrag?: import("react").DragEventHandler<HTMLUListElement> | undefined;
205
+ onDragCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
206
+ onDragEnd?: import("react").DragEventHandler<HTMLUListElement> | undefined;
207
+ onDragEndCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
208
+ onDragEnter?: import("react").DragEventHandler<HTMLUListElement> | undefined;
209
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
210
+ onDragExit?: import("react").DragEventHandler<HTMLUListElement> | undefined;
211
+ onDragExitCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
212
+ onDragLeave?: import("react").DragEventHandler<HTMLUListElement> | undefined;
213
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
214
+ onDragOver?: import("react").DragEventHandler<HTMLUListElement> | undefined;
215
+ onDragOverCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
216
+ onDragStart?: import("react").DragEventHandler<HTMLUListElement> | undefined;
217
+ onDragStartCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
218
+ onDrop?: import("react").DragEventHandler<HTMLUListElement> | undefined;
219
+ onDropCapture?: import("react").DragEventHandler<HTMLUListElement> | undefined;
220
+ onMouseDown?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
221
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
222
+ onMouseEnter?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
223
+ onMouseLeave?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
224
+ onMouseMove?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
225
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
226
+ onMouseOut?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
227
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
228
+ onMouseOver?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
229
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
230
+ onMouseUp?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
231
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLUListElement> | undefined;
232
+ onSelect?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
233
+ onSelectCapture?: import("react").ReactEventHandler<HTMLUListElement> | undefined;
234
+ onTouchCancel?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
235
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
236
+ onTouchEnd?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
237
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
238
+ onTouchMove?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
239
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
240
+ onTouchStart?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
241
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLUListElement> | undefined;
242
+ onPointerDown?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
243
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
244
+ onPointerMove?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
245
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
246
+ onPointerUp?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
247
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
248
+ onPointerCancel?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
249
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
250
+ onPointerEnter?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
251
+ onPointerEnterCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
252
+ onPointerLeave?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
253
+ onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
254
+ onPointerOver?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
255
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
256
+ onPointerOut?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
257
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
258
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
259
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
260
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
261
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLUListElement> | undefined;
262
+ onScroll?: import("react").UIEventHandler<HTMLUListElement> | undefined;
263
+ onScrollCapture?: import("react").UIEventHandler<HTMLUListElement> | undefined;
264
+ onWheel?: import("react").WheelEventHandler<HTMLUListElement> | undefined;
265
+ onWheelCapture?: import("react").WheelEventHandler<HTMLUListElement> | undefined;
266
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLUListElement> | undefined;
267
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLUListElement> | undefined;
268
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLUListElement> | undefined;
269
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLUListElement> | undefined;
270
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLUListElement> | undefined;
271
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLUListElement> | undefined;
272
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLUListElement> | undefined;
273
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLUListElement> | undefined;
274
+ }>;
275
+ export declare const Title: import("styled-components").IStyledComponent<"web", {
276
+ ref?: import("react").LegacyRef<HTMLElement> | undefined;
277
+ key?: import("react").Key | null | undefined;
278
+ defaultChecked?: boolean | undefined;
279
+ defaultValue?: string | number | readonly string[] | undefined;
280
+ suppressContentEditableWarning?: boolean | undefined;
281
+ suppressHydrationWarning?: boolean | undefined;
282
+ accessKey?: string | undefined;
283
+ autoFocus?: boolean | undefined;
284
+ className?: string | undefined;
285
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
286
+ contextMenu?: string | undefined;
287
+ dir?: string | undefined;
288
+ draggable?: (boolean | "false" | "true") | undefined;
289
+ hidden?: boolean | undefined;
290
+ id?: string | undefined;
291
+ lang?: string | undefined;
292
+ nonce?: string | undefined;
293
+ slot?: string | undefined;
294
+ spellCheck?: (boolean | "false" | "true") | undefined;
295
+ style?: import("react").CSSProperties | undefined;
296
+ tabIndex?: number | undefined;
297
+ title?: string | undefined;
298
+ translate?: "yes" | "no" | undefined;
299
+ radioGroup?: string | undefined;
300
+ role?: import("react").AriaRole | undefined;
301
+ about?: string | undefined;
302
+ content?: string | undefined;
303
+ datatype?: string | undefined;
304
+ inlist?: any;
305
+ prefix?: string | undefined;
306
+ property?: string | undefined;
307
+ rel?: string | undefined;
308
+ resource?: string | undefined;
309
+ rev?: string | undefined;
310
+ typeof?: string | undefined;
311
+ vocab?: string | undefined;
312
+ autoCapitalize?: string | undefined;
313
+ autoCorrect?: string | undefined;
314
+ autoSave?: string | undefined;
315
+ color?: string | undefined;
316
+ itemProp?: string | undefined;
317
+ itemScope?: boolean | undefined;
318
+ itemType?: string | undefined;
319
+ itemID?: string | undefined;
320
+ itemRef?: string | undefined;
321
+ results?: number | undefined;
322
+ security?: string | undefined;
323
+ unselectable?: "on" | "off" | undefined;
324
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
325
+ is?: string | undefined;
326
+ "aria-activedescendant"?: string | undefined;
327
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
328
+ "aria-autocomplete"?: "none" | "inline" | "both" | "list" | undefined;
329
+ "aria-braillelabel"?: string | undefined;
330
+ "aria-brailleroledescription"?: string | undefined;
331
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
332
+ "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
333
+ "aria-colcount"?: number | undefined;
334
+ "aria-colindex"?: number | undefined;
335
+ "aria-colindextext"?: string | undefined;
336
+ "aria-colspan"?: number | undefined;
337
+ "aria-controls"?: string | undefined;
338
+ "aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
339
+ "aria-describedby"?: string | undefined;
340
+ "aria-description"?: string | undefined;
341
+ "aria-details"?: string | undefined;
342
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
343
+ "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
344
+ "aria-errormessage"?: string | undefined;
345
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
346
+ "aria-flowto"?: string | undefined;
347
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
348
+ "aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
349
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
350
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
351
+ "aria-keyshortcuts"?: string | undefined;
352
+ "aria-label"?: string | undefined;
353
+ "aria-labelledby"?: string | undefined;
354
+ "aria-level"?: number | undefined;
355
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
356
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
357
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
358
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
359
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
360
+ "aria-owns"?: string | undefined;
361
+ "aria-placeholder"?: string | undefined;
362
+ "aria-posinset"?: number | undefined;
363
+ "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
364
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
365
+ "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
366
+ "aria-required"?: (boolean | "false" | "true") | undefined;
367
+ "aria-roledescription"?: string | undefined;
368
+ "aria-rowcount"?: number | undefined;
369
+ "aria-rowindex"?: number | undefined;
370
+ "aria-rowindextext"?: string | undefined;
371
+ "aria-rowspan"?: number | undefined;
372
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
373
+ "aria-setsize"?: number | undefined;
374
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
375
+ "aria-valuemax"?: number | undefined;
376
+ "aria-valuemin"?: number | undefined;
377
+ "aria-valuenow"?: number | undefined;
378
+ "aria-valuetext"?: string | undefined;
379
+ children?: import("react").ReactNode;
380
+ dangerouslySetInnerHTML?: {
381
+ __html: string | TrustedHTML;
382
+ } | undefined;
383
+ onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
384
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
385
+ onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
386
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
387
+ onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
388
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
389
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
390
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
391
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
392
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
393
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
394
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
395
+ onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
396
+ onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
397
+ onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
398
+ onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
399
+ onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
400
+ onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
401
+ onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
402
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
403
+ onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
404
+ onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
405
+ onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
406
+ onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
407
+ onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
408
+ onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
409
+ onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
410
+ onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
411
+ onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
412
+ onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
413
+ onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
414
+ onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
415
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
416
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
417
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
418
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
419
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
420
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
421
+ onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
422
+ onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
423
+ onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
424
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
425
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
426
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
427
+ onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
428
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
429
+ onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
430
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
431
+ onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
432
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
433
+ onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
434
+ onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
435
+ onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
436
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
437
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
438
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
439
+ onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
440
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
441
+ onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
442
+ onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
443
+ onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
444
+ onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
445
+ onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
446
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
447
+ onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
448
+ onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
449
+ onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
450
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
451
+ onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
452
+ onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
453
+ onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
454
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
455
+ onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
456
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
457
+ onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
458
+ onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
459
+ onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
460
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
461
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
462
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
463
+ onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
464
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
465
+ onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
466
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
467
+ onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
468
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
469
+ onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
470
+ onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
471
+ onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
472
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
473
+ onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
474
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
475
+ onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
476
+ onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
477
+ onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
478
+ onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
479
+ onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
480
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
481
+ onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
482
+ onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
483
+ onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
484
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
485
+ onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
486
+ onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
487
+ onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
488
+ onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
489
+ onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
490
+ onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
491
+ onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
492
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
493
+ onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
494
+ onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
495
+ onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
496
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
497
+ onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
498
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
499
+ onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
500
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
501
+ onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
502
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
503
+ onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
504
+ onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
505
+ onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
506
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
507
+ onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
508
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
509
+ onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
510
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
511
+ onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
512
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
513
+ onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
514
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
515
+ onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
516
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
517
+ onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
518
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
519
+ onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
520
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
521
+ onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
522
+ onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
523
+ onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
524
+ onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
525
+ onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
526
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
527
+ onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
528
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
529
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
530
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
531
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
532
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
533
+ onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
534
+ onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
535
+ onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
536
+ onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
537
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
538
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
539
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
540
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
541
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
542
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
543
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
544
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
545
+ }>;
546
+ export declare const ActionItem: ({ label, onClick, href, active, icon, badge, overflow }: MenuAction) => import("react/jsx-runtime").JSX.Element;
2
547
  export declare const MenuContent: ({ pageSelector, goBack, title, subtitle, afterTitle, options, loading, error }: MenuSectionContent) => import("react/jsx-runtime").JSX.Element;
3
548
  //# sourceMappingURL=MenuContent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"MenuContent.d.ts","sourceRoot":"","sources":["../../../src/components/menu/MenuContent.tsx"],"names":[],"mappings":"AAUA,OAAO,EAAmC,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAiM7E,eAAO,MAAM,WAAW,mFAAyF,kBAAkB,4CAoClI,CAAA"}
1
+ {"version":3,"file":"MenuContent.d.ts","sourceRoot":"","sources":["../../../src/components/menu/MenuContent.tsx"],"names":[],"mappings":";;AAUA,OAAO,EAAa,UAAU,EAAY,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAY7E,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyGrB,CAAA;AAED,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIjB,CAAA;AAED,eAAO,MAAM,UAAU,4DAAsE,UAAU,4CAkBtG,CAAA;AAkDD,eAAO,MAAM,WAAW,mFAAyF,kBAAkB,4CAoClI,CAAA"}
@@ -18,7 +18,7 @@ const BackLink = styled.a `
18
18
  margin-bottom: 16px;
19
19
  gap: 6px;
20
20
  `;
21
- const MenuGroup = styled.ul `
21
+ export const MenuGroup = styled.ul `
22
22
  padding: 0 0 0 16px;
23
23
  display: flex;
24
24
  flex-direction: column;
@@ -124,12 +124,12 @@ const MenuGroup = styled.ul `
124
124
  }
125
125
  }
126
126
  `;
127
- const Title = styled.header `
127
+ export const Title = styled.header `
128
128
  display: flex;
129
129
  flex-direction: column;
130
130
  margin: ${PADDING}px 0 24px ${PADDING}px;
131
131
  `;
132
- const ActionItem = ({ label, onClick, href, active, icon, badge, overflow = 'wrap' }) => {
132
+ export const ActionItem = ({ label, onClick, href, active, icon, badge, overflow = 'wrap' }) => {
133
133
  const { ref, overflow: textOverflow } = useCheckTextOverflow();
134
134
  return (_jsxs("a", { href: active ? undefined : href, onClick: () => {
135
135
  if (active)
@@ -1 +1 @@
1
- {"version":3,"file":"MenuContent.js","sourceRoot":"","sources":["../../../src/components/menu/MenuContent.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"MenuContent.js","sourceRoot":"","sources":["../../../src/components/menu/MenuContent.tsx"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"MenuSections.d.ts","sourceRoot":"","sources":["../../../src/components/menu/MenuSections.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,SAAS,EAAe,MAAM,SAAS,CAAA;AAchD,wBAAgB,sBAAsB,SAErC;AAoFD,eAAO,MAAM,YAAY,2BAAiC,SAAS,4CAkDlE,CAAA"}
1
+ {"version":3,"file":"MenuSections.d.ts","sourceRoot":"","sources":["../../../src/components/menu/MenuSections.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,SAAS,EAAe,MAAM,SAAS,CAAA;AAchD,wBAAgB,sBAAsB,SAErC;AAyFD,eAAO,MAAM,YAAY,2BAAiC,SAAS,4CAuDlE,CAAA"}