@salutejs/sdds-cs 0.231.0-canary.1702.12829190112.0 → 0.231.0-canary.1706.12871124885.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -50,6 +50,7 @@ import { CellTextbox } from '@salutejs/plasma-new-hope/styled-components';
50
50
  import { CellTextboxLabel } from '@salutejs/plasma-new-hope/styled-components';
51
51
  import { CellTextboxSubtitle } from '@salutejs/plasma-new-hope/styled-components';
52
52
  import { CellTextboxTitle } from '@salutejs/plasma-new-hope/styled-components';
53
+ import { ChangeEvent } from 'react';
53
54
  import { ChangeInstanceCallback } from '@salutejs/plasma-new-hope/types/components/DatePicker/RangeDate/RangeDate.types';
54
55
  import { CheckboxProps as CheckboxProps_2 } from '@salutejs/plasma-new-hope/types/components/Checkbox/Checkbox.types';
55
56
  import { ChipGroupProps } from '@salutejs/plasma-new-hope/types/components/ChipGroup/ChipGroup.types';
@@ -85,6 +86,7 @@ import { DatePickerRangeProps } from '@salutejs/plasma-new-hope/styled-component
85
86
  import { datePickerTokens } from '@salutejs/plasma-new-hope/styled-components';
86
87
  import { DatePickerVariationProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types';
87
88
  import type { DistributiveOmit } from '@salutejs/plasma-new-hope';
89
+ import { DistributiveOmit as DistributiveOmit_2 } from '@salutejs/plasma-new-hope/styled-components';
88
90
  import type { DistributivePick } from '@salutejs/plasma-new-hope';
89
91
  import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
90
92
  import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
@@ -111,7 +113,6 @@ import { FC } from 'react';
111
113
  import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
112
114
  import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
113
115
  import { FlowProps } from '@salutejs/plasma-new-hope/styled-components';
114
- import { FocusEvent as FocusEvent_2 } from 'react';
115
116
  import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
116
117
  import { FormTypeString } from '@salutejs/plasma-new-hope/types/types/FormType';
117
118
  import { ForwardRefExoticComponent } from 'react';
@@ -488,274 +489,10 @@ buttonType?: "iconButton" | undefined;
488
489
  icon?: ReactNode;
489
490
  } & RefAttributes<HTMLDivElement>))>;
490
491
 
492
+ // Warning: (ae-forgotten-export) The symbol "AutocompleteProps" needs to be exported by the entry point index.d.ts
493
+ //
491
494
  // @public (undocumented)
492
- export const Autocomplete: FunctionComponent<PropsType< {
493
- view: {
494
- default: PolymorphicClassName;
495
- negative: PolymorphicClassName;
496
- };
497
- size: {
498
- s: PolymorphicClassName;
499
- };
500
- labelPlacement: {
501
- inner: PolymorphicClassName;
502
- outer: PolymorphicClassName;
503
- };
504
- disabled: {
505
- true: PolymorphicClassName;
506
- };
507
- readOnly: {
508
- true: PolymorphicClassName;
509
- };
510
- }> & ((BaseProps & Omit<{
511
- titleCaption?: ReactNode;
512
- leftHelper?: ReactNode;
513
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
514
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
515
- textBefore?: string | undefined;
516
- textAfter?: string | undefined;
517
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
518
- } & LabelProps & RequiredProps & {
519
- clear?: boolean | undefined;
520
- hasDivider?: boolean | undefined;
521
- } & {
522
- hintText: string;
523
- hintTrigger?: "click" | "hover" | undefined;
524
- hintView?: string | undefined;
525
- hintSize?: string | undefined;
526
- hintTargetIcon?: ReactNode;
527
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
528
- hintHasArrow?: boolean | undefined;
529
- hintOffset?: [number, number] | undefined;
530
- hintWidth?: string | undefined;
531
- hintContentLeft?: ReactNode;
532
- } & {
533
- chips?: undefined;
534
- onChangeChips?: undefined;
535
- enumerationType?: "plain" | undefined;
536
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
537
- chipType?: undefined;
538
- chipView?: undefined;
539
- chipValidator?: undefined;
540
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | (BaseProps & Omit<{
541
- titleCaption?: ReactNode;
542
- leftHelper?: ReactNode;
543
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
544
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
545
- textBefore?: string | undefined;
546
- textAfter?: string | undefined;
547
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
548
- } & LabelProps & RequiredProps & {
549
- clear?: boolean | undefined;
550
- hasDivider?: boolean | undefined;
551
- } & {
552
- hintText: string;
553
- hintTrigger?: "click" | "hover" | undefined;
554
- hintView?: string | undefined;
555
- hintSize?: string | undefined;
556
- hintTargetIcon?: ReactNode;
557
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
558
- hintHasArrow?: boolean | undefined;
559
- hintOffset?: [number, number] | undefined;
560
- hintWidth?: string | undefined;
561
- hintContentLeft?: ReactNode;
562
- } & {
563
- enumerationType: "chip";
564
- onSearch?: undefined;
565
- chips?: TextFieldPrimitiveValue[] | undefined;
566
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
567
- chipType?: "default" | "text" | undefined;
568
- chipView?: string | undefined;
569
- chipValidator?: ((value: string) => {
570
- view?: string | undefined;
571
- }) | undefined;
572
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | (BaseProps & Omit<{
573
- titleCaption?: ReactNode;
574
- leftHelper?: ReactNode;
575
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
576
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
577
- textBefore?: string | undefined;
578
- textAfter?: string | undefined;
579
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
580
- } & LabelProps & RequiredProps & {
581
- clear?: boolean | undefined;
582
- hasDivider?: boolean | undefined;
583
- } & {
584
- hintTrigger?: undefined;
585
- hintText?: undefined;
586
- hintView?: undefined;
587
- hintSize?: undefined;
588
- hintTargetIcon?: undefined;
589
- hintPlacement?: undefined;
590
- hintHasArrow?: undefined;
591
- hintOffset?: undefined;
592
- hintWidth?: undefined;
593
- hintContentLeft?: undefined;
594
- } & {
595
- chips?: undefined;
596
- onChangeChips?: undefined;
597
- enumerationType?: "plain" | undefined;
598
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
599
- chipType?: undefined;
600
- chipView?: undefined;
601
- chipValidator?: undefined;
602
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | (BaseProps & Omit<{
603
- titleCaption?: ReactNode;
604
- leftHelper?: ReactNode;
605
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
606
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
607
- textBefore?: string | undefined;
608
- textAfter?: string | undefined;
609
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
610
- } & LabelProps & RequiredProps & {
611
- clear?: boolean | undefined;
612
- hasDivider?: boolean | undefined;
613
- } & {
614
- hintTrigger?: undefined;
615
- hintText?: undefined;
616
- hintView?: undefined;
617
- hintSize?: undefined;
618
- hintTargetIcon?: undefined;
619
- hintPlacement?: undefined;
620
- hintHasArrow?: undefined;
621
- hintOffset?: undefined;
622
- hintWidth?: undefined;
623
- hintContentLeft?: undefined;
624
- } & {
625
- enumerationType: "chip";
626
- onSearch?: undefined;
627
- chips?: TextFieldPrimitiveValue[] | undefined;
628
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
629
- chipType?: "default" | "text" | undefined;
630
- chipView?: string | undefined;
631
- chipValidator?: ((value: string) => {
632
- view?: string | undefined;
633
- }) | undefined;
634
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | (BaseProps & Omit<{
635
- titleCaption?: ReactNode;
636
- leftHelper?: ReactNode;
637
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
638
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
639
- textBefore?: string | undefined;
640
- textAfter?: string | undefined;
641
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
642
- } & LabelProps & RequiredProps & {
643
- clear?: false | undefined;
644
- hasDivider?: undefined;
645
- } & {
646
- hintText: string;
647
- hintTrigger?: "click" | "hover" | undefined;
648
- hintView?: string | undefined;
649
- hintSize?: string | undefined;
650
- hintTargetIcon?: ReactNode;
651
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
652
- hintHasArrow?: boolean | undefined;
653
- hintOffset?: [number, number] | undefined;
654
- hintWidth?: string | undefined;
655
- hintContentLeft?: ReactNode;
656
- } & {
657
- chips?: undefined;
658
- onChangeChips?: undefined;
659
- enumerationType?: "plain" | undefined;
660
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
661
- chipType?: undefined;
662
- chipView?: undefined;
663
- chipValidator?: undefined;
664
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | (BaseProps & Omit<{
665
- titleCaption?: ReactNode;
666
- leftHelper?: ReactNode;
667
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
668
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
669
- textBefore?: string | undefined;
670
- textAfter?: string | undefined;
671
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
672
- } & LabelProps & RequiredProps & {
673
- clear?: false | undefined;
674
- hasDivider?: undefined;
675
- } & {
676
- hintText: string;
677
- hintTrigger?: "click" | "hover" | undefined;
678
- hintView?: string | undefined;
679
- hintSize?: string | undefined;
680
- hintTargetIcon?: ReactNode;
681
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
682
- hintHasArrow?: boolean | undefined;
683
- hintOffset?: [number, number] | undefined;
684
- hintWidth?: string | undefined;
685
- hintContentLeft?: ReactNode;
686
- } & {
687
- enumerationType: "chip";
688
- onSearch?: undefined;
689
- chips?: TextFieldPrimitiveValue[] | undefined;
690
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
691
- chipType?: "default" | "text" | undefined;
692
- chipView?: string | undefined;
693
- chipValidator?: ((value: string) => {
694
- view?: string | undefined;
695
- }) | undefined;
696
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | (BaseProps & Omit<{
697
- titleCaption?: ReactNode;
698
- leftHelper?: ReactNode;
699
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
700
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
701
- textBefore?: string | undefined;
702
- textAfter?: string | undefined;
703
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
704
- } & LabelProps & RequiredProps & {
705
- clear?: false | undefined;
706
- hasDivider?: undefined;
707
- } & {
708
- hintTrigger?: undefined;
709
- hintText?: undefined;
710
- hintView?: undefined;
711
- hintSize?: undefined;
712
- hintTargetIcon?: undefined;
713
- hintPlacement?: undefined;
714
- hintHasArrow?: undefined;
715
- hintOffset?: undefined;
716
- hintWidth?: undefined;
717
- hintContentLeft?: undefined;
718
- } & {
719
- chips?: undefined;
720
- onChangeChips?: undefined;
721
- enumerationType?: "plain" | undefined;
722
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
723
- chipType?: undefined;
724
- chipView?: undefined;
725
- chipValidator?: undefined;
726
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | (BaseProps & Omit<{
727
- titleCaption?: ReactNode;
728
- leftHelper?: ReactNode;
729
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
730
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
731
- textBefore?: string | undefined;
732
- textAfter?: string | undefined;
733
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
734
- } & LabelProps & RequiredProps & {
735
- clear?: false | undefined;
736
- hasDivider?: undefined;
737
- } & {
738
- hintTrigger?: undefined;
739
- hintText?: undefined;
740
- hintView?: undefined;
741
- hintSize?: undefined;
742
- hintTargetIcon?: undefined;
743
- hintPlacement?: undefined;
744
- hintHasArrow?: undefined;
745
- hintOffset?: undefined;
746
- hintWidth?: undefined;
747
- hintContentLeft?: undefined;
748
- } & {
749
- enumerationType: "chip";
750
- onSearch?: undefined;
751
- chips?: TextFieldPrimitiveValue[] | undefined;
752
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
753
- chipType?: "default" | "text" | undefined;
754
- chipView?: string | undefined;
755
- chipValidator?: ((value: string) => {
756
- view?: string | undefined;
757
- }) | undefined;
758
- }, "labelPlacement" | "chips" | "onChangeChips" | "enumerationType" | "chipType" | "chipView" | "chipValidator"> & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>))>;
495
+ export const Autocomplete: (props: AutocompleteProps & React_2.RefAttributes<HTMLInputElement>) => React_2.ReactElement<any, string | React_2.JSXElementConstructor<any>> | null;
759
496
 
760
497
  // @public (undocumented)
761
498
  export const Avatar: FunctionComponent<PropsType< {
@@ -1390,10 +1127,10 @@ secondTextfieldContentLeft?: ReactElement<any, string | JSXElementConstructor<an
1390
1127
  secondTextfieldContentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
1391
1128
  firstTextfieldTextAfter?: string | undefined;
1392
1129
  secondTextfieldTextAfter?: string | undefined;
1393
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1394
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1395
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1396
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
1130
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1131
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1132
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1133
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1397
1134
  firstTextfieldTextBefore?: string | undefined;
1398
1135
  secondTextfieldTextBefore?: string | undefined;
1399
1136
  dividerVariant?: "none" | "dash" | "icon" | undefined;
@@ -1401,7 +1138,6 @@ dividerIcon?: ReactNode;
1401
1138
  } & DatePickerCalendarProps & Omit<DatePickerPopoverProps, "placement"> & {
1402
1139
  placement?: DatePickerRangePlacement | DatePickerRangePlacementBasic[] | undefined;
1403
1140
  isDoubleCalendar?: boolean | undefined;
1404
- closeAfterDateSelect?: boolean | undefined;
1405
1141
  } & HTMLAttributes<HTMLDivElement> & RefAttributes<RangeInputRefs>>;
1406
1142
 
1407
1143
  export { DatePickerRangePlacement }
@@ -1851,7 +1587,7 @@ true: PolymorphicClassName;
1851
1587
  export type LinkProps = typeof LinkComponent;
1852
1588
 
1853
1589
  // @public (undocumented)
1854
- export const Mask: ForwardRefExoticComponent<(Omit<PropsType< {
1590
+ export const Mask: ForwardRefExoticComponent<(Omit<Omit<PropsType< {
1855
1591
  view: {
1856
1592
  default: PolymorphicClassName;
1857
1593
  negative: PolymorphicClassName;
@@ -1896,10 +1632,11 @@ clear?: boolean | undefined;
1896
1632
  hasDivider?: boolean | undefined;
1897
1633
  } & {
1898
1634
  hintText: string;
1899
- hintTrigger?: "click" | "hover" | undefined;
1635
+ hintTrigger?: "hover" | "click" | undefined;
1900
1636
  hintView?: string | undefined;
1901
1637
  hintSize?: string | undefined;
1902
1638
  hintTargetIcon?: ReactNode;
1639
+ hintTargetPlacement?: "outer" | "inner" | undefined;
1903
1640
  hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
1904
1641
  hintHasArrow?: boolean | undefined;
1905
1642
  hintOffset?: [number, number] | undefined;
@@ -1913,7 +1650,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
1913
1650
  chipType?: undefined;
1914
1651
  chipView?: undefined;
1915
1652
  chipValidator?: undefined;
1916
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
1653
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<Omit<PropsType< {
1917
1654
  view: {
1918
1655
  default: PolymorphicClassName;
1919
1656
  negative: PolymorphicClassName;
@@ -1958,10 +1695,11 @@ clear?: boolean | undefined;
1958
1695
  hasDivider?: boolean | undefined;
1959
1696
  } & {
1960
1697
  hintText: string;
1961
- hintTrigger?: "click" | "hover" | undefined;
1698
+ hintTrigger?: "hover" | "click" | undefined;
1962
1699
  hintView?: string | undefined;
1963
1700
  hintSize?: string | undefined;
1964
1701
  hintTargetIcon?: ReactNode;
1702
+ hintTargetPlacement?: "outer" | "inner" | undefined;
1965
1703
  hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
1966
1704
  hintHasArrow?: boolean | undefined;
1967
1705
  hintOffset?: [number, number] | undefined;
@@ -1977,7 +1715,7 @@ chipView?: string | undefined;
1977
1715
  chipValidator?: ((value: string) => {
1978
1716
  view?: string | undefined;
1979
1717
  }) | undefined;
1980
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
1718
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<Omit<PropsType< {
1981
1719
  view: {
1982
1720
  default: PolymorphicClassName;
1983
1721
  negative: PolymorphicClassName;
@@ -2026,6 +1764,7 @@ hintText?: undefined;
2026
1764
  hintView?: undefined;
2027
1765
  hintSize?: undefined;
2028
1766
  hintTargetIcon?: undefined;
1767
+ hintTargetPlacement?: undefined;
2029
1768
  hintPlacement?: undefined;
2030
1769
  hintHasArrow?: undefined;
2031
1770
  hintOffset?: undefined;
@@ -2039,7 +1778,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
2039
1778
  chipType?: undefined;
2040
1779
  chipView?: undefined;
2041
1780
  chipValidator?: undefined;
2042
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
1781
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<Omit<PropsType< {
2043
1782
  view: {
2044
1783
  default: PolymorphicClassName;
2045
1784
  negative: PolymorphicClassName;
@@ -2088,6 +1827,7 @@ hintText?: undefined;
2088
1827
  hintView?: undefined;
2089
1828
  hintSize?: undefined;
2090
1829
  hintTargetIcon?: undefined;
1830
+ hintTargetPlacement?: undefined;
2091
1831
  hintPlacement?: undefined;
2092
1832
  hintHasArrow?: undefined;
2093
1833
  hintOffset?: undefined;
@@ -2103,7 +1843,7 @@ chipView?: string | undefined;
2103
1843
  chipValidator?: ((value: string) => {
2104
1844
  view?: string | undefined;
2105
1845
  }) | undefined;
2106
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
1846
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<Omit<PropsType< {
2107
1847
  view: {
2108
1848
  default: PolymorphicClassName;
2109
1849
  negative: PolymorphicClassName;
@@ -2148,10 +1888,11 @@ clear?: false | undefined;
2148
1888
  hasDivider?: undefined;
2149
1889
  } & {
2150
1890
  hintText: string;
2151
- hintTrigger?: "click" | "hover" | undefined;
1891
+ hintTrigger?: "hover" | "click" | undefined;
2152
1892
  hintView?: string | undefined;
2153
1893
  hintSize?: string | undefined;
2154
1894
  hintTargetIcon?: ReactNode;
1895
+ hintTargetPlacement?: "outer" | "inner" | undefined;
2155
1896
  hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
2156
1897
  hintHasArrow?: boolean | undefined;
2157
1898
  hintOffset?: [number, number] | undefined;
@@ -2165,7 +1906,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
2165
1906
  chipType?: undefined;
2166
1907
  chipView?: undefined;
2167
1908
  chipValidator?: undefined;
2168
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
1909
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<Omit<PropsType< {
2169
1910
  view: {
2170
1911
  default: PolymorphicClassName;
2171
1912
  negative: PolymorphicClassName;
@@ -2210,10 +1951,11 @@ clear?: false | undefined;
2210
1951
  hasDivider?: undefined;
2211
1952
  } & {
2212
1953
  hintText: string;
2213
- hintTrigger?: "click" | "hover" | undefined;
1954
+ hintTrigger?: "hover" | "click" | undefined;
2214
1955
  hintView?: string | undefined;
2215
1956
  hintSize?: string | undefined;
2216
1957
  hintTargetIcon?: ReactNode;
1958
+ hintTargetPlacement?: "outer" | "inner" | undefined;
2217
1959
  hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
2218
1960
  hintHasArrow?: boolean | undefined;
2219
1961
  hintOffset?: [number, number] | undefined;
@@ -2229,7 +1971,7 @@ chipView?: string | undefined;
2229
1971
  chipValidator?: ((value: string) => {
2230
1972
  view?: string | undefined;
2231
1973
  }) | undefined;
2232
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
1974
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<Omit<PropsType< {
2233
1975
  view: {
2234
1976
  default: PolymorphicClassName;
2235
1977
  negative: PolymorphicClassName;
@@ -2278,6 +2020,7 @@ hintText?: undefined;
2278
2020
  hintView?: undefined;
2279
2021
  hintSize?: undefined;
2280
2022
  hintTargetIcon?: undefined;
2023
+ hintTargetPlacement?: undefined;
2281
2024
  hintPlacement?: undefined;
2282
2025
  hintHasArrow?: undefined;
2283
2026
  hintOffset?: undefined;
@@ -2291,7 +2034,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
2291
2034
  chipType?: undefined;
2292
2035
  chipView?: undefined;
2293
2036
  chipValidator?: undefined;
2294
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
2037
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<Omit<PropsType< {
2295
2038
  view: {
2296
2039
  default: PolymorphicClassName;
2297
2040
  negative: PolymorphicClassName;
@@ -2340,6 +2083,7 @@ hintText?: undefined;
2340
2083
  hintView?: undefined;
2341
2084
  hintSize?: undefined;
2342
2085
  hintTargetIcon?: undefined;
2086
+ hintTargetPlacement?: undefined;
2343
2087
  hintPlacement?: undefined;
2344
2088
  hintHasArrow?: undefined;
2345
2089
  hintOffset?: undefined;
@@ -2355,7 +2099,7 @@ chipView?: string | undefined;
2355
2099
  chipValidator?: ((value: string) => {
2356
2100
  view?: string | undefined;
2357
2101
  }) | undefined;
2358
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref">) & RefAttributes<HTMLInputElement>>;
2102
+ } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref">) & RefAttributes<HTMLInputElement>>;
2359
2103
 
2360
2104
  export { mediaQuery }
2361
2105
 
@@ -2619,10 +2363,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
2619
2363
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
2620
2364
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
2621
2365
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
2622
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2623
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2624
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2625
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2366
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2367
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2368
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2369
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2626
2370
  } & {
2627
2371
  firstTextfieldTextBefore: string;
2628
2372
  secondTextfieldTextBefore: string;
@@ -2658,10 +2402,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
2658
2402
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
2659
2403
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
2660
2404
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
2661
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2662
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2663
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2664
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2405
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2406
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2407
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2408
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2665
2409
  } & {
2666
2410
  dividerVariant?: "dash" | undefined;
2667
2411
  dividerIcon?: undefined;
@@ -2697,10 +2441,10 @@ onChangeFirstValue?: BaseCallbackChangeInstance | undefined;
2697
2441
  onChangeSecondValue?: BaseCallbackChangeInstance | undefined;
2698
2442
  onSearchFirstValue?: BaseCallbackKeyboardInstance | undefined;
2699
2443
  onSearchSecondValue?: BaseCallbackKeyboardInstance | undefined;
2700
- onFocusFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2701
- onFocusSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2702
- onBlurFirstTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2703
- onBlurSecondTextfield?: ((event: FocusEvent_2<HTMLInputElement, Element>) => void) | undefined;
2444
+ onFocusFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2445
+ onFocusSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2446
+ onBlurFirstTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2447
+ onBlurSecondTextfield?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2704
2448
  } & {
2705
2449
  dividerIcon?: ReactNode;
2706
2450
  dividerVariant?: "icon" | undefined;
@@ -3097,7 +2841,7 @@ requiredPlacement?: "right" | "left" | undefined;
3097
2841
  optional?: boolean | undefined;
3098
2842
  } & {
3099
2843
  hintText: string;
3100
- hintTrigger?: "click" | "hover" | undefined;
2844
+ hintTrigger?: "hover" | "click" | undefined;
3101
2845
  hintOpened?: boolean | undefined;
3102
2846
  hintView?: string | undefined;
3103
2847
  hintSize?: string | undefined;
@@ -3140,7 +2884,7 @@ requiredPlacement?: "right" | "left" | undefined;
3140
2884
  optional?: boolean | undefined;
3141
2885
  } & {
3142
2886
  hintText: string;
3143
- hintTrigger?: "click" | "hover" | undefined;
2887
+ hintTrigger?: "hover" | "click" | undefined;
3144
2888
  hintOpened?: boolean | undefined;
3145
2889
  hintView?: string | undefined;
3146
2890
  hintSize?: string | undefined;
@@ -3183,7 +2927,7 @@ requiredPlacement?: "right" | "left" | undefined;
3183
2927
  optional?: boolean | undefined;
3184
2928
  } & {
3185
2929
  hintText: string;
3186
- hintTrigger?: "click" | "hover" | undefined;
2930
+ hintTrigger?: "hover" | "click" | undefined;
3187
2931
  hintOpened?: boolean | undefined;
3188
2932
  hintView?: string | undefined;
3189
2933
  hintSize?: string | undefined;
@@ -3226,7 +2970,7 @@ requiredPlacement?: "right" | "left" | undefined;
3226
2970
  optional?: boolean | undefined;
3227
2971
  } & {
3228
2972
  hintText: string;
3229
- hintTrigger?: "click" | "hover" | undefined;
2973
+ hintTrigger?: "hover" | "click" | undefined;
3230
2974
  hintOpened?: boolean | undefined;
3231
2975
  hintView?: string | undefined;
3232
2976
  hintSize?: string | undefined;
@@ -3426,323 +3170,10 @@ height?: undefined;
3426
3170
  width?: undefined;
3427
3171
  } & RefAttributes<HTMLTextAreaElement>))>;
3428
3172
 
3173
+ // Warning: (ae-forgotten-export) The symbol "TextFieldProps_2" needs to be exported by the entry point index.d.ts
3174
+ //
3429
3175
  // @public
3430
- export const TextField: FunctionComponent<PropsType< {
3431
- view: {
3432
- default: PolymorphicClassName;
3433
- negative: PolymorphicClassName;
3434
- };
3435
- size: {
3436
- s: PolymorphicClassName;
3437
- };
3438
- labelPlacement: {
3439
- outer: PolymorphicClassName;
3440
- };
3441
- clear: {
3442
- true: PolymorphicClassName;
3443
- };
3444
- hintView: {
3445
- default: PolymorphicClassName;
3446
- };
3447
- hintSize: {
3448
- m: PolymorphicClassName;
3449
- s: PolymorphicClassName;
3450
- };
3451
- disabled: {
3452
- true: PolymorphicClassName;
3453
- };
3454
- readOnly: {
3455
- true: PolymorphicClassName;
3456
- };
3457
- }> & (({
3458
- size?: string | undefined;
3459
- view?: string | undefined;
3460
- readOnly?: boolean | undefined;
3461
- disabled?: boolean | undefined;
3462
- } & {
3463
- titleCaption?: ReactNode;
3464
- leftHelper?: ReactNode;
3465
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3466
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3467
- textBefore?: string | undefined;
3468
- textAfter?: string | undefined;
3469
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3470
- } & LabelProps & RequiredProps & {
3471
- clear?: boolean | undefined;
3472
- hasDivider?: boolean | undefined;
3473
- } & {
3474
- hintText: string;
3475
- hintTrigger?: "click" | "hover" | undefined;
3476
- hintView?: string | undefined;
3477
- hintSize?: string | undefined;
3478
- hintTargetIcon?: ReactNode;
3479
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
3480
- hintHasArrow?: boolean | undefined;
3481
- hintOffset?: [number, number] | undefined;
3482
- hintWidth?: string | undefined;
3483
- hintContentLeft?: ReactNode;
3484
- } & {
3485
- chips?: undefined;
3486
- onChangeChips?: undefined;
3487
- enumerationType?: "plain" | undefined;
3488
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3489
- chipType?: undefined;
3490
- chipView?: undefined;
3491
- chipValidator?: undefined;
3492
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
3493
- size?: string | undefined;
3494
- view?: string | undefined;
3495
- readOnly?: boolean | undefined;
3496
- disabled?: boolean | undefined;
3497
- } & {
3498
- titleCaption?: ReactNode;
3499
- leftHelper?: ReactNode;
3500
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3501
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3502
- textBefore?: string | undefined;
3503
- textAfter?: string | undefined;
3504
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3505
- } & LabelProps & RequiredProps & {
3506
- clear?: boolean | undefined;
3507
- hasDivider?: boolean | undefined;
3508
- } & {
3509
- hintText: string;
3510
- hintTrigger?: "click" | "hover" | undefined;
3511
- hintView?: string | undefined;
3512
- hintSize?: string | undefined;
3513
- hintTargetIcon?: ReactNode;
3514
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
3515
- hintHasArrow?: boolean | undefined;
3516
- hintOffset?: [number, number] | undefined;
3517
- hintWidth?: string | undefined;
3518
- hintContentLeft?: ReactNode;
3519
- } & {
3520
- enumerationType: "chip";
3521
- onSearch?: undefined;
3522
- chips?: TextFieldPrimitiveValue[] | undefined;
3523
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
3524
- chipType?: "default" | "text" | undefined;
3525
- chipView?: string | undefined;
3526
- chipValidator?: ((value: string) => {
3527
- view?: string | undefined;
3528
- }) | undefined;
3529
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
3530
- size?: string | undefined;
3531
- view?: string | undefined;
3532
- readOnly?: boolean | undefined;
3533
- disabled?: boolean | undefined;
3534
- } & {
3535
- titleCaption?: ReactNode;
3536
- leftHelper?: ReactNode;
3537
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3538
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3539
- textBefore?: string | undefined;
3540
- textAfter?: string | undefined;
3541
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3542
- } & LabelProps & RequiredProps & {
3543
- clear?: boolean | undefined;
3544
- hasDivider?: boolean | undefined;
3545
- } & {
3546
- hintTrigger?: undefined;
3547
- hintText?: undefined;
3548
- hintView?: undefined;
3549
- hintSize?: undefined;
3550
- hintTargetIcon?: undefined;
3551
- hintPlacement?: undefined;
3552
- hintHasArrow?: undefined;
3553
- hintOffset?: undefined;
3554
- hintWidth?: undefined;
3555
- hintContentLeft?: undefined;
3556
- } & {
3557
- chips?: undefined;
3558
- onChangeChips?: undefined;
3559
- enumerationType?: "plain" | undefined;
3560
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3561
- chipType?: undefined;
3562
- chipView?: undefined;
3563
- chipValidator?: undefined;
3564
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
3565
- size?: string | undefined;
3566
- view?: string | undefined;
3567
- readOnly?: boolean | undefined;
3568
- disabled?: boolean | undefined;
3569
- } & {
3570
- titleCaption?: ReactNode;
3571
- leftHelper?: ReactNode;
3572
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3573
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3574
- textBefore?: string | undefined;
3575
- textAfter?: string | undefined;
3576
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3577
- } & LabelProps & RequiredProps & {
3578
- clear?: boolean | undefined;
3579
- hasDivider?: boolean | undefined;
3580
- } & {
3581
- hintTrigger?: undefined;
3582
- hintText?: undefined;
3583
- hintView?: undefined;
3584
- hintSize?: undefined;
3585
- hintTargetIcon?: undefined;
3586
- hintPlacement?: undefined;
3587
- hintHasArrow?: undefined;
3588
- hintOffset?: undefined;
3589
- hintWidth?: undefined;
3590
- hintContentLeft?: undefined;
3591
- } & {
3592
- enumerationType: "chip";
3593
- onSearch?: undefined;
3594
- chips?: TextFieldPrimitiveValue[] | undefined;
3595
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
3596
- chipType?: "default" | "text" | undefined;
3597
- chipView?: string | undefined;
3598
- chipValidator?: ((value: string) => {
3599
- view?: string | undefined;
3600
- }) | undefined;
3601
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
3602
- size?: string | undefined;
3603
- view?: string | undefined;
3604
- readOnly?: boolean | undefined;
3605
- disabled?: boolean | undefined;
3606
- } & {
3607
- titleCaption?: ReactNode;
3608
- leftHelper?: ReactNode;
3609
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3610
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3611
- textBefore?: string | undefined;
3612
- textAfter?: string | undefined;
3613
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3614
- } & LabelProps & RequiredProps & {
3615
- clear?: false | undefined;
3616
- hasDivider?: undefined;
3617
- } & {
3618
- hintText: string;
3619
- hintTrigger?: "click" | "hover" | undefined;
3620
- hintView?: string | undefined;
3621
- hintSize?: string | undefined;
3622
- hintTargetIcon?: ReactNode;
3623
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
3624
- hintHasArrow?: boolean | undefined;
3625
- hintOffset?: [number, number] | undefined;
3626
- hintWidth?: string | undefined;
3627
- hintContentLeft?: ReactNode;
3628
- } & {
3629
- chips?: undefined;
3630
- onChangeChips?: undefined;
3631
- enumerationType?: "plain" | undefined;
3632
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3633
- chipType?: undefined;
3634
- chipView?: undefined;
3635
- chipValidator?: undefined;
3636
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
3637
- size?: string | undefined;
3638
- view?: string | undefined;
3639
- readOnly?: boolean | undefined;
3640
- disabled?: boolean | undefined;
3641
- } & {
3642
- titleCaption?: ReactNode;
3643
- leftHelper?: ReactNode;
3644
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3645
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3646
- textBefore?: string | undefined;
3647
- textAfter?: string | undefined;
3648
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3649
- } & LabelProps & RequiredProps & {
3650
- clear?: false | undefined;
3651
- hasDivider?: undefined;
3652
- } & {
3653
- hintText: string;
3654
- hintTrigger?: "click" | "hover" | undefined;
3655
- hintView?: string | undefined;
3656
- hintSize?: string | undefined;
3657
- hintTargetIcon?: ReactNode;
3658
- hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
3659
- hintHasArrow?: boolean | undefined;
3660
- hintOffset?: [number, number] | undefined;
3661
- hintWidth?: string | undefined;
3662
- hintContentLeft?: ReactNode;
3663
- } & {
3664
- enumerationType: "chip";
3665
- onSearch?: undefined;
3666
- chips?: TextFieldPrimitiveValue[] | undefined;
3667
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
3668
- chipType?: "default" | "text" | undefined;
3669
- chipView?: string | undefined;
3670
- chipValidator?: ((value: string) => {
3671
- view?: string | undefined;
3672
- }) | undefined;
3673
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
3674
- size?: string | undefined;
3675
- view?: string | undefined;
3676
- readOnly?: boolean | undefined;
3677
- disabled?: boolean | undefined;
3678
- } & {
3679
- titleCaption?: ReactNode;
3680
- leftHelper?: ReactNode;
3681
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3682
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3683
- textBefore?: string | undefined;
3684
- textAfter?: string | undefined;
3685
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3686
- } & LabelProps & RequiredProps & {
3687
- clear?: false | undefined;
3688
- hasDivider?: undefined;
3689
- } & {
3690
- hintTrigger?: undefined;
3691
- hintText?: undefined;
3692
- hintView?: undefined;
3693
- hintSize?: undefined;
3694
- hintTargetIcon?: undefined;
3695
- hintPlacement?: undefined;
3696
- hintHasArrow?: undefined;
3697
- hintOffset?: undefined;
3698
- hintWidth?: undefined;
3699
- hintContentLeft?: undefined;
3700
- } & {
3701
- chips?: undefined;
3702
- onChangeChips?: undefined;
3703
- enumerationType?: "plain" | undefined;
3704
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3705
- chipType?: undefined;
3706
- chipView?: undefined;
3707
- chipValidator?: undefined;
3708
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
3709
- size?: string | undefined;
3710
- view?: string | undefined;
3711
- readOnly?: boolean | undefined;
3712
- disabled?: boolean | undefined;
3713
- } & {
3714
- titleCaption?: ReactNode;
3715
- leftHelper?: ReactNode;
3716
- contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3717
- contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
3718
- textBefore?: string | undefined;
3719
- textAfter?: string | undefined;
3720
- onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
3721
- } & LabelProps & RequiredProps & {
3722
- clear?: false | undefined;
3723
- hasDivider?: undefined;
3724
- } & {
3725
- hintTrigger?: undefined;
3726
- hintText?: undefined;
3727
- hintView?: undefined;
3728
- hintSize?: undefined;
3729
- hintTargetIcon?: undefined;
3730
- hintPlacement?: undefined;
3731
- hintHasArrow?: undefined;
3732
- hintOffset?: undefined;
3733
- hintWidth?: undefined;
3734
- hintContentLeft?: undefined;
3735
- } & {
3736
- enumerationType: "chip";
3737
- onSearch?: undefined;
3738
- chips?: TextFieldPrimitiveValue[] | undefined;
3739
- onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
3740
- chipType?: "default" | "text" | undefined;
3741
- chipView?: string | undefined;
3742
- chipValidator?: ((value: string) => {
3743
- view?: string | undefined;
3744
- }) | undefined;
3745
- } & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>))>;
3176
+ export const TextField: (props: TextFieldProps_2 & React_2.RefAttributes<HTMLInputElement>) => React_2.ReactElement<any, string | React_2.JSXElementConstructor<any>> | null;
3746
3177
 
3747
3178
  export { TextFieldProps }
3748
3179