@salutejs/sdds-cs 0.232.1-canary.1705.12885562854.0 → 0.233.0-canary.1706.12883718367.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/sdds-cs.api.md +35 -600
- package/components/Autocomplete/Autocomplete.d.ts +80 -66
- package/components/Autocomplete/Autocomplete.js +11 -2
- package/components/Combobox/Combobox.d.ts +734 -25
- package/components/Dropdown/Dropdown.config.d.ts +3 -0
- package/components/Dropdown/Dropdown.config.js +7 -4
- package/components/Dropdown/Dropdown.d.ts +3 -0
- package/components/Mask/Mask.d.ts +21 -13
- package/components/Select/Select.d.ts +130 -1
- package/components/Tabs/TabItem.d.ts +2 -2
- package/components/TextArea/TextArea.d.ts +4 -4
- package/components/TextField/TextField.d.ts +83 -69
- package/components/TextField/TextField.js +10 -1
- package/emotion/cjs/components/Autocomplete/Autocomplete.js +11 -2
- package/emotion/cjs/components/Dropdown/Dropdown.config.js +7 -4
- package/emotion/cjs/components/Dropdown/Dropdown.stories.tsx +3 -2
- package/emotion/cjs/components/TextField/TextField.js +10 -1
- package/emotion/es/components/Autocomplete/Autocomplete.js +10 -2
- package/emotion/es/components/Dropdown/Dropdown.config.js +7 -4
- package/emotion/es/components/Dropdown/Dropdown.stories.tsx +3 -2
- package/emotion/es/components/TextField/TextField.js +10 -2
- package/es/components/Autocomplete/Autocomplete.js +10 -2
- package/es/components/Dropdown/Dropdown.config.js +7 -4
- package/es/components/TextField/TextField.js +10 -2
- package/package.json +6 -6
package/api/sdds-cs.api.md
CHANGED
@@ -85,6 +85,7 @@ import { DatePickerRangeProps } from '@salutejs/plasma-new-hope/styled-component
|
|
85
85
|
import { datePickerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
86
86
|
import { DatePickerVariationProps } from '@salutejs/plasma-new-hope/types/components/DatePicker/DatePickerBase.types';
|
87
87
|
import type { DistributiveOmit } from '@salutejs/plasma-new-hope';
|
88
|
+
import { DistributiveOmit as DistributiveOmit_2 } from '@salutejs/plasma-new-hope/styled-components';
|
88
89
|
import type { DistributivePick } from '@salutejs/plasma-new-hope';
|
89
90
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
90
91
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -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:
|
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< {
|
@@ -1486,7 +1223,10 @@ export { DrawerProps }
|
|
1486
1223
|
// @public (undocumented)
|
1487
1224
|
export const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewProps<T>, "size" | "view"> & Pick<PropsType< {
|
1488
1225
|
size: {
|
1226
|
+
l: PolymorphicClassName;
|
1227
|
+
m: PolymorphicClassName;
|
1489
1228
|
s: PolymorphicClassName;
|
1229
|
+
xs: PolymorphicClassName;
|
1490
1230
|
};
|
1491
1231
|
view: {
|
1492
1232
|
default: PolymorphicClassName;
|
@@ -1848,7 +1588,7 @@ true: PolymorphicClassName;
|
|
1848
1588
|
export type LinkProps = typeof LinkComponent;
|
1849
1589
|
|
1850
1590
|
// @public (undocumented)
|
1851
|
-
export const Mask: ForwardRefExoticComponent<(Omit<PropsType< {
|
1591
|
+
export const Mask: ForwardRefExoticComponent<(Omit<Omit<PropsType< {
|
1852
1592
|
view: {
|
1853
1593
|
default: PolymorphicClassName;
|
1854
1594
|
negative: PolymorphicClassName;
|
@@ -1893,10 +1633,11 @@ clear?: boolean | undefined;
|
|
1893
1633
|
hasDivider?: boolean | undefined;
|
1894
1634
|
} & {
|
1895
1635
|
hintText: string;
|
1896
|
-
hintTrigger?: "
|
1636
|
+
hintTrigger?: "hover" | "click" | undefined;
|
1897
1637
|
hintView?: string | undefined;
|
1898
1638
|
hintSize?: string | undefined;
|
1899
1639
|
hintTargetIcon?: ReactNode;
|
1640
|
+
hintTargetPlacement?: "outer" | "inner" | undefined;
|
1900
1641
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
1901
1642
|
hintHasArrow?: boolean | undefined;
|
1902
1643
|
hintOffset?: [number, number] | undefined;
|
@@ -1910,7 +1651,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
1910
1651
|
chipType?: undefined;
|
1911
1652
|
chipView?: undefined;
|
1912
1653
|
chipValidator?: undefined;
|
1913
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1654
|
+
} & 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< {
|
1914
1655
|
view: {
|
1915
1656
|
default: PolymorphicClassName;
|
1916
1657
|
negative: PolymorphicClassName;
|
@@ -1955,10 +1696,11 @@ clear?: boolean | undefined;
|
|
1955
1696
|
hasDivider?: boolean | undefined;
|
1956
1697
|
} & {
|
1957
1698
|
hintText: string;
|
1958
|
-
hintTrigger?: "
|
1699
|
+
hintTrigger?: "hover" | "click" | undefined;
|
1959
1700
|
hintView?: string | undefined;
|
1960
1701
|
hintSize?: string | undefined;
|
1961
1702
|
hintTargetIcon?: ReactNode;
|
1703
|
+
hintTargetPlacement?: "outer" | "inner" | undefined;
|
1962
1704
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
1963
1705
|
hintHasArrow?: boolean | undefined;
|
1964
1706
|
hintOffset?: [number, number] | undefined;
|
@@ -1974,7 +1716,7 @@ chipView?: string | undefined;
|
|
1974
1716
|
chipValidator?: ((value: string) => {
|
1975
1717
|
view?: string | undefined;
|
1976
1718
|
}) | undefined;
|
1977
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1719
|
+
} & 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< {
|
1978
1720
|
view: {
|
1979
1721
|
default: PolymorphicClassName;
|
1980
1722
|
negative: PolymorphicClassName;
|
@@ -2023,6 +1765,7 @@ hintText?: undefined;
|
|
2023
1765
|
hintView?: undefined;
|
2024
1766
|
hintSize?: undefined;
|
2025
1767
|
hintTargetIcon?: undefined;
|
1768
|
+
hintTargetPlacement?: undefined;
|
2026
1769
|
hintPlacement?: undefined;
|
2027
1770
|
hintHasArrow?: undefined;
|
2028
1771
|
hintOffset?: undefined;
|
@@ -2036,7 +1779,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
2036
1779
|
chipType?: undefined;
|
2037
1780
|
chipView?: undefined;
|
2038
1781
|
chipValidator?: undefined;
|
2039
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1782
|
+
} & 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< {
|
2040
1783
|
view: {
|
2041
1784
|
default: PolymorphicClassName;
|
2042
1785
|
negative: PolymorphicClassName;
|
@@ -2085,6 +1828,7 @@ hintText?: undefined;
|
|
2085
1828
|
hintView?: undefined;
|
2086
1829
|
hintSize?: undefined;
|
2087
1830
|
hintTargetIcon?: undefined;
|
1831
|
+
hintTargetPlacement?: undefined;
|
2088
1832
|
hintPlacement?: undefined;
|
2089
1833
|
hintHasArrow?: undefined;
|
2090
1834
|
hintOffset?: undefined;
|
@@ -2100,7 +1844,7 @@ chipView?: string | undefined;
|
|
2100
1844
|
chipValidator?: ((value: string) => {
|
2101
1845
|
view?: string | undefined;
|
2102
1846
|
}) | undefined;
|
2103
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1847
|
+
} & 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< {
|
2104
1848
|
view: {
|
2105
1849
|
default: PolymorphicClassName;
|
2106
1850
|
negative: PolymorphicClassName;
|
@@ -2145,10 +1889,11 @@ clear?: false | undefined;
|
|
2145
1889
|
hasDivider?: undefined;
|
2146
1890
|
} & {
|
2147
1891
|
hintText: string;
|
2148
|
-
hintTrigger?: "
|
1892
|
+
hintTrigger?: "hover" | "click" | undefined;
|
2149
1893
|
hintView?: string | undefined;
|
2150
1894
|
hintSize?: string | undefined;
|
2151
1895
|
hintTargetIcon?: ReactNode;
|
1896
|
+
hintTargetPlacement?: "outer" | "inner" | undefined;
|
2152
1897
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
2153
1898
|
hintHasArrow?: boolean | undefined;
|
2154
1899
|
hintOffset?: [number, number] | undefined;
|
@@ -2162,7 +1907,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
2162
1907
|
chipType?: undefined;
|
2163
1908
|
chipView?: undefined;
|
2164
1909
|
chipValidator?: undefined;
|
2165
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1910
|
+
} & 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< {
|
2166
1911
|
view: {
|
2167
1912
|
default: PolymorphicClassName;
|
2168
1913
|
negative: PolymorphicClassName;
|
@@ -2207,10 +1952,11 @@ clear?: false | undefined;
|
|
2207
1952
|
hasDivider?: undefined;
|
2208
1953
|
} & {
|
2209
1954
|
hintText: string;
|
2210
|
-
hintTrigger?: "
|
1955
|
+
hintTrigger?: "hover" | "click" | undefined;
|
2211
1956
|
hintView?: string | undefined;
|
2212
1957
|
hintSize?: string | undefined;
|
2213
1958
|
hintTargetIcon?: ReactNode;
|
1959
|
+
hintTargetPlacement?: "outer" | "inner" | undefined;
|
2214
1960
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
2215
1961
|
hintHasArrow?: boolean | undefined;
|
2216
1962
|
hintOffset?: [number, number] | undefined;
|
@@ -2226,7 +1972,7 @@ chipView?: string | undefined;
|
|
2226
1972
|
chipValidator?: ((value: string) => {
|
2227
1973
|
view?: string | undefined;
|
2228
1974
|
}) | undefined;
|
2229
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1975
|
+
} & 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< {
|
2230
1976
|
view: {
|
2231
1977
|
default: PolymorphicClassName;
|
2232
1978
|
negative: PolymorphicClassName;
|
@@ -2275,6 +2021,7 @@ hintText?: undefined;
|
|
2275
2021
|
hintView?: undefined;
|
2276
2022
|
hintSize?: undefined;
|
2277
2023
|
hintTargetIcon?: undefined;
|
2024
|
+
hintTargetPlacement?: undefined;
|
2278
2025
|
hintPlacement?: undefined;
|
2279
2026
|
hintHasArrow?: undefined;
|
2280
2027
|
hintOffset?: undefined;
|
@@ -2288,7 +2035,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
2288
2035
|
chipType?: undefined;
|
2289
2036
|
chipView?: undefined;
|
2290
2037
|
chipValidator?: undefined;
|
2291
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
2038
|
+
} & 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< {
|
2292
2039
|
view: {
|
2293
2040
|
default: PolymorphicClassName;
|
2294
2041
|
negative: PolymorphicClassName;
|
@@ -2337,6 +2084,7 @@ hintText?: undefined;
|
|
2337
2084
|
hintView?: undefined;
|
2338
2085
|
hintSize?: undefined;
|
2339
2086
|
hintTargetIcon?: undefined;
|
2087
|
+
hintTargetPlacement?: undefined;
|
2340
2088
|
hintPlacement?: undefined;
|
2341
2089
|
hintHasArrow?: undefined;
|
2342
2090
|
hintOffset?: undefined;
|
@@ -2352,7 +2100,7 @@ chipView?: string | undefined;
|
|
2352
2100
|
chipValidator?: ((value: string) => {
|
2353
2101
|
view?: string | undefined;
|
2354
2102
|
}) | undefined;
|
2355
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref">) & RefAttributes<HTMLInputElement>>;
|
2103
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>, "hintText" | "hintTrigger" | "hintView" | "hintSize" | "hintTargetIcon" | "hintTargetPlacement" | "hintPlacement" | "hintHasArrow" | "hintOffset" | "hintWidth" | "hintContentLeft"> & RefAttributes<HTMLInputElement> & MaskProps, "ref">) & RefAttributes<HTMLInputElement>>;
|
2356
2104
|
|
2357
2105
|
export { mediaQuery }
|
2358
2106
|
|
@@ -3094,7 +2842,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
3094
2842
|
optional?: boolean | undefined;
|
3095
2843
|
} & {
|
3096
2844
|
hintText: string;
|
3097
|
-
hintTrigger?: "
|
2845
|
+
hintTrigger?: "hover" | "click" | undefined;
|
3098
2846
|
hintOpened?: boolean | undefined;
|
3099
2847
|
hintView?: string | undefined;
|
3100
2848
|
hintSize?: string | undefined;
|
@@ -3137,7 +2885,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
3137
2885
|
optional?: boolean | undefined;
|
3138
2886
|
} & {
|
3139
2887
|
hintText: string;
|
3140
|
-
hintTrigger?: "
|
2888
|
+
hintTrigger?: "hover" | "click" | undefined;
|
3141
2889
|
hintOpened?: boolean | undefined;
|
3142
2890
|
hintView?: string | undefined;
|
3143
2891
|
hintSize?: string | undefined;
|
@@ -3180,7 +2928,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
3180
2928
|
optional?: boolean | undefined;
|
3181
2929
|
} & {
|
3182
2930
|
hintText: string;
|
3183
|
-
hintTrigger?: "
|
2931
|
+
hintTrigger?: "hover" | "click" | undefined;
|
3184
2932
|
hintOpened?: boolean | undefined;
|
3185
2933
|
hintView?: string | undefined;
|
3186
2934
|
hintSize?: string | undefined;
|
@@ -3223,7 +2971,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
3223
2971
|
optional?: boolean | undefined;
|
3224
2972
|
} & {
|
3225
2973
|
hintText: string;
|
3226
|
-
hintTrigger?: "
|
2974
|
+
hintTrigger?: "hover" | "click" | undefined;
|
3227
2975
|
hintOpened?: boolean | undefined;
|
3228
2976
|
hintView?: string | undefined;
|
3229
2977
|
hintSize?: string | undefined;
|
@@ -3423,323 +3171,10 @@ height?: undefined;
|
|
3423
3171
|
width?: undefined;
|
3424
3172
|
} & RefAttributes<HTMLTextAreaElement>))>;
|
3425
3173
|
|
3174
|
+
// Warning: (ae-forgotten-export) The symbol "TextFieldProps_2" needs to be exported by the entry point index.d.ts
|
3175
|
+
//
|
3426
3176
|
// @public
|
3427
|
-
export const TextField:
|
3428
|
-
view: {
|
3429
|
-
default: PolymorphicClassName;
|
3430
|
-
negative: PolymorphicClassName;
|
3431
|
-
};
|
3432
|
-
size: {
|
3433
|
-
s: PolymorphicClassName;
|
3434
|
-
};
|
3435
|
-
labelPlacement: {
|
3436
|
-
outer: PolymorphicClassName;
|
3437
|
-
};
|
3438
|
-
clear: {
|
3439
|
-
true: PolymorphicClassName;
|
3440
|
-
};
|
3441
|
-
hintView: {
|
3442
|
-
default: PolymorphicClassName;
|
3443
|
-
};
|
3444
|
-
hintSize: {
|
3445
|
-
m: PolymorphicClassName;
|
3446
|
-
s: PolymorphicClassName;
|
3447
|
-
};
|
3448
|
-
disabled: {
|
3449
|
-
true: PolymorphicClassName;
|
3450
|
-
};
|
3451
|
-
readOnly: {
|
3452
|
-
true: PolymorphicClassName;
|
3453
|
-
};
|
3454
|
-
}> & (({
|
3455
|
-
size?: string | undefined;
|
3456
|
-
view?: string | undefined;
|
3457
|
-
readOnly?: boolean | undefined;
|
3458
|
-
disabled?: boolean | undefined;
|
3459
|
-
} & {
|
3460
|
-
titleCaption?: ReactNode;
|
3461
|
-
leftHelper?: ReactNode;
|
3462
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3463
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3464
|
-
textBefore?: string | undefined;
|
3465
|
-
textAfter?: string | undefined;
|
3466
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3467
|
-
} & LabelProps & RequiredProps & {
|
3468
|
-
clear?: boolean | undefined;
|
3469
|
-
hasDivider?: boolean | undefined;
|
3470
|
-
} & {
|
3471
|
-
hintText: string;
|
3472
|
-
hintTrigger?: "click" | "hover" | undefined;
|
3473
|
-
hintView?: string | undefined;
|
3474
|
-
hintSize?: string | undefined;
|
3475
|
-
hintTargetIcon?: ReactNode;
|
3476
|
-
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
3477
|
-
hintHasArrow?: boolean | undefined;
|
3478
|
-
hintOffset?: [number, number] | undefined;
|
3479
|
-
hintWidth?: string | undefined;
|
3480
|
-
hintContentLeft?: ReactNode;
|
3481
|
-
} & {
|
3482
|
-
chips?: undefined;
|
3483
|
-
onChangeChips?: undefined;
|
3484
|
-
enumerationType?: "plain" | undefined;
|
3485
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3486
|
-
chipType?: undefined;
|
3487
|
-
chipView?: undefined;
|
3488
|
-
chipValidator?: undefined;
|
3489
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
|
3490
|
-
size?: string | undefined;
|
3491
|
-
view?: string | undefined;
|
3492
|
-
readOnly?: boolean | undefined;
|
3493
|
-
disabled?: boolean | undefined;
|
3494
|
-
} & {
|
3495
|
-
titleCaption?: ReactNode;
|
3496
|
-
leftHelper?: ReactNode;
|
3497
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3498
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3499
|
-
textBefore?: string | undefined;
|
3500
|
-
textAfter?: string | undefined;
|
3501
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3502
|
-
} & LabelProps & RequiredProps & {
|
3503
|
-
clear?: boolean | undefined;
|
3504
|
-
hasDivider?: boolean | undefined;
|
3505
|
-
} & {
|
3506
|
-
hintText: string;
|
3507
|
-
hintTrigger?: "click" | "hover" | undefined;
|
3508
|
-
hintView?: string | undefined;
|
3509
|
-
hintSize?: string | undefined;
|
3510
|
-
hintTargetIcon?: ReactNode;
|
3511
|
-
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
3512
|
-
hintHasArrow?: boolean | undefined;
|
3513
|
-
hintOffset?: [number, number] | undefined;
|
3514
|
-
hintWidth?: string | undefined;
|
3515
|
-
hintContentLeft?: ReactNode;
|
3516
|
-
} & {
|
3517
|
-
enumerationType: "chip";
|
3518
|
-
onSearch?: undefined;
|
3519
|
-
chips?: TextFieldPrimitiveValue[] | undefined;
|
3520
|
-
onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
|
3521
|
-
chipType?: "default" | "text" | undefined;
|
3522
|
-
chipView?: string | undefined;
|
3523
|
-
chipValidator?: ((value: string) => {
|
3524
|
-
view?: string | undefined;
|
3525
|
-
}) | undefined;
|
3526
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
|
3527
|
-
size?: string | undefined;
|
3528
|
-
view?: string | undefined;
|
3529
|
-
readOnly?: boolean | undefined;
|
3530
|
-
disabled?: boolean | undefined;
|
3531
|
-
} & {
|
3532
|
-
titleCaption?: ReactNode;
|
3533
|
-
leftHelper?: ReactNode;
|
3534
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3535
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3536
|
-
textBefore?: string | undefined;
|
3537
|
-
textAfter?: string | undefined;
|
3538
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3539
|
-
} & LabelProps & RequiredProps & {
|
3540
|
-
clear?: boolean | undefined;
|
3541
|
-
hasDivider?: boolean | undefined;
|
3542
|
-
} & {
|
3543
|
-
hintTrigger?: undefined;
|
3544
|
-
hintText?: undefined;
|
3545
|
-
hintView?: undefined;
|
3546
|
-
hintSize?: undefined;
|
3547
|
-
hintTargetIcon?: undefined;
|
3548
|
-
hintPlacement?: undefined;
|
3549
|
-
hintHasArrow?: undefined;
|
3550
|
-
hintOffset?: undefined;
|
3551
|
-
hintWidth?: undefined;
|
3552
|
-
hintContentLeft?: undefined;
|
3553
|
-
} & {
|
3554
|
-
chips?: undefined;
|
3555
|
-
onChangeChips?: undefined;
|
3556
|
-
enumerationType?: "plain" | undefined;
|
3557
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3558
|
-
chipType?: undefined;
|
3559
|
-
chipView?: undefined;
|
3560
|
-
chipValidator?: undefined;
|
3561
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
|
3562
|
-
size?: string | undefined;
|
3563
|
-
view?: string | undefined;
|
3564
|
-
readOnly?: boolean | undefined;
|
3565
|
-
disabled?: boolean | undefined;
|
3566
|
-
} & {
|
3567
|
-
titleCaption?: ReactNode;
|
3568
|
-
leftHelper?: ReactNode;
|
3569
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3570
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3571
|
-
textBefore?: string | undefined;
|
3572
|
-
textAfter?: string | undefined;
|
3573
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3574
|
-
} & LabelProps & RequiredProps & {
|
3575
|
-
clear?: boolean | undefined;
|
3576
|
-
hasDivider?: boolean | undefined;
|
3577
|
-
} & {
|
3578
|
-
hintTrigger?: undefined;
|
3579
|
-
hintText?: undefined;
|
3580
|
-
hintView?: undefined;
|
3581
|
-
hintSize?: undefined;
|
3582
|
-
hintTargetIcon?: undefined;
|
3583
|
-
hintPlacement?: undefined;
|
3584
|
-
hintHasArrow?: undefined;
|
3585
|
-
hintOffset?: undefined;
|
3586
|
-
hintWidth?: undefined;
|
3587
|
-
hintContentLeft?: undefined;
|
3588
|
-
} & {
|
3589
|
-
enumerationType: "chip";
|
3590
|
-
onSearch?: undefined;
|
3591
|
-
chips?: TextFieldPrimitiveValue[] | undefined;
|
3592
|
-
onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
|
3593
|
-
chipType?: "default" | "text" | undefined;
|
3594
|
-
chipView?: string | undefined;
|
3595
|
-
chipValidator?: ((value: string) => {
|
3596
|
-
view?: string | undefined;
|
3597
|
-
}) | undefined;
|
3598
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
|
3599
|
-
size?: string | undefined;
|
3600
|
-
view?: string | undefined;
|
3601
|
-
readOnly?: boolean | undefined;
|
3602
|
-
disabled?: boolean | undefined;
|
3603
|
-
} & {
|
3604
|
-
titleCaption?: ReactNode;
|
3605
|
-
leftHelper?: ReactNode;
|
3606
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3607
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3608
|
-
textBefore?: string | undefined;
|
3609
|
-
textAfter?: string | undefined;
|
3610
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3611
|
-
} & LabelProps & RequiredProps & {
|
3612
|
-
clear?: false | undefined;
|
3613
|
-
hasDivider?: undefined;
|
3614
|
-
} & {
|
3615
|
-
hintText: string;
|
3616
|
-
hintTrigger?: "click" | "hover" | undefined;
|
3617
|
-
hintView?: string | undefined;
|
3618
|
-
hintSize?: string | undefined;
|
3619
|
-
hintTargetIcon?: ReactNode;
|
3620
|
-
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
3621
|
-
hintHasArrow?: boolean | undefined;
|
3622
|
-
hintOffset?: [number, number] | undefined;
|
3623
|
-
hintWidth?: string | undefined;
|
3624
|
-
hintContentLeft?: ReactNode;
|
3625
|
-
} & {
|
3626
|
-
chips?: undefined;
|
3627
|
-
onChangeChips?: undefined;
|
3628
|
-
enumerationType?: "plain" | undefined;
|
3629
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3630
|
-
chipType?: undefined;
|
3631
|
-
chipView?: undefined;
|
3632
|
-
chipValidator?: undefined;
|
3633
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
|
3634
|
-
size?: string | undefined;
|
3635
|
-
view?: string | undefined;
|
3636
|
-
readOnly?: boolean | undefined;
|
3637
|
-
disabled?: boolean | undefined;
|
3638
|
-
} & {
|
3639
|
-
titleCaption?: ReactNode;
|
3640
|
-
leftHelper?: ReactNode;
|
3641
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3642
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3643
|
-
textBefore?: string | undefined;
|
3644
|
-
textAfter?: string | undefined;
|
3645
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3646
|
-
} & LabelProps & RequiredProps & {
|
3647
|
-
clear?: false | undefined;
|
3648
|
-
hasDivider?: undefined;
|
3649
|
-
} & {
|
3650
|
-
hintText: string;
|
3651
|
-
hintTrigger?: "click" | "hover" | undefined;
|
3652
|
-
hintView?: string | undefined;
|
3653
|
-
hintSize?: string | undefined;
|
3654
|
-
hintTargetIcon?: ReactNode;
|
3655
|
-
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
3656
|
-
hintHasArrow?: boolean | undefined;
|
3657
|
-
hintOffset?: [number, number] | undefined;
|
3658
|
-
hintWidth?: string | undefined;
|
3659
|
-
hintContentLeft?: ReactNode;
|
3660
|
-
} & {
|
3661
|
-
enumerationType: "chip";
|
3662
|
-
onSearch?: undefined;
|
3663
|
-
chips?: TextFieldPrimitiveValue[] | undefined;
|
3664
|
-
onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
|
3665
|
-
chipType?: "default" | "text" | undefined;
|
3666
|
-
chipView?: string | undefined;
|
3667
|
-
chipValidator?: ((value: string) => {
|
3668
|
-
view?: string | undefined;
|
3669
|
-
}) | undefined;
|
3670
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
|
3671
|
-
size?: string | undefined;
|
3672
|
-
view?: string | undefined;
|
3673
|
-
readOnly?: boolean | undefined;
|
3674
|
-
disabled?: boolean | undefined;
|
3675
|
-
} & {
|
3676
|
-
titleCaption?: ReactNode;
|
3677
|
-
leftHelper?: ReactNode;
|
3678
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3679
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3680
|
-
textBefore?: string | undefined;
|
3681
|
-
textAfter?: string | undefined;
|
3682
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3683
|
-
} & LabelProps & RequiredProps & {
|
3684
|
-
clear?: false | undefined;
|
3685
|
-
hasDivider?: undefined;
|
3686
|
-
} & {
|
3687
|
-
hintTrigger?: undefined;
|
3688
|
-
hintText?: undefined;
|
3689
|
-
hintView?: undefined;
|
3690
|
-
hintSize?: undefined;
|
3691
|
-
hintTargetIcon?: undefined;
|
3692
|
-
hintPlacement?: undefined;
|
3693
|
-
hintHasArrow?: undefined;
|
3694
|
-
hintOffset?: undefined;
|
3695
|
-
hintWidth?: undefined;
|
3696
|
-
hintContentLeft?: undefined;
|
3697
|
-
} & {
|
3698
|
-
chips?: undefined;
|
3699
|
-
onChangeChips?: undefined;
|
3700
|
-
enumerationType?: "plain" | undefined;
|
3701
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3702
|
-
chipType?: undefined;
|
3703
|
-
chipView?: undefined;
|
3704
|
-
chipValidator?: undefined;
|
3705
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>) | ({
|
3706
|
-
size?: string | undefined;
|
3707
|
-
view?: string | undefined;
|
3708
|
-
readOnly?: boolean | undefined;
|
3709
|
-
disabled?: boolean | undefined;
|
3710
|
-
} & {
|
3711
|
-
titleCaption?: ReactNode;
|
3712
|
-
leftHelper?: ReactNode;
|
3713
|
-
contentLeft?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3714
|
-
contentRight?: ReactElement<any, string | JSXElementConstructor<any>> | undefined;
|
3715
|
-
textBefore?: string | undefined;
|
3716
|
-
textAfter?: string | undefined;
|
3717
|
-
onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefined) => void) | undefined;
|
3718
|
-
} & LabelProps & RequiredProps & {
|
3719
|
-
clear?: false | undefined;
|
3720
|
-
hasDivider?: undefined;
|
3721
|
-
} & {
|
3722
|
-
hintTrigger?: undefined;
|
3723
|
-
hintText?: undefined;
|
3724
|
-
hintView?: undefined;
|
3725
|
-
hintSize?: undefined;
|
3726
|
-
hintTargetIcon?: undefined;
|
3727
|
-
hintPlacement?: undefined;
|
3728
|
-
hintHasArrow?: undefined;
|
3729
|
-
hintOffset?: undefined;
|
3730
|
-
hintWidth?: undefined;
|
3731
|
-
hintContentLeft?: undefined;
|
3732
|
-
} & {
|
3733
|
-
enumerationType: "chip";
|
3734
|
-
onSearch?: undefined;
|
3735
|
-
chips?: TextFieldPrimitiveValue[] | undefined;
|
3736
|
-
onChangeChips?: ((value: TextFieldPrimitiveValue[]) => void) | undefined;
|
3737
|
-
chipType?: "default" | "text" | undefined;
|
3738
|
-
chipView?: string | undefined;
|
3739
|
-
chipValidator?: ((value: string) => {
|
3740
|
-
view?: string | undefined;
|
3741
|
-
}) | undefined;
|
3742
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement>))>;
|
3177
|
+
export const TextField: (props: TextFieldProps_2 & React_2.RefAttributes<HTMLInputElement>) => React_2.ReactElement<any, string | React_2.JSXElementConstructor<any>> | null;
|
3743
3178
|
|
3744
3179
|
export { TextFieldProps }
|
3745
3180
|
|