react-magma-dom 4.2.0-next.4 → 4.2.0-next.5
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/components/Input/Input.stories.d.ts +328 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/react-magma-dom.cjs.development.js +1 -1
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -340,9 +340,336 @@ export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("
|
|
|
340
340
|
export declare const WithChildren: {
|
|
341
341
|
(args: any): JSX.Element;
|
|
342
342
|
args: {
|
|
343
|
-
iconPosition: InputIconPosition;
|
|
344
343
|
isInverse?: boolean;
|
|
345
344
|
testId?: string;
|
|
345
|
+
iconPosition?: InputIconPosition;
|
|
346
|
+
containerStyle?: React.CSSProperties;
|
|
347
|
+
actionable?: boolean;
|
|
348
|
+
errorMessage?: React.ReactNode;
|
|
349
|
+
hasCharacterCounter?: boolean;
|
|
350
|
+
helperMessage?: React.ReactNode;
|
|
351
|
+
inputLength?: number;
|
|
352
|
+
inputSize?: InputSize;
|
|
353
|
+
isLabelVisuallyHidden?: boolean;
|
|
354
|
+
labelPosition?: LabelPosition;
|
|
355
|
+
labelStyle?: React.CSSProperties;
|
|
356
|
+
labelText?: React.ReactNode;
|
|
357
|
+
labelWidth?: number;
|
|
358
|
+
maxCount?: number;
|
|
359
|
+
maxLength?: number;
|
|
360
|
+
messageStyle?: React.CSSProperties;
|
|
361
|
+
hasError?: boolean;
|
|
362
|
+
icon?: React.ReactElement<import("react-magma-icons").IconProps, string | ((props: any) => React.ReactElement<any, any>) | (new (props: any) => React.Component<any, any, any>)>;
|
|
363
|
+
iconAriaLabel?: string;
|
|
364
|
+
iconRef?: React.Ref<HTMLButtonElement>;
|
|
365
|
+
inputStyle?: React.CSSProperties;
|
|
366
|
+
isClearable?: boolean;
|
|
367
|
+
onClear?: () => void;
|
|
368
|
+
isPredictive?: boolean;
|
|
369
|
+
onIconClick?: () => void;
|
|
370
|
+
onIconKeyDown?: (event: any) => void;
|
|
371
|
+
theme?: any;
|
|
372
|
+
type?: InputType;
|
|
373
|
+
isPasswordInput?: boolean;
|
|
374
|
+
width?: string;
|
|
375
|
+
accept?: string;
|
|
376
|
+
alt?: string;
|
|
377
|
+
autoComplete?: string;
|
|
378
|
+
autoFocus?: boolean;
|
|
379
|
+
capture?: string | boolean;
|
|
380
|
+
checked?: boolean;
|
|
381
|
+
crossOrigin?: string;
|
|
382
|
+
disabled?: boolean;
|
|
383
|
+
form?: string;
|
|
384
|
+
formAction?: string;
|
|
385
|
+
formEncType?: string;
|
|
386
|
+
formMethod?: string;
|
|
387
|
+
formNoValidate?: boolean;
|
|
388
|
+
formTarget?: string;
|
|
389
|
+
height?: React.ReactText;
|
|
390
|
+
list?: string;
|
|
391
|
+
max?: React.ReactText;
|
|
392
|
+
min?: React.ReactText;
|
|
393
|
+
minLength?: number;
|
|
394
|
+
multiple?: boolean;
|
|
395
|
+
name?: string;
|
|
396
|
+
pattern?: string;
|
|
397
|
+
placeholder?: string;
|
|
398
|
+
readOnly?: boolean;
|
|
399
|
+
required?: boolean;
|
|
400
|
+
size?: number;
|
|
401
|
+
src?: string;
|
|
402
|
+
step?: React.ReactText;
|
|
403
|
+
value?: string | number | readonly string[];
|
|
404
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
405
|
+
defaultChecked?: boolean;
|
|
406
|
+
defaultValue?: string | number | readonly string[];
|
|
407
|
+
suppressContentEditableWarning?: boolean;
|
|
408
|
+
suppressHydrationWarning?: boolean;
|
|
409
|
+
accessKey?: string;
|
|
410
|
+
className?: string;
|
|
411
|
+
contentEditable?: boolean | "inherit" | "true" | "false";
|
|
412
|
+
contextMenu?: string;
|
|
413
|
+
dir?: string;
|
|
414
|
+
draggable?: boolean | "true" | "false";
|
|
415
|
+
hidden?: boolean;
|
|
416
|
+
id?: string;
|
|
417
|
+
lang?: string;
|
|
418
|
+
slot?: string;
|
|
419
|
+
spellCheck?: boolean | "true" | "false";
|
|
420
|
+
style?: React.CSSProperties;
|
|
421
|
+
tabIndex?: number;
|
|
422
|
+
title?: string;
|
|
423
|
+
translate?: "yes" | "no";
|
|
424
|
+
radioGroup?: string;
|
|
425
|
+
role?: React.AriaRole;
|
|
426
|
+
about?: string;
|
|
427
|
+
datatype?: string;
|
|
428
|
+
inlist?: any;
|
|
429
|
+
prefix?: string;
|
|
430
|
+
property?: string;
|
|
431
|
+
resource?: string;
|
|
432
|
+
typeof?: string;
|
|
433
|
+
vocab?: string;
|
|
434
|
+
autoCapitalize?: string;
|
|
435
|
+
autoCorrect?: string;
|
|
436
|
+
autoSave?: string;
|
|
437
|
+
color?: string;
|
|
438
|
+
itemProp?: string;
|
|
439
|
+
itemScope?: boolean;
|
|
440
|
+
itemType?: string;
|
|
441
|
+
itemID?: string;
|
|
442
|
+
itemRef?: string;
|
|
443
|
+
results?: number;
|
|
444
|
+
security?: string;
|
|
445
|
+
unselectable?: "on" | "off";
|
|
446
|
+
inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
447
|
+
is?: string;
|
|
448
|
+
'aria-activedescendant'?: string;
|
|
449
|
+
'aria-atomic'?: boolean | "true" | "false";
|
|
450
|
+
'aria-autocomplete'?: "none" | "list" | "inline" | "both";
|
|
451
|
+
'aria-busy'?: boolean | "true" | "false";
|
|
452
|
+
'aria-checked'?: boolean | "true" | "false" | "mixed";
|
|
453
|
+
'aria-colcount'?: number;
|
|
454
|
+
'aria-colindex'?: number;
|
|
455
|
+
'aria-colspan'?: number;
|
|
456
|
+
'aria-controls'?: string;
|
|
457
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
|
|
458
|
+
'aria-describedby'?: string;
|
|
459
|
+
'aria-details'?: string;
|
|
460
|
+
'aria-disabled'?: boolean | "true" | "false";
|
|
461
|
+
'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup";
|
|
462
|
+
'aria-errormessage'?: string;
|
|
463
|
+
'aria-expanded'?: boolean | "true" | "false";
|
|
464
|
+
'aria-flowto'?: string;
|
|
465
|
+
'aria-grabbed'?: boolean | "true" | "false";
|
|
466
|
+
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
|
|
467
|
+
'aria-hidden'?: boolean | "true" | "false";
|
|
468
|
+
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
469
|
+
'aria-keyshortcuts'?: string;
|
|
470
|
+
'aria-label'?: string;
|
|
471
|
+
'aria-labelledby'?: string;
|
|
472
|
+
'aria-level'?: number;
|
|
473
|
+
'aria-live'?: "off" | "assertive" | "polite";
|
|
474
|
+
'aria-modal'?: boolean | "true" | "false";
|
|
475
|
+
'aria-multiline'?: boolean | "true" | "false";
|
|
476
|
+
'aria-multiselectable'?: boolean | "true" | "false";
|
|
477
|
+
'aria-orientation'?: "horizontal" | "vertical";
|
|
478
|
+
'aria-owns'?: string;
|
|
479
|
+
'aria-placeholder'?: string;
|
|
480
|
+
'aria-posinset'?: number;
|
|
481
|
+
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
482
|
+
'aria-readonly'?: boolean | "true" | "false";
|
|
483
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
484
|
+
'aria-required'?: boolean | "true" | "false";
|
|
485
|
+
'aria-roledescription'?: string;
|
|
486
|
+
'aria-rowcount'?: number;
|
|
487
|
+
'aria-rowindex'?: number;
|
|
488
|
+
'aria-rowspan'?: number;
|
|
489
|
+
'aria-selected'?: boolean | "true" | "false";
|
|
490
|
+
'aria-setsize'?: number;
|
|
491
|
+
'aria-sort'?: "none" | "other" | "ascending" | "descending";
|
|
492
|
+
'aria-valuemax'?: number;
|
|
493
|
+
'aria-valuemin'?: number;
|
|
494
|
+
'aria-valuenow'?: number;
|
|
495
|
+
'aria-valuetext'?: string;
|
|
496
|
+
children?: React.ReactNode;
|
|
497
|
+
dangerouslySetInnerHTML?: {
|
|
498
|
+
__html: string;
|
|
499
|
+
};
|
|
500
|
+
onCopy?: (event: React.ClipboardEvent<HTMLInputElement>) => void;
|
|
501
|
+
onCopyCapture?: (event: React.ClipboardEvent<HTMLInputElement>) => void;
|
|
502
|
+
onCut?: (event: React.ClipboardEvent<HTMLInputElement>) => void;
|
|
503
|
+
onCutCapture?: (event: React.ClipboardEvent<HTMLInputElement>) => void;
|
|
504
|
+
onPaste?: (event: React.ClipboardEvent<HTMLInputElement>) => void;
|
|
505
|
+
onPasteCapture?: (event: React.ClipboardEvent<HTMLInputElement>) => void;
|
|
506
|
+
onCompositionEnd?: (event: React.CompositionEvent<HTMLInputElement>) => void;
|
|
507
|
+
onCompositionEndCapture?: (event: React.CompositionEvent<HTMLInputElement>) => void;
|
|
508
|
+
onCompositionStart?: (event: React.CompositionEvent<HTMLInputElement>) => void;
|
|
509
|
+
onCompositionStartCapture?: (event: React.CompositionEvent<HTMLInputElement>) => void;
|
|
510
|
+
onCompositionUpdate?: (event: React.CompositionEvent<HTMLInputElement>) => void;
|
|
511
|
+
onCompositionUpdateCapture?: (event: React.CompositionEvent<HTMLInputElement>) => void;
|
|
512
|
+
onFocus?: (event: React.FocusEvent<HTMLInputElement, Element>) => void;
|
|
513
|
+
onFocusCapture?: (event: React.FocusEvent<HTMLInputElement, Element>) => void;
|
|
514
|
+
onBlur?: (event: React.FocusEvent<HTMLInputElement, Element>) => void;
|
|
515
|
+
onBlurCapture?: (event: React.FocusEvent<HTMLInputElement, Element>) => void;
|
|
516
|
+
onChangeCapture?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
517
|
+
onBeforeInput?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
518
|
+
onBeforeInputCapture?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
519
|
+
onInput?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
520
|
+
onInputCapture?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
521
|
+
onReset?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
522
|
+
onResetCapture?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
523
|
+
onSubmit?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
524
|
+
onSubmitCapture?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
525
|
+
onInvalid?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
526
|
+
onInvalidCapture?: (event: React.FormEvent<HTMLInputElement>) => void;
|
|
527
|
+
onLoad?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
528
|
+
onLoadCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
529
|
+
onError?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
530
|
+
onErrorCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
531
|
+
onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
532
|
+
onKeyDownCapture?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
533
|
+
onKeyPress?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
534
|
+
onKeyPressCapture?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
535
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
536
|
+
onKeyUpCapture?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
537
|
+
onAbort?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
538
|
+
onAbortCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
539
|
+
onCanPlay?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
540
|
+
onCanPlayCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
541
|
+
onCanPlayThrough?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
542
|
+
onCanPlayThroughCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
543
|
+
onDurationChange?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
544
|
+
onDurationChangeCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
545
|
+
onEmptied?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
546
|
+
onEmptiedCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
547
|
+
onEncrypted?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
548
|
+
onEncryptedCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
549
|
+
onEnded?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
550
|
+
onEndedCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
551
|
+
onLoadedData?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
552
|
+
onLoadedDataCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
553
|
+
onLoadedMetadata?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
554
|
+
onLoadedMetadataCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
555
|
+
onLoadStart?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
556
|
+
onLoadStartCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
557
|
+
onPause?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
558
|
+
onPauseCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
559
|
+
onPlay?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
560
|
+
onPlayCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
561
|
+
onPlaying?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
562
|
+
onPlayingCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
563
|
+
onProgress?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
564
|
+
onProgressCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
565
|
+
onRateChange?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
566
|
+
onRateChangeCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
567
|
+
onSeeked?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
568
|
+
onSeekedCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
569
|
+
onSeeking?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
570
|
+
onSeekingCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
571
|
+
onStalled?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
572
|
+
onStalledCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
573
|
+
onSuspend?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
574
|
+
onSuspendCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
575
|
+
onTimeUpdate?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
576
|
+
onTimeUpdateCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
577
|
+
onVolumeChange?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
578
|
+
onVolumeChangeCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
579
|
+
onWaiting?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
580
|
+
onWaitingCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
581
|
+
onAuxClick?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
582
|
+
onAuxClickCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
583
|
+
onClick?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
584
|
+
onClickCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
585
|
+
onContextMenu?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
586
|
+
onContextMenuCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
587
|
+
onDoubleClick?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
588
|
+
onDoubleClickCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
589
|
+
onDrag?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
590
|
+
onDragCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
591
|
+
onDragEnd?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
592
|
+
onDragEndCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
593
|
+
onDragEnter?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
594
|
+
onDragEnterCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
595
|
+
onDragExit?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
596
|
+
onDragExitCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
597
|
+
onDragLeave?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
598
|
+
onDragLeaveCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
599
|
+
onDragOver?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
600
|
+
onDragOverCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
601
|
+
onDragStart?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
602
|
+
onDragStartCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
603
|
+
onDrop?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
604
|
+
onDropCapture?: (event: React.DragEvent<HTMLInputElement>) => void;
|
|
605
|
+
onMouseDown?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
606
|
+
onMouseDownCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
607
|
+
onMouseEnter?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
608
|
+
onMouseLeave?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
609
|
+
onMouseMove?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
610
|
+
onMouseMoveCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
611
|
+
onMouseOut?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
612
|
+
onMouseOutCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
613
|
+
onMouseOver?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
614
|
+
onMouseOverCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
615
|
+
onMouseUp?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
616
|
+
onMouseUpCapture?: (event: React.MouseEvent<HTMLInputElement, MouseEvent>) => void;
|
|
617
|
+
onSelect?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
618
|
+
onSelectCapture?: (event: React.SyntheticEvent<HTMLInputElement, Event>) => void;
|
|
619
|
+
onTouchCancel?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
620
|
+
onTouchCancelCapture?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
621
|
+
onTouchEnd?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
622
|
+
onTouchEndCapture?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
623
|
+
onTouchMove?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
624
|
+
onTouchMoveCapture?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
625
|
+
onTouchStart?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
626
|
+
onTouchStartCapture?: (event: React.TouchEvent<HTMLInputElement>) => void;
|
|
627
|
+
onPointerDown?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
628
|
+
onPointerDownCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
629
|
+
onPointerMove?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
630
|
+
onPointerMoveCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
631
|
+
onPointerUp?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
632
|
+
onPointerUpCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
633
|
+
onPointerCancel?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
634
|
+
onPointerCancelCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
635
|
+
onPointerEnter?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
636
|
+
onPointerEnterCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
637
|
+
onPointerLeave?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
638
|
+
onPointerLeaveCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
639
|
+
onPointerOver?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
640
|
+
onPointerOverCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
641
|
+
onPointerOut?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
642
|
+
onPointerOutCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
643
|
+
onGotPointerCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
644
|
+
onGotPointerCaptureCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
645
|
+
onLostPointerCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
646
|
+
onLostPointerCaptureCapture?: (event: React.PointerEvent<HTMLInputElement>) => void;
|
|
647
|
+
onScroll?: (event: React.UIEvent<HTMLInputElement, UIEvent>) => void;
|
|
648
|
+
onScrollCapture?: (event: React.UIEvent<HTMLInputElement, UIEvent>) => void;
|
|
649
|
+
onWheel?: (event: React.WheelEvent<HTMLInputElement>) => void;
|
|
650
|
+
onWheelCapture?: (event: React.WheelEvent<HTMLInputElement>) => void;
|
|
651
|
+
onAnimationStart?: (event: React.AnimationEvent<HTMLInputElement>) => void;
|
|
652
|
+
onAnimationStartCapture?: (event: React.AnimationEvent<HTMLInputElement>) => void;
|
|
653
|
+
onAnimationEnd?: (event: React.AnimationEvent<HTMLInputElement>) => void;
|
|
654
|
+
onAnimationEndCapture?: (event: React.AnimationEvent<HTMLInputElement>) => void;
|
|
655
|
+
onAnimationIteration?: (event: React.AnimationEvent<HTMLInputElement>) => void;
|
|
656
|
+
onAnimationIterationCapture?: (event: React.AnimationEvent<HTMLInputElement>) => void;
|
|
657
|
+
onTransitionEnd?: (event: React.TransitionEvent<HTMLInputElement>) => void;
|
|
658
|
+
onTransitionEndCapture?: (event: React.TransitionEvent<HTMLInputElement>) => void;
|
|
659
|
+
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
|
660
|
+
};
|
|
661
|
+
parameters: {
|
|
662
|
+
controls: {
|
|
663
|
+
exclude: string[];
|
|
664
|
+
};
|
|
665
|
+
};
|
|
666
|
+
};
|
|
667
|
+
export declare const WithTwoIcons: {
|
|
668
|
+
(args: any): JSX.Element;
|
|
669
|
+
args: {
|
|
670
|
+
isInverse?: boolean;
|
|
671
|
+
testId?: string;
|
|
672
|
+
iconPosition?: InputIconPosition;
|
|
346
673
|
containerStyle?: React.CSSProperties;
|
|
347
674
|
actionable?: boolean;
|
|
348
675
|
errorMessage?: React.ReactNode;
|
package/dist/esm/index.js
CHANGED
|
@@ -5765,7 +5765,7 @@ function borderColors(props) {
|
|
|
5765
5765
|
}
|
|
5766
5766
|
return props.theme.colors.neutral500;
|
|
5767
5767
|
}
|
|
5768
|
-
var StyledNativeSelect = /*#__PURE__*/_styled.select(_templateObject2$a || (_templateObject2$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", ";\n // Required for Windows && Chrome support\n background: inherit;\n > option {\n background: ", ";\n }\n"])), inputBaseStyles, function (props) {
|
|
5768
|
+
var StyledNativeSelect = /*#__PURE__*/_styled.select(_templateObject2$a || (_templateObject2$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", ";\n height: 38px;\n // Required for Windows && Chrome support\n background: inherit;\n > option {\n background: ", ";\n }\n"])), inputBaseStyles, function (props) {
|
|
5769
5769
|
return props.isInverse ? props.theme.colors.neutral600 : 'none';
|
|
5770
5770
|
});
|
|
5771
5771
|
var NativeSelect = /*#__PURE__*/forwardRef(function (props, ref) {
|