@clickhouse/click-ui 0.0.77 → 0.0.78
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/click-ui.es.js +1163 -1135
- package/dist/click-ui.umd.js +106 -102
- package/dist/components/Accordion/Accordion.d.ts +20 -20
- package/dist/components/ConfirmationDialog/ConfirmationDialog.d.ts +2 -1
- package/dist/components/GenericMenu.d.ts +6 -6
- package/dist/components/Icon/IconCommon.d.ts +9 -9
- package/dist/components/Input/InputWrapper.d.ts +291 -6
- package/dist/components/Input/TextArea.d.ts +10 -0
- package/dist/components/Tabs/Tabs.d.ts +28 -28
- package/dist/components/Tooltip/Tooltip.d.ts +4 -1
- package/dist/components/commonElement.d.ts +30 -30
- package/dist/components/icons/HorizontalLoading.d.ts +3 -3
- package/dist/components/icons/Loading.d.ts +3 -3
- package/dist/components/icons/LoadingAnimated.d.ts +3 -3
- package/dist/components/index.d.ts +1 -0
- package/dist/components/types.d.ts +2 -1
- package/package.json +1 -1
|
@@ -51,7 +51,7 @@ export declare const InputElement: import("styled-components").IStyledComponent<
|
|
|
51
51
|
accessKey?: string | undefined;
|
|
52
52
|
autoFocus?: boolean | undefined;
|
|
53
53
|
className?: string | undefined;
|
|
54
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
54
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
55
55
|
contextMenu?: string | undefined;
|
|
56
56
|
dir?: string | undefined;
|
|
57
57
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -94,7 +94,7 @@ export declare const InputElement: import("styled-components").IStyledComponent<
|
|
|
94
94
|
is?: string | undefined;
|
|
95
95
|
'aria-activedescendant'?: string | undefined;
|
|
96
96
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
97
|
-
'aria-autocomplete'?: "
|
|
97
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
98
98
|
'aria-braillelabel'?: string | undefined;
|
|
99
99
|
'aria-brailleroledescription'?: string | undefined;
|
|
100
100
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -104,7 +104,7 @@ export declare const InputElement: import("styled-components").IStyledComponent<
|
|
|
104
104
|
'aria-colindextext'?: string | undefined;
|
|
105
105
|
'aria-colspan'?: number | undefined;
|
|
106
106
|
'aria-controls'?: string | undefined;
|
|
107
|
-
'aria-current'?: boolean | "time" | "
|
|
107
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
108
108
|
'aria-describedby'?: string | undefined;
|
|
109
109
|
'aria-description'?: string | undefined;
|
|
110
110
|
'aria-details'?: string | undefined;
|
|
@@ -311,6 +311,291 @@ export declare const InputElement: import("styled-components").IStyledComponent<
|
|
|
311
311
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
312
312
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement> | undefined;
|
|
313
313
|
}>;
|
|
314
|
+
export declare const TextAreaElement: import("styled-components").IStyledComponent<"web", {
|
|
315
|
+
ref?: import("react").LegacyRef<HTMLTextAreaElement> | undefined;
|
|
316
|
+
key?: import("react").Key | null | undefined;
|
|
317
|
+
autoComplete?: string | undefined;
|
|
318
|
+
cols?: number | undefined;
|
|
319
|
+
dirName?: string | undefined;
|
|
320
|
+
disabled?: boolean | undefined;
|
|
321
|
+
form?: string | undefined;
|
|
322
|
+
maxLength?: number | undefined;
|
|
323
|
+
minLength?: number | undefined;
|
|
324
|
+
name?: string | undefined;
|
|
325
|
+
placeholder?: string | undefined;
|
|
326
|
+
readOnly?: boolean | undefined;
|
|
327
|
+
required?: boolean | undefined;
|
|
328
|
+
rows?: number | undefined;
|
|
329
|
+
value?: string | number | readonly string[] | undefined;
|
|
330
|
+
wrap?: string | undefined;
|
|
331
|
+
onChange?: import("react").ChangeEventHandler<HTMLTextAreaElement> | undefined;
|
|
332
|
+
defaultChecked?: boolean | undefined;
|
|
333
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
334
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
335
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
336
|
+
accessKey?: string | undefined;
|
|
337
|
+
autoFocus?: boolean | undefined;
|
|
338
|
+
className?: string | undefined;
|
|
339
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
340
|
+
contextMenu?: string | undefined;
|
|
341
|
+
dir?: string | undefined;
|
|
342
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
343
|
+
hidden?: boolean | undefined;
|
|
344
|
+
id?: string | undefined;
|
|
345
|
+
lang?: string | undefined;
|
|
346
|
+
nonce?: string | undefined;
|
|
347
|
+
slot?: string | undefined;
|
|
348
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
349
|
+
style?: import("react").CSSProperties | undefined;
|
|
350
|
+
tabIndex?: number | undefined;
|
|
351
|
+
title?: string | undefined;
|
|
352
|
+
translate?: "yes" | "no" | undefined;
|
|
353
|
+
radioGroup?: string | undefined;
|
|
354
|
+
role?: import("react").AriaRole | undefined;
|
|
355
|
+
about?: string | undefined;
|
|
356
|
+
content?: string | undefined;
|
|
357
|
+
datatype?: string | undefined;
|
|
358
|
+
inlist?: any;
|
|
359
|
+
prefix?: string | undefined;
|
|
360
|
+
property?: string | undefined;
|
|
361
|
+
rel?: string | undefined;
|
|
362
|
+
resource?: string | undefined;
|
|
363
|
+
rev?: string | undefined;
|
|
364
|
+
typeof?: string | undefined;
|
|
365
|
+
vocab?: string | undefined;
|
|
366
|
+
autoCapitalize?: string | undefined;
|
|
367
|
+
autoCorrect?: string | undefined;
|
|
368
|
+
autoSave?: string | undefined;
|
|
369
|
+
color?: string | undefined;
|
|
370
|
+
itemProp?: string | undefined;
|
|
371
|
+
itemScope?: boolean | undefined;
|
|
372
|
+
itemType?: string | undefined;
|
|
373
|
+
itemID?: string | undefined;
|
|
374
|
+
itemRef?: string | undefined;
|
|
375
|
+
results?: number | undefined;
|
|
376
|
+
security?: string | undefined;
|
|
377
|
+
unselectable?: "on" | "off" | undefined;
|
|
378
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
379
|
+
is?: string | undefined;
|
|
380
|
+
'aria-activedescendant'?: string | undefined;
|
|
381
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
382
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
383
|
+
'aria-braillelabel'?: string | undefined;
|
|
384
|
+
'aria-brailleroledescription'?: string | undefined;
|
|
385
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
386
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
387
|
+
'aria-colcount'?: number | undefined;
|
|
388
|
+
'aria-colindex'?: number | undefined;
|
|
389
|
+
'aria-colindextext'?: string | undefined;
|
|
390
|
+
'aria-colspan'?: number | undefined;
|
|
391
|
+
'aria-controls'?: string | undefined;
|
|
392
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
393
|
+
'aria-describedby'?: string | undefined;
|
|
394
|
+
'aria-description'?: string | undefined;
|
|
395
|
+
'aria-details'?: string | undefined;
|
|
396
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
397
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
398
|
+
'aria-errormessage'?: string | undefined;
|
|
399
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
400
|
+
'aria-flowto'?: string | undefined;
|
|
401
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
402
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
403
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
404
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
405
|
+
'aria-keyshortcuts'?: string | undefined;
|
|
406
|
+
'aria-label'?: string | undefined;
|
|
407
|
+
'aria-labelledby'?: string | undefined;
|
|
408
|
+
'aria-level'?: number | undefined;
|
|
409
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
410
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
411
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
412
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
413
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
|
414
|
+
'aria-owns'?: string | undefined;
|
|
415
|
+
'aria-placeholder'?: string | undefined;
|
|
416
|
+
'aria-posinset'?: number | undefined;
|
|
417
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
|
|
418
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
419
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
420
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
421
|
+
'aria-roledescription'?: string | undefined;
|
|
422
|
+
'aria-rowcount'?: number | undefined;
|
|
423
|
+
'aria-rowindex'?: number | undefined;
|
|
424
|
+
'aria-rowindextext'?: string | undefined;
|
|
425
|
+
'aria-rowspan'?: number | undefined;
|
|
426
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
427
|
+
'aria-setsize'?: number | undefined;
|
|
428
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
429
|
+
'aria-valuemax'?: number | undefined;
|
|
430
|
+
'aria-valuemin'?: number | undefined;
|
|
431
|
+
'aria-valuenow'?: number | undefined;
|
|
432
|
+
'aria-valuetext'?: string | undefined;
|
|
433
|
+
children?: ReactNode;
|
|
434
|
+
dangerouslySetInnerHTML?: {
|
|
435
|
+
__html: string | TrustedHTML;
|
|
436
|
+
} | undefined;
|
|
437
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
438
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
439
|
+
onCut?: import("react").ClipboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
440
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
441
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
442
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
443
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLTextAreaElement> | undefined;
|
|
444
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLTextAreaElement> | undefined;
|
|
445
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLTextAreaElement> | undefined;
|
|
446
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLTextAreaElement> | undefined;
|
|
447
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLTextAreaElement> | undefined;
|
|
448
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLTextAreaElement> | undefined;
|
|
449
|
+
onFocus?: import("react").FocusEventHandler<HTMLTextAreaElement> | undefined;
|
|
450
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLTextAreaElement> | undefined;
|
|
451
|
+
onBlur?: import("react").FocusEventHandler<HTMLTextAreaElement> | undefined;
|
|
452
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLTextAreaElement> | undefined;
|
|
453
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
454
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
455
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
456
|
+
onInput?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
457
|
+
onInputCapture?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
458
|
+
onReset?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
459
|
+
onResetCapture?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
460
|
+
onSubmit?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
461
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
462
|
+
onInvalid?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
463
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLTextAreaElement> | undefined;
|
|
464
|
+
onLoad?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
465
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
466
|
+
onError?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
467
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
468
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
469
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
470
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
471
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
472
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
473
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLTextAreaElement> | undefined;
|
|
474
|
+
onAbort?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
475
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
476
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
477
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
478
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
479
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
480
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
481
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
482
|
+
onEmptied?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
483
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
484
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
485
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
486
|
+
onEnded?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
487
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
488
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
489
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
490
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
491
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
492
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
493
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
494
|
+
onPause?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
495
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
496
|
+
onPlay?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
497
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
498
|
+
onPlaying?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
499
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
500
|
+
onProgress?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
501
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
502
|
+
onRateChange?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
503
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
504
|
+
onResize?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
505
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
506
|
+
onSeeked?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
507
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
508
|
+
onSeeking?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
509
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
510
|
+
onStalled?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
511
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
512
|
+
onSuspend?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
513
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
514
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
515
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
516
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
517
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
518
|
+
onWaiting?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
519
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
520
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
521
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
522
|
+
onClick?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
523
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
524
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
525
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
526
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
527
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
528
|
+
onDrag?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
529
|
+
onDragCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
530
|
+
onDragEnd?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
531
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
532
|
+
onDragEnter?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
533
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
534
|
+
onDragExit?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
535
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
536
|
+
onDragLeave?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
537
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
538
|
+
onDragOver?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
539
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
540
|
+
onDragStart?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
541
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
542
|
+
onDrop?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
543
|
+
onDropCapture?: import("react").DragEventHandler<HTMLTextAreaElement> | undefined;
|
|
544
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
545
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
546
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
547
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
548
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
549
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
550
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
551
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
552
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
553
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
554
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
555
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLTextAreaElement> | undefined;
|
|
556
|
+
onSelect?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
557
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLTextAreaElement> | undefined;
|
|
558
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
559
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
560
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
561
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
562
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
563
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
564
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
565
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLTextAreaElement> | undefined;
|
|
566
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
567
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
568
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
569
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
570
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
571
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
572
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
573
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
574
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
575
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
576
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
577
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
578
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
579
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
580
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
581
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
582
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
583
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
584
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
585
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLTextAreaElement> | undefined;
|
|
586
|
+
onScroll?: import("react").UIEventHandler<HTMLTextAreaElement> | undefined;
|
|
587
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLTextAreaElement> | undefined;
|
|
588
|
+
onWheel?: import("react").WheelEventHandler<HTMLTextAreaElement> | undefined;
|
|
589
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLTextAreaElement> | undefined;
|
|
590
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLTextAreaElement> | undefined;
|
|
591
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLTextAreaElement> | undefined;
|
|
592
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLTextAreaElement> | undefined;
|
|
593
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLTextAreaElement> | undefined;
|
|
594
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLTextAreaElement> | undefined;
|
|
595
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLTextAreaElement> | undefined;
|
|
596
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLTextAreaElement> | undefined;
|
|
597
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLTextAreaElement> | undefined;
|
|
598
|
+
}>;
|
|
314
599
|
export declare const IconButton: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
315
600
|
$show?: boolean | undefined;
|
|
316
601
|
}>>;
|
|
@@ -336,7 +621,7 @@ export declare const IconWrapper: import("styled-components").IStyledComponent<"
|
|
|
336
621
|
accentHeight?: string | number | undefined;
|
|
337
622
|
accumulate?: "none" | "sum" | undefined;
|
|
338
623
|
additive?: "replace" | "sum" | undefined;
|
|
339
|
-
alignmentBaseline?: "
|
|
624
|
+
alignmentBaseline?: "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | undefined;
|
|
340
625
|
allowReorder?: "yes" | "no" | undefined;
|
|
341
626
|
alphabetic?: string | number | undefined;
|
|
342
627
|
amplitude?: string | number | undefined;
|
|
@@ -577,7 +862,7 @@ export declare const IconWrapper: import("styled-components").IStyledComponent<"
|
|
|
577
862
|
zoomAndPan?: string | undefined;
|
|
578
863
|
'aria-activedescendant'?: string | undefined;
|
|
579
864
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
580
|
-
'aria-autocomplete'?: "
|
|
865
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
581
866
|
'aria-braillelabel'?: string | undefined;
|
|
582
867
|
'aria-brailleroledescription'?: string | undefined;
|
|
583
868
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -587,7 +872,7 @@ export declare const IconWrapper: import("styled-components").IStyledComponent<"
|
|
|
587
872
|
'aria-colindextext'?: string | undefined;
|
|
588
873
|
'aria-colspan'?: number | undefined;
|
|
589
874
|
'aria-controls'?: string | undefined;
|
|
590
|
-
'aria-current'?: boolean | "time" | "
|
|
875
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
591
876
|
'aria-describedby'?: string | undefined;
|
|
592
877
|
'aria-description'?: string | undefined;
|
|
593
878
|
'aria-details'?: string | undefined;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ChangeEvent, TextareaHTMLAttributes } from "react";
|
|
2
|
+
import { WrapperProps } from "./InputWrapper";
|
|
3
|
+
export interface TextAreaFieldProps extends Omit<WrapperProps, "id" | "children">, Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "children" | "type" | "value" | "onChange" | "dir"> {
|
|
4
|
+
rows?: number;
|
|
5
|
+
value?: string;
|
|
6
|
+
onChange: (inputValue: string, e?: ChangeEvent<HTMLTextAreaElement>) => void;
|
|
7
|
+
orientation?: "vertical" | "horizontal";
|
|
8
|
+
dir?: "start" | "end";
|
|
9
|
+
}
|
|
10
|
+
export declare const TextAreaField: import("react").ForwardRefExoticComponent<TextAreaFieldProps & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -8,8 +8,11 @@ declare const Tabs: {
|
|
|
8
8
|
({ defaultValue, children, ariaLabel, onValueChange, ...delegated }: TabsProps): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
TriggersList: import("styled-components").IStyledComponent<"web", {
|
|
10
10
|
loop?: boolean | undefined;
|
|
11
|
-
color?: string | undefined;
|
|
12
11
|
children?: import("react").ReactNode;
|
|
12
|
+
slot?: string | undefined;
|
|
13
|
+
style?: import("react").CSSProperties | undefined;
|
|
14
|
+
title?: string | undefined;
|
|
15
|
+
key?: import("react").Key | null | undefined;
|
|
13
16
|
defaultChecked?: boolean | undefined;
|
|
14
17
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
15
18
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -17,7 +20,7 @@ declare const Tabs: {
|
|
|
17
20
|
accessKey?: string | undefined;
|
|
18
21
|
autoFocus?: boolean | undefined;
|
|
19
22
|
className?: string | undefined;
|
|
20
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
23
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
21
24
|
contextMenu?: string | undefined;
|
|
22
25
|
dir?: string | undefined;
|
|
23
26
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -26,11 +29,8 @@ declare const Tabs: {
|
|
|
26
29
|
lang?: string | undefined;
|
|
27
30
|
nonce?: string | undefined;
|
|
28
31
|
placeholder?: string | undefined;
|
|
29
|
-
slot?: string | undefined;
|
|
30
32
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
31
|
-
style?: import("react").CSSProperties | undefined;
|
|
32
33
|
tabIndex?: number | undefined;
|
|
33
|
-
title?: string | undefined;
|
|
34
34
|
translate?: "yes" | "no" | undefined;
|
|
35
35
|
radioGroup?: string | undefined;
|
|
36
36
|
role?: import("react").AriaRole | undefined;
|
|
@@ -48,6 +48,7 @@ declare const Tabs: {
|
|
|
48
48
|
autoCapitalize?: string | undefined;
|
|
49
49
|
autoCorrect?: string | undefined;
|
|
50
50
|
autoSave?: string | undefined;
|
|
51
|
+
color?: string | undefined;
|
|
51
52
|
itemProp?: string | undefined;
|
|
52
53
|
itemScope?: boolean | undefined;
|
|
53
54
|
itemType?: string | undefined;
|
|
@@ -60,7 +61,7 @@ declare const Tabs: {
|
|
|
60
61
|
is?: string | undefined;
|
|
61
62
|
'aria-activedescendant'?: string | undefined;
|
|
62
63
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
63
|
-
'aria-autocomplete'?: "
|
|
64
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
64
65
|
'aria-braillelabel'?: string | undefined;
|
|
65
66
|
'aria-brailleroledescription'?: string | undefined;
|
|
66
67
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -70,7 +71,7 @@ declare const Tabs: {
|
|
|
70
71
|
'aria-colindextext'?: string | undefined;
|
|
71
72
|
'aria-colspan'?: number | undefined;
|
|
72
73
|
'aria-controls'?: string | undefined;
|
|
73
|
-
'aria-current'?: boolean | "time" | "
|
|
74
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
74
75
|
'aria-describedby'?: string | undefined;
|
|
75
76
|
'aria-description'?: string | undefined;
|
|
76
77
|
'aria-details'?: string | undefined;
|
|
@@ -276,15 +277,18 @@ declare const Tabs: {
|
|
|
276
277
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
277
278
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
278
279
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
279
|
-
key?: import("react").Key | null | undefined;
|
|
280
280
|
asChild?: boolean | undefined;
|
|
281
281
|
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
282
282
|
}>;
|
|
283
283
|
Trigger: import("styled-components").IStyledComponent<"web", {
|
|
284
284
|
value: string;
|
|
285
|
-
|
|
286
|
-
color?: string | undefined;
|
|
285
|
+
disabled?: boolean | undefined;
|
|
287
286
|
children?: import("react").ReactNode;
|
|
287
|
+
form?: string | undefined;
|
|
288
|
+
slot?: string | undefined;
|
|
289
|
+
style?: import("react").CSSProperties | undefined;
|
|
290
|
+
title?: string | undefined;
|
|
291
|
+
key?: import("react").Key | null | undefined;
|
|
288
292
|
defaultChecked?: boolean | undefined;
|
|
289
293
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
290
294
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -292,7 +296,7 @@ declare const Tabs: {
|
|
|
292
296
|
accessKey?: string | undefined;
|
|
293
297
|
autoFocus?: boolean | undefined;
|
|
294
298
|
className?: string | undefined;
|
|
295
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
299
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
296
300
|
contextMenu?: string | undefined;
|
|
297
301
|
dir?: string | undefined;
|
|
298
302
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -301,11 +305,8 @@ declare const Tabs: {
|
|
|
301
305
|
lang?: string | undefined;
|
|
302
306
|
nonce?: string | undefined;
|
|
303
307
|
placeholder?: string | undefined;
|
|
304
|
-
slot?: string | undefined;
|
|
305
308
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
306
|
-
style?: import("react").CSSProperties | undefined;
|
|
307
309
|
tabIndex?: number | undefined;
|
|
308
|
-
title?: string | undefined;
|
|
309
310
|
translate?: "yes" | "no" | undefined;
|
|
310
311
|
radioGroup?: string | undefined;
|
|
311
312
|
role?: import("react").AriaRole | undefined;
|
|
@@ -323,6 +324,7 @@ declare const Tabs: {
|
|
|
323
324
|
autoCapitalize?: string | undefined;
|
|
324
325
|
autoCorrect?: string | undefined;
|
|
325
326
|
autoSave?: string | undefined;
|
|
327
|
+
color?: string | undefined;
|
|
326
328
|
itemProp?: string | undefined;
|
|
327
329
|
itemScope?: boolean | undefined;
|
|
328
330
|
itemType?: string | undefined;
|
|
@@ -335,7 +337,7 @@ declare const Tabs: {
|
|
|
335
337
|
is?: string | undefined;
|
|
336
338
|
'aria-activedescendant'?: string | undefined;
|
|
337
339
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
338
|
-
'aria-autocomplete'?: "
|
|
340
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
339
341
|
'aria-braillelabel'?: string | undefined;
|
|
340
342
|
'aria-brailleroledescription'?: string | undefined;
|
|
341
343
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -345,7 +347,7 @@ declare const Tabs: {
|
|
|
345
347
|
'aria-colindextext'?: string | undefined;
|
|
346
348
|
'aria-colspan'?: number | undefined;
|
|
347
349
|
'aria-controls'?: string | undefined;
|
|
348
|
-
'aria-current'?: boolean | "time" | "
|
|
350
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
349
351
|
'aria-describedby'?: string | undefined;
|
|
350
352
|
'aria-description'?: string | undefined;
|
|
351
353
|
'aria-details'?: string | undefined;
|
|
@@ -551,23 +553,24 @@ declare const Tabs: {
|
|
|
551
553
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
552
554
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
553
555
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
554
|
-
|
|
555
|
-
form?: string | undefined;
|
|
556
|
+
asChild?: boolean | undefined;
|
|
556
557
|
name?: string | undefined;
|
|
557
|
-
|
|
558
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
558
559
|
formAction?: string | undefined;
|
|
559
560
|
formEncType?: string | undefined;
|
|
560
561
|
formMethod?: string | undefined;
|
|
561
562
|
formNoValidate?: boolean | undefined;
|
|
562
563
|
formTarget?: string | undefined;
|
|
563
|
-
asChild?: boolean | undefined;
|
|
564
564
|
ref?: import("react").Ref<HTMLButtonElement> | undefined;
|
|
565
565
|
}>;
|
|
566
566
|
Content: import("styled-components").IStyledComponent<"web", {
|
|
567
567
|
value: string;
|
|
568
568
|
forceMount?: true | undefined;
|
|
569
|
-
color?: string | undefined;
|
|
570
569
|
children?: import("react").ReactNode;
|
|
570
|
+
slot?: string | undefined;
|
|
571
|
+
style?: import("react").CSSProperties | undefined;
|
|
572
|
+
title?: string | undefined;
|
|
573
|
+
key?: import("react").Key | null | undefined;
|
|
571
574
|
defaultChecked?: boolean | undefined;
|
|
572
575
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
573
576
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -575,7 +578,7 @@ declare const Tabs: {
|
|
|
575
578
|
accessKey?: string | undefined;
|
|
576
579
|
autoFocus?: boolean | undefined;
|
|
577
580
|
className?: string | undefined;
|
|
578
|
-
contentEditable?: (boolean | "true" | "false") |
|
|
581
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
|
|
579
582
|
contextMenu?: string | undefined;
|
|
580
583
|
dir?: string | undefined;
|
|
581
584
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -584,11 +587,8 @@ declare const Tabs: {
|
|
|
584
587
|
lang?: string | undefined;
|
|
585
588
|
nonce?: string | undefined;
|
|
586
589
|
placeholder?: string | undefined;
|
|
587
|
-
slot?: string | undefined;
|
|
588
590
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
589
|
-
style?: import("react").CSSProperties | undefined;
|
|
590
591
|
tabIndex?: number | undefined;
|
|
591
|
-
title?: string | undefined;
|
|
592
592
|
translate?: "yes" | "no" | undefined;
|
|
593
593
|
radioGroup?: string | undefined;
|
|
594
594
|
role?: import("react").AriaRole | undefined;
|
|
@@ -606,6 +606,7 @@ declare const Tabs: {
|
|
|
606
606
|
autoCapitalize?: string | undefined;
|
|
607
607
|
autoCorrect?: string | undefined;
|
|
608
608
|
autoSave?: string | undefined;
|
|
609
|
+
color?: string | undefined;
|
|
609
610
|
itemProp?: string | undefined;
|
|
610
611
|
itemScope?: boolean | undefined;
|
|
611
612
|
itemType?: string | undefined;
|
|
@@ -618,7 +619,7 @@ declare const Tabs: {
|
|
|
618
619
|
is?: string | undefined;
|
|
619
620
|
'aria-activedescendant'?: string | undefined;
|
|
620
621
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
621
|
-
'aria-autocomplete'?: "
|
|
622
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
|
|
622
623
|
'aria-braillelabel'?: string | undefined;
|
|
623
624
|
'aria-brailleroledescription'?: string | undefined;
|
|
624
625
|
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
@@ -628,7 +629,7 @@ declare const Tabs: {
|
|
|
628
629
|
'aria-colindextext'?: string | undefined;
|
|
629
630
|
'aria-colspan'?: number | undefined;
|
|
630
631
|
'aria-controls'?: string | undefined;
|
|
631
|
-
'aria-current'?: boolean | "time" | "
|
|
632
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date" | undefined;
|
|
632
633
|
'aria-describedby'?: string | undefined;
|
|
633
634
|
'aria-description'?: string | undefined;
|
|
634
635
|
'aria-details'?: string | undefined;
|
|
@@ -834,7 +835,6 @@ declare const Tabs: {
|
|
|
834
835
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
835
836
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
836
837
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
837
|
-
key?: import("react").Key | null | undefined;
|
|
838
838
|
asChild?: boolean | undefined;
|
|
839
839
|
ref?: import("react").Ref<HTMLDivElement> | undefined;
|
|
840
840
|
}>;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import * as RadixTooltip from "@radix-ui/react-tooltip";
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
+
export interface TooltipProps extends RadixTooltip.TooltipProps {
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
}
|
|
3
6
|
export declare const Tooltip: {
|
|
4
|
-
({ children, ...props }:
|
|
7
|
+
({ children, open, disabled, ...props }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
5
8
|
Trigger: {
|
|
6
9
|
(props: HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
7
10
|
displayName: string;
|