@salutejs/sdds-cs 0.233.0-canary.1706.12883718367.0 → 0.233.1-canary.1701.12886851599.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/sdds-cs.api.md +600 -35
- package/components/Autocomplete/Autocomplete.d.ts +66 -80
- package/components/Autocomplete/Autocomplete.js +2 -11
- package/components/Combobox/Combobox.d.ts +25 -734
- package/components/Dropdown/Dropdown.config.d.ts +0 -3
- package/components/Dropdown/Dropdown.config.js +4 -7
- package/components/Dropdown/Dropdown.d.ts +0 -3
- package/components/Mask/Mask.d.ts +13 -21
- package/components/Select/Select.d.ts +1 -130
- package/components/Tabs/TabItem.d.ts +2 -2
- package/components/TextArea/TextArea.d.ts +4 -4
- package/components/TextField/TextField.d.ts +69 -83
- package/components/TextField/TextField.js +1 -10
- package/emotion/cjs/components/Autocomplete/Autocomplete.js +2 -11
- package/emotion/cjs/components/Dropdown/Dropdown.config.js +4 -7
- package/emotion/cjs/components/Dropdown/Dropdown.stories.tsx +2 -3
- package/emotion/cjs/components/TextField/TextField.js +1 -10
- package/emotion/es/components/Autocomplete/Autocomplete.js +2 -10
- package/emotion/es/components/Dropdown/Dropdown.config.js +4 -7
- package/emotion/es/components/Dropdown/Dropdown.stories.tsx +2 -3
- package/emotion/es/components/TextField/TextField.js +2 -10
- package/es/components/Autocomplete/Autocomplete.js +2 -10
- package/es/components/Dropdown/Dropdown.config.js +4 -7
- package/es/components/TextField/TextField.js +2 -10
- package/package.json +6 -6
package/api/sdds-cs.api.md
CHANGED
@@ -85,7 +85,6 @@ 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';
|
89
88
|
import type { DistributivePick } from '@salutejs/plasma-new-hope';
|
90
89
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
91
90
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -489,10 +488,274 @@ buttonType?: "iconButton" | undefined;
|
|
489
488
|
icon?: ReactNode;
|
490
489
|
} & RefAttributes<HTMLDivElement>))>;
|
491
490
|
|
492
|
-
// Warning: (ae-forgotten-export) The symbol "AutocompleteProps" needs to be exported by the entry point index.d.ts
|
493
|
-
//
|
494
491
|
// @public (undocumented)
|
495
|
-
export const Autocomplete:
|
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>))>;
|
496
759
|
|
497
760
|
// @public (undocumented)
|
498
761
|
export const Avatar: FunctionComponent<PropsType< {
|
@@ -1223,10 +1486,7 @@ export { DrawerProps }
|
|
1223
1486
|
// @public (undocumented)
|
1224
1487
|
export const Dropdown: <T extends DropdownItemOption>(props: Omit<DropdownNewProps<T>, "size" | "view"> & Pick<PropsType< {
|
1225
1488
|
size: {
|
1226
|
-
l: PolymorphicClassName;
|
1227
|
-
m: PolymorphicClassName;
|
1228
1489
|
s: PolymorphicClassName;
|
1229
|
-
xs: PolymorphicClassName;
|
1230
1490
|
};
|
1231
1491
|
view: {
|
1232
1492
|
default: PolymorphicClassName;
|
@@ -1588,7 +1848,7 @@ true: PolymorphicClassName;
|
|
1588
1848
|
export type LinkProps = typeof LinkComponent;
|
1589
1849
|
|
1590
1850
|
// @public (undocumented)
|
1591
|
-
export const Mask: ForwardRefExoticComponent<(Omit<
|
1851
|
+
export const Mask: ForwardRefExoticComponent<(Omit<PropsType< {
|
1592
1852
|
view: {
|
1593
1853
|
default: PolymorphicClassName;
|
1594
1854
|
negative: PolymorphicClassName;
|
@@ -1633,11 +1893,10 @@ clear?: boolean | undefined;
|
|
1633
1893
|
hasDivider?: boolean | undefined;
|
1634
1894
|
} & {
|
1635
1895
|
hintText: string;
|
1636
|
-
hintTrigger?: "
|
1896
|
+
hintTrigger?: "click" | "hover" | undefined;
|
1637
1897
|
hintView?: string | undefined;
|
1638
1898
|
hintSize?: string | undefined;
|
1639
1899
|
hintTargetIcon?: ReactNode;
|
1640
|
-
hintTargetPlacement?: "outer" | "inner" | undefined;
|
1641
1900
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
1642
1901
|
hintHasArrow?: boolean | undefined;
|
1643
1902
|
hintOffset?: [number, number] | undefined;
|
@@ -1651,7 +1910,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
1651
1910
|
chipType?: undefined;
|
1652
1911
|
chipView?: undefined;
|
1653
1912
|
chipValidator?: undefined;
|
1654
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
1913
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1655
1914
|
view: {
|
1656
1915
|
default: PolymorphicClassName;
|
1657
1916
|
negative: PolymorphicClassName;
|
@@ -1696,11 +1955,10 @@ clear?: boolean | undefined;
|
|
1696
1955
|
hasDivider?: boolean | undefined;
|
1697
1956
|
} & {
|
1698
1957
|
hintText: string;
|
1699
|
-
hintTrigger?: "
|
1958
|
+
hintTrigger?: "click" | "hover" | undefined;
|
1700
1959
|
hintView?: string | undefined;
|
1701
1960
|
hintSize?: string | undefined;
|
1702
1961
|
hintTargetIcon?: ReactNode;
|
1703
|
-
hintTargetPlacement?: "outer" | "inner" | undefined;
|
1704
1962
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
1705
1963
|
hintHasArrow?: boolean | undefined;
|
1706
1964
|
hintOffset?: [number, number] | undefined;
|
@@ -1716,7 +1974,7 @@ chipView?: string | undefined;
|
|
1716
1974
|
chipValidator?: ((value: string) => {
|
1717
1975
|
view?: string | undefined;
|
1718
1976
|
}) | undefined;
|
1719
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
1977
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1720
1978
|
view: {
|
1721
1979
|
default: PolymorphicClassName;
|
1722
1980
|
negative: PolymorphicClassName;
|
@@ -1765,7 +2023,6 @@ hintText?: undefined;
|
|
1765
2023
|
hintView?: undefined;
|
1766
2024
|
hintSize?: undefined;
|
1767
2025
|
hintTargetIcon?: undefined;
|
1768
|
-
hintTargetPlacement?: undefined;
|
1769
2026
|
hintPlacement?: undefined;
|
1770
2027
|
hintHasArrow?: undefined;
|
1771
2028
|
hintOffset?: undefined;
|
@@ -1779,7 +2036,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
1779
2036
|
chipType?: undefined;
|
1780
2037
|
chipView?: undefined;
|
1781
2038
|
chipValidator?: undefined;
|
1782
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
2039
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1783
2040
|
view: {
|
1784
2041
|
default: PolymorphicClassName;
|
1785
2042
|
negative: PolymorphicClassName;
|
@@ -1828,7 +2085,6 @@ hintText?: undefined;
|
|
1828
2085
|
hintView?: undefined;
|
1829
2086
|
hintSize?: undefined;
|
1830
2087
|
hintTargetIcon?: undefined;
|
1831
|
-
hintTargetPlacement?: undefined;
|
1832
2088
|
hintPlacement?: undefined;
|
1833
2089
|
hintHasArrow?: undefined;
|
1834
2090
|
hintOffset?: undefined;
|
@@ -1844,7 +2100,7 @@ chipView?: string | undefined;
|
|
1844
2100
|
chipValidator?: ((value: string) => {
|
1845
2101
|
view?: string | undefined;
|
1846
2102
|
}) | undefined;
|
1847
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
2103
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1848
2104
|
view: {
|
1849
2105
|
default: PolymorphicClassName;
|
1850
2106
|
negative: PolymorphicClassName;
|
@@ -1889,11 +2145,10 @@ clear?: false | undefined;
|
|
1889
2145
|
hasDivider?: undefined;
|
1890
2146
|
} & {
|
1891
2147
|
hintText: string;
|
1892
|
-
hintTrigger?: "
|
2148
|
+
hintTrigger?: "click" | "hover" | undefined;
|
1893
2149
|
hintView?: string | undefined;
|
1894
2150
|
hintSize?: string | undefined;
|
1895
2151
|
hintTargetIcon?: ReactNode;
|
1896
|
-
hintTargetPlacement?: "outer" | "inner" | undefined;
|
1897
2152
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
1898
2153
|
hintHasArrow?: boolean | undefined;
|
1899
2154
|
hintOffset?: [number, number] | undefined;
|
@@ -1907,7 +2162,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
1907
2162
|
chipType?: undefined;
|
1908
2163
|
chipView?: undefined;
|
1909
2164
|
chipValidator?: undefined;
|
1910
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
2165
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1911
2166
|
view: {
|
1912
2167
|
default: PolymorphicClassName;
|
1913
2168
|
negative: PolymorphicClassName;
|
@@ -1952,11 +2207,10 @@ clear?: false | undefined;
|
|
1952
2207
|
hasDivider?: undefined;
|
1953
2208
|
} & {
|
1954
2209
|
hintText: string;
|
1955
|
-
hintTrigger?: "
|
2210
|
+
hintTrigger?: "click" | "hover" | undefined;
|
1956
2211
|
hintView?: string | undefined;
|
1957
2212
|
hintSize?: string | undefined;
|
1958
2213
|
hintTargetIcon?: ReactNode;
|
1959
|
-
hintTargetPlacement?: "outer" | "inner" | undefined;
|
1960
2214
|
hintPlacement?: PopoverPlacement | PopoverPlacementBasic[] | undefined;
|
1961
2215
|
hintHasArrow?: boolean | undefined;
|
1962
2216
|
hintOffset?: [number, number] | undefined;
|
@@ -1972,7 +2226,7 @@ chipView?: string | undefined;
|
|
1972
2226
|
chipValidator?: ((value: string) => {
|
1973
2227
|
view?: string | undefined;
|
1974
2228
|
}) | undefined;
|
1975
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
2229
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
1976
2230
|
view: {
|
1977
2231
|
default: PolymorphicClassName;
|
1978
2232
|
negative: PolymorphicClassName;
|
@@ -2021,7 +2275,6 @@ hintText?: undefined;
|
|
2021
2275
|
hintView?: undefined;
|
2022
2276
|
hintSize?: undefined;
|
2023
2277
|
hintTargetIcon?: undefined;
|
2024
|
-
hintTargetPlacement?: undefined;
|
2025
2278
|
hintPlacement?: undefined;
|
2026
2279
|
hintHasArrow?: undefined;
|
2027
2280
|
hintOffset?: undefined;
|
@@ -2035,7 +2288,7 @@ onSearch?: ((value: string, event?: KeyboardEvent_2<HTMLInputElement> | undefine
|
|
2035
2288
|
chipType?: undefined;
|
2036
2289
|
chipView?: undefined;
|
2037
2290
|
chipValidator?: undefined;
|
2038
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
2291
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref"> | Omit<PropsType< {
|
2039
2292
|
view: {
|
2040
2293
|
default: PolymorphicClassName;
|
2041
2294
|
negative: PolymorphicClassName;
|
@@ -2084,7 +2337,6 @@ hintText?: undefined;
|
|
2084
2337
|
hintView?: undefined;
|
2085
2338
|
hintSize?: undefined;
|
2086
2339
|
hintTargetIcon?: undefined;
|
2087
|
-
hintTargetPlacement?: undefined;
|
2088
2340
|
hintPlacement?: undefined;
|
2089
2341
|
hintHasArrow?: undefined;
|
2090
2342
|
hintOffset?: undefined;
|
@@ -2100,7 +2352,7 @@ chipView?: string | undefined;
|
|
2100
2352
|
chipValidator?: ((value: string) => {
|
2101
2353
|
view?: string | undefined;
|
2102
2354
|
}) | undefined;
|
2103
|
-
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement
|
2355
|
+
} & Omit<InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & RefAttributes<HTMLInputElement> & MaskProps, "ref">) & RefAttributes<HTMLInputElement>>;
|
2104
2356
|
|
2105
2357
|
export { mediaQuery }
|
2106
2358
|
|
@@ -2842,7 +3094,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
2842
3094
|
optional?: boolean | undefined;
|
2843
3095
|
} & {
|
2844
3096
|
hintText: string;
|
2845
|
-
hintTrigger?: "
|
3097
|
+
hintTrigger?: "click" | "hover" | undefined;
|
2846
3098
|
hintOpened?: boolean | undefined;
|
2847
3099
|
hintView?: string | undefined;
|
2848
3100
|
hintSize?: string | undefined;
|
@@ -2885,7 +3137,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
2885
3137
|
optional?: boolean | undefined;
|
2886
3138
|
} & {
|
2887
3139
|
hintText: string;
|
2888
|
-
hintTrigger?: "
|
3140
|
+
hintTrigger?: "click" | "hover" | undefined;
|
2889
3141
|
hintOpened?: boolean | undefined;
|
2890
3142
|
hintView?: string | undefined;
|
2891
3143
|
hintSize?: string | undefined;
|
@@ -2928,7 +3180,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
2928
3180
|
optional?: boolean | undefined;
|
2929
3181
|
} & {
|
2930
3182
|
hintText: string;
|
2931
|
-
hintTrigger?: "
|
3183
|
+
hintTrigger?: "click" | "hover" | undefined;
|
2932
3184
|
hintOpened?: boolean | undefined;
|
2933
3185
|
hintView?: string | undefined;
|
2934
3186
|
hintSize?: string | undefined;
|
@@ -2971,7 +3223,7 @@ requiredPlacement?: "right" | "left" | undefined;
|
|
2971
3223
|
optional?: boolean | undefined;
|
2972
3224
|
} & {
|
2973
3225
|
hintText: string;
|
2974
|
-
hintTrigger?: "
|
3226
|
+
hintTrigger?: "click" | "hover" | undefined;
|
2975
3227
|
hintOpened?: boolean | undefined;
|
2976
3228
|
hintView?: string | undefined;
|
2977
3229
|
hintSize?: string | undefined;
|
@@ -3171,10 +3423,323 @@ height?: undefined;
|
|
3171
3423
|
width?: undefined;
|
3172
3424
|
} & RefAttributes<HTMLTextAreaElement>))>;
|
3173
3425
|
|
3174
|
-
// Warning: (ae-forgotten-export) The symbol "TextFieldProps_2" needs to be exported by the entry point index.d.ts
|
3175
|
-
//
|
3176
3426
|
// @public
|
3177
|
-
export const TextField:
|
3427
|
+
export const TextField: FunctionComponent<PropsType< {
|
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>))>;
|
3178
3743
|
|
3179
3744
|
export { TextFieldProps }
|
3180
3745
|
|