@salutejs/plasma-b2c 1.601.0-canary.2422.20906430475.0 → 1.601.0-canary.2423.20988873450.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/css/cjs/components/TextArea/TextArea.clear.config.js +48 -0
  2. package/dist/css/cjs/components/TextArea/TextArea.clear.config.js.map +1 -0
  3. package/dist/css/cjs/components/TextArea/TextArea.clear.config_33cwjn.css +15 -0
  4. package/dist/css/cjs/components/TextArea/TextArea.config.js +16 -19
  5. package/dist/css/cjs/components/TextArea/TextArea.config.js.map +1 -1
  6. package/dist/css/cjs/components/TextArea/TextArea.config_wbr7rs.css +15 -0
  7. package/dist/css/cjs/components/TextArea/TextArea.css +30 -15
  8. package/dist/css/cjs/components/TextArea/TextArea.js +13 -6
  9. package/dist/css/cjs/components/TextArea/TextArea.js.map +1 -1
  10. package/dist/css/cjs/index.css +31 -16
  11. package/dist/css/es/components/TextArea/TextArea.clear.config.js +44 -0
  12. package/dist/css/es/components/TextArea/TextArea.clear.config.js.map +1 -0
  13. package/dist/css/es/components/TextArea/TextArea.clear.config_33cwjn.css +15 -0
  14. package/dist/css/es/components/TextArea/TextArea.config.js +16 -19
  15. package/dist/css/es/components/TextArea/TextArea.config.js.map +1 -1
  16. package/dist/css/es/components/TextArea/TextArea.config_wbr7rs.css +15 -0
  17. package/dist/css/es/components/TextArea/TextArea.css +30 -15
  18. package/dist/css/es/components/TextArea/TextArea.js +13 -8
  19. package/dist/css/es/components/TextArea/TextArea.js.map +1 -1
  20. package/dist/css/es/index.css +31 -16
  21. package/dist/styled-components/cjs/components/TextArea/TextArea.clear.config.js +665 -0
  22. package/dist/styled-components/cjs/components/TextArea/TextArea.config.js +386 -425
  23. package/dist/styled-components/cjs/components/TextArea/TextArea.js +27 -5
  24. package/dist/styled-components/es/components/TextArea/TextArea.clear.config.js +655 -0
  25. package/dist/styled-components/es/components/TextArea/TextArea.config.js +390 -429
  26. package/dist/styled-components/es/components/TextArea/TextArea.js +14 -5
  27. package/package.json +8 -8
  28. package/types/components/TextArea/TextArea.clear.config.d.ts +40 -0
  29. package/types/components/TextArea/TextArea.config.d.ts +9 -12
  30. package/types/components/TextArea/TextArea.d.ts +1055 -15
  31. package/dist/css/cjs/components/TextArea/TextArea.config_1m1bffu.css +0 -16
  32. package/dist/css/es/components/TextArea/TextArea.config_1m1bffu.css +0 -16
@@ -1,21 +1,18 @@
1
- /**
2
- * Поле ввода многострочного текста.
3
- */
4
- export declare const TextArea: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
5
- size: {
6
- xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
7
- s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
8
- m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
9
- l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
10
- xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
11
- };
1
+ export declare const TextAreaDefault: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
12
2
  view: {
13
3
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
14
- positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
15
4
  primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
5
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
16
6
  warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
17
7
  negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
18
8
  };
9
+ size: {
10
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
11
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
12
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
13
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
14
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
15
+ };
19
16
  hintView: {
20
17
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
21
18
  };
@@ -23,9 +20,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
23
20
  m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
24
21
  s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
25
22
  };
26
- clear: {
27
- true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
28
- };
29
23
  readOnly: {
30
24
  true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
31
25
  };
@@ -63,6 +57,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
63
57
  hintWidth?: string;
64
58
  hintContentLeft?: import("react").ReactNode;
65
59
  } & {
60
+ appearance?: "default" | "clear";
66
61
  size?: string;
67
62
  view?: string;
68
63
  } & {
@@ -111,6 +106,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
111
106
  hintWidth?: string;
112
107
  hintContentLeft?: import("react").ReactNode;
113
108
  } & {
109
+ appearance?: "default" | "clear";
114
110
  size?: string;
115
111
  view?: string;
116
112
  } & {
@@ -159,6 +155,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
159
155
  hintWidth?: string;
160
156
  hintContentLeft?: import("react").ReactNode;
161
157
  } & {
158
+ appearance?: "default" | "clear";
162
159
  size?: string;
163
160
  view?: string;
164
161
  } & {
@@ -207,6 +204,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
207
204
  hintWidth?: string;
208
205
  hintContentLeft?: import("react").ReactNode;
209
206
  } & {
207
+ appearance?: "default" | "clear";
210
208
  size?: string;
211
209
  view?: string;
212
210
  } & {
@@ -255,6 +253,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
255
253
  hintWidth?: never;
256
254
  hintContentLeft?: never;
257
255
  } & {
256
+ appearance?: "default" | "clear";
258
257
  size?: string;
259
258
  view?: string;
260
259
  } & {
@@ -303,6 +302,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
303
302
  hintWidth?: never;
304
303
  hintContentLeft?: never;
305
304
  } & {
305
+ appearance?: "default" | "clear";
306
306
  size?: string;
307
307
  view?: string;
308
308
  } & {
@@ -351,6 +351,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
351
351
  hintWidth?: never;
352
352
  hintContentLeft?: never;
353
353
  } & {
354
+ appearance?: "default" | "clear";
354
355
  size?: string;
355
356
  view?: string;
356
357
  } & {
@@ -399,6 +400,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
399
400
  hintWidth?: never;
400
401
  hintContentLeft?: never;
401
402
  } & {
403
+ appearance?: "default" | "clear";
402
404
  size?: string;
403
405
  view?: string;
404
406
  } & {
@@ -417,3 +419,1041 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
417
419
  } & {
418
420
  labelAriaHidden?: boolean;
419
421
  } & import("react").RefAttributes<HTMLTextAreaElement>))>;
422
+ export declare const TextAreaClear: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
423
+ view: {
424
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
425
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
426
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
427
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
428
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
429
+ };
430
+ size: {
431
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
432
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
433
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
434
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
435
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
436
+ };
437
+ hintView: {
438
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
439
+ };
440
+ hintSize: {
441
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
442
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
443
+ };
444
+ disabled: {
445
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
446
+ };
447
+ readOnly: {
448
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
449
+ };
450
+ }> & ((Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
451
+ status?: "" | "success" | "warning" | "error";
452
+ label?: string;
453
+ labelPlacement?: "inner" | "outer";
454
+ titleCaption?: import("react").ReactNode;
455
+ headerSlot?: import("react").ReactNode;
456
+ contentRight?: React.ReactElement;
457
+ resize?: "none" | "both" | "horizontal" | "vertical";
458
+ helperText?: string;
459
+ leftHelper?: import("react").ReactNode;
460
+ rightHelper?: import("react").ReactNode;
461
+ leftHelperPlacement?: "inner" | "outer";
462
+ } & {
463
+ required?: boolean;
464
+ requiredPlacement?: "left" | "right";
465
+ optional?: boolean;
466
+ optionalText?: string;
467
+ hasRequiredIndicator?: boolean;
468
+ } & {
469
+ hintText: string;
470
+ hintTrigger?: "hover" | "click";
471
+ hintOpened?: boolean;
472
+ hintView?: string;
473
+ hintSize?: string;
474
+ hintTargetIcon?: import("react").ReactNode;
475
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
476
+ hintHasArrow?: boolean;
477
+ hintOffset?: [number, number];
478
+ hintWidth?: string;
479
+ hintContentLeft?: import("react").ReactNode;
480
+ } & {
481
+ appearance?: "default" | "clear";
482
+ size?: string;
483
+ view?: string;
484
+ } & {
485
+ autoResize?: boolean | undefined;
486
+ maxAuto?: number | undefined;
487
+ minAuto?: number | undefined;
488
+ } & {
489
+ height?: undefined;
490
+ width?: undefined;
491
+ } & {
492
+ rows?: undefined;
493
+ cols?: undefined;
494
+ } & {
495
+ clear?: undefined;
496
+ hasDivider?: undefined;
497
+ } & {
498
+ labelAriaHidden?: boolean;
499
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
500
+ status?: "" | "success" | "warning" | "error";
501
+ label?: string;
502
+ labelPlacement?: "inner" | "outer";
503
+ titleCaption?: import("react").ReactNode;
504
+ headerSlot?: import("react").ReactNode;
505
+ contentRight?: React.ReactElement;
506
+ resize?: "none" | "both" | "horizontal" | "vertical";
507
+ helperText?: string;
508
+ leftHelper?: import("react").ReactNode;
509
+ rightHelper?: import("react").ReactNode;
510
+ leftHelperPlacement?: "inner" | "outer";
511
+ } & {
512
+ required?: boolean;
513
+ requiredPlacement?: "left" | "right";
514
+ optional?: boolean;
515
+ optionalText?: string;
516
+ hasRequiredIndicator?: boolean;
517
+ } & {
518
+ hintText: string;
519
+ hintTrigger?: "hover" | "click";
520
+ hintOpened?: boolean;
521
+ hintView?: string;
522
+ hintSize?: string;
523
+ hintTargetIcon?: import("react").ReactNode;
524
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
525
+ hintHasArrow?: boolean;
526
+ hintOffset?: [number, number];
527
+ hintWidth?: string;
528
+ hintContentLeft?: import("react").ReactNode;
529
+ } & {
530
+ appearance?: "default" | "clear";
531
+ size?: string;
532
+ view?: string;
533
+ } & {
534
+ height?: (number | string) | undefined;
535
+ width?: (number | string) | undefined;
536
+ } & {
537
+ autoResize?: undefined;
538
+ maxAuto?: undefined;
539
+ minAuto?: undefined;
540
+ } & {
541
+ rows?: undefined;
542
+ cols?: undefined;
543
+ } & {
544
+ clear?: undefined;
545
+ hasDivider?: undefined;
546
+ } & {
547
+ labelAriaHidden?: boolean;
548
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
549
+ status?: "" | "success" | "warning" | "error";
550
+ label?: string;
551
+ labelPlacement?: "inner" | "outer";
552
+ titleCaption?: import("react").ReactNode;
553
+ headerSlot?: import("react").ReactNode;
554
+ contentRight?: React.ReactElement;
555
+ resize?: "none" | "both" | "horizontal" | "vertical";
556
+ helperText?: string;
557
+ leftHelper?: import("react").ReactNode;
558
+ rightHelper?: import("react").ReactNode;
559
+ leftHelperPlacement?: "inner" | "outer";
560
+ } & {
561
+ required?: boolean;
562
+ requiredPlacement?: "left" | "right";
563
+ optional?: boolean;
564
+ optionalText?: string;
565
+ hasRequiredIndicator?: boolean;
566
+ } & {
567
+ hintText: string;
568
+ hintTrigger?: "hover" | "click";
569
+ hintOpened?: boolean;
570
+ hintView?: string;
571
+ hintSize?: string;
572
+ hintTargetIcon?: import("react").ReactNode;
573
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
574
+ hintHasArrow?: boolean;
575
+ hintOffset?: [number, number];
576
+ hintWidth?: string;
577
+ hintContentLeft?: import("react").ReactNode;
578
+ } & {
579
+ appearance?: "default" | "clear";
580
+ size?: string;
581
+ view?: string;
582
+ } & {
583
+ rows?: number | undefined;
584
+ cols?: number | undefined;
585
+ } & {
586
+ autoResize?: undefined;
587
+ maxAuto?: undefined;
588
+ minAuto?: undefined;
589
+ } & {
590
+ height?: undefined;
591
+ width?: undefined;
592
+ } & {
593
+ clear?: undefined;
594
+ hasDivider?: undefined;
595
+ } & {
596
+ labelAriaHidden?: boolean;
597
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
598
+ status?: "" | "success" | "warning" | "error";
599
+ label?: string;
600
+ labelPlacement?: "inner" | "outer";
601
+ titleCaption?: import("react").ReactNode;
602
+ headerSlot?: import("react").ReactNode;
603
+ contentRight?: React.ReactElement;
604
+ resize?: "none" | "both" | "horizontal" | "vertical";
605
+ helperText?: string;
606
+ leftHelper?: import("react").ReactNode;
607
+ rightHelper?: import("react").ReactNode;
608
+ leftHelperPlacement?: "inner" | "outer";
609
+ } & {
610
+ required?: boolean;
611
+ requiredPlacement?: "left" | "right";
612
+ optional?: boolean;
613
+ optionalText?: string;
614
+ hasRequiredIndicator?: boolean;
615
+ } & {
616
+ hintText: string;
617
+ hintTrigger?: "hover" | "click";
618
+ hintOpened?: boolean;
619
+ hintView?: string;
620
+ hintSize?: string;
621
+ hintTargetIcon?: import("react").ReactNode;
622
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
623
+ hintHasArrow?: boolean;
624
+ hintOffset?: [number, number];
625
+ hintWidth?: string;
626
+ hintContentLeft?: import("react").ReactNode;
627
+ } & {
628
+ appearance?: "default" | "clear";
629
+ size?: string;
630
+ view?: string;
631
+ } & {
632
+ clear?: true | undefined;
633
+ hasDivider?: boolean | undefined;
634
+ } & {
635
+ rows?: undefined;
636
+ cols?: undefined;
637
+ } & {
638
+ autoResize?: undefined;
639
+ maxAuto?: undefined;
640
+ minAuto?: undefined;
641
+ } & {
642
+ height?: undefined;
643
+ width?: undefined;
644
+ } & {
645
+ labelAriaHidden?: boolean;
646
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
647
+ status?: "" | "success" | "warning" | "error";
648
+ label?: string;
649
+ labelPlacement?: "inner" | "outer";
650
+ titleCaption?: import("react").ReactNode;
651
+ headerSlot?: import("react").ReactNode;
652
+ contentRight?: React.ReactElement;
653
+ resize?: "none" | "both" | "horizontal" | "vertical";
654
+ helperText?: string;
655
+ leftHelper?: import("react").ReactNode;
656
+ rightHelper?: import("react").ReactNode;
657
+ leftHelperPlacement?: "inner" | "outer";
658
+ } & {
659
+ required?: boolean;
660
+ requiredPlacement?: "left" | "right";
661
+ optional?: boolean;
662
+ optionalText?: string;
663
+ hasRequiredIndicator?: boolean;
664
+ } & {
665
+ hintText?: never;
666
+ hintOpened?: never;
667
+ hintTrigger?: never;
668
+ hintView?: never;
669
+ hintSize?: never;
670
+ hintTargetIcon?: never;
671
+ hintPlacement?: never;
672
+ hintHasArrow?: never;
673
+ hintOffset?: never;
674
+ hintWidth?: never;
675
+ hintContentLeft?: never;
676
+ } & {
677
+ appearance?: "default" | "clear";
678
+ size?: string;
679
+ view?: string;
680
+ } & {
681
+ autoResize?: boolean | undefined;
682
+ maxAuto?: number | undefined;
683
+ minAuto?: number | undefined;
684
+ } & {
685
+ height?: undefined;
686
+ width?: undefined;
687
+ } & {
688
+ rows?: undefined;
689
+ cols?: undefined;
690
+ } & {
691
+ clear?: undefined;
692
+ hasDivider?: undefined;
693
+ } & {
694
+ labelAriaHidden?: boolean;
695
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
696
+ status?: "" | "success" | "warning" | "error";
697
+ label?: string;
698
+ labelPlacement?: "inner" | "outer";
699
+ titleCaption?: import("react").ReactNode;
700
+ headerSlot?: import("react").ReactNode;
701
+ contentRight?: React.ReactElement;
702
+ resize?: "none" | "both" | "horizontal" | "vertical";
703
+ helperText?: string;
704
+ leftHelper?: import("react").ReactNode;
705
+ rightHelper?: import("react").ReactNode;
706
+ leftHelperPlacement?: "inner" | "outer";
707
+ } & {
708
+ required?: boolean;
709
+ requiredPlacement?: "left" | "right";
710
+ optional?: boolean;
711
+ optionalText?: string;
712
+ hasRequiredIndicator?: boolean;
713
+ } & {
714
+ hintText?: never;
715
+ hintOpened?: never;
716
+ hintTrigger?: never;
717
+ hintView?: never;
718
+ hintSize?: never;
719
+ hintTargetIcon?: never;
720
+ hintPlacement?: never;
721
+ hintHasArrow?: never;
722
+ hintOffset?: never;
723
+ hintWidth?: never;
724
+ hintContentLeft?: never;
725
+ } & {
726
+ appearance?: "default" | "clear";
727
+ size?: string;
728
+ view?: string;
729
+ } & {
730
+ height?: (number | string) | undefined;
731
+ width?: (number | string) | undefined;
732
+ } & {
733
+ autoResize?: undefined;
734
+ maxAuto?: undefined;
735
+ minAuto?: undefined;
736
+ } & {
737
+ rows?: undefined;
738
+ cols?: undefined;
739
+ } & {
740
+ clear?: undefined;
741
+ hasDivider?: undefined;
742
+ } & {
743
+ labelAriaHidden?: boolean;
744
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
745
+ status?: "" | "success" | "warning" | "error";
746
+ label?: string;
747
+ labelPlacement?: "inner" | "outer";
748
+ titleCaption?: import("react").ReactNode;
749
+ headerSlot?: import("react").ReactNode;
750
+ contentRight?: React.ReactElement;
751
+ resize?: "none" | "both" | "horizontal" | "vertical";
752
+ helperText?: string;
753
+ leftHelper?: import("react").ReactNode;
754
+ rightHelper?: import("react").ReactNode;
755
+ leftHelperPlacement?: "inner" | "outer";
756
+ } & {
757
+ required?: boolean;
758
+ requiredPlacement?: "left" | "right";
759
+ optional?: boolean;
760
+ optionalText?: string;
761
+ hasRequiredIndicator?: boolean;
762
+ } & {
763
+ hintText?: never;
764
+ hintOpened?: never;
765
+ hintTrigger?: never;
766
+ hintView?: never;
767
+ hintSize?: never;
768
+ hintTargetIcon?: never;
769
+ hintPlacement?: never;
770
+ hintHasArrow?: never;
771
+ hintOffset?: never;
772
+ hintWidth?: never;
773
+ hintContentLeft?: never;
774
+ } & {
775
+ appearance?: "default" | "clear";
776
+ size?: string;
777
+ view?: string;
778
+ } & {
779
+ rows?: number | undefined;
780
+ cols?: number | undefined;
781
+ } & {
782
+ autoResize?: undefined;
783
+ maxAuto?: undefined;
784
+ minAuto?: undefined;
785
+ } & {
786
+ height?: undefined;
787
+ width?: undefined;
788
+ } & {
789
+ clear?: undefined;
790
+ hasDivider?: undefined;
791
+ } & {
792
+ labelAriaHidden?: boolean;
793
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
794
+ status?: "" | "success" | "warning" | "error";
795
+ label?: string;
796
+ labelPlacement?: "inner" | "outer";
797
+ titleCaption?: import("react").ReactNode;
798
+ headerSlot?: import("react").ReactNode;
799
+ contentRight?: React.ReactElement;
800
+ resize?: "none" | "both" | "horizontal" | "vertical";
801
+ helperText?: string;
802
+ leftHelper?: import("react").ReactNode;
803
+ rightHelper?: import("react").ReactNode;
804
+ leftHelperPlacement?: "inner" | "outer";
805
+ } & {
806
+ required?: boolean;
807
+ requiredPlacement?: "left" | "right";
808
+ optional?: boolean;
809
+ optionalText?: string;
810
+ hasRequiredIndicator?: boolean;
811
+ } & {
812
+ hintText?: never;
813
+ hintOpened?: never;
814
+ hintTrigger?: never;
815
+ hintView?: never;
816
+ hintSize?: never;
817
+ hintTargetIcon?: never;
818
+ hintPlacement?: never;
819
+ hintHasArrow?: never;
820
+ hintOffset?: never;
821
+ hintWidth?: never;
822
+ hintContentLeft?: never;
823
+ } & {
824
+ appearance?: "default" | "clear";
825
+ size?: string;
826
+ view?: string;
827
+ } & {
828
+ clear?: true | undefined;
829
+ hasDivider?: boolean | undefined;
830
+ } & {
831
+ rows?: undefined;
832
+ cols?: undefined;
833
+ } & {
834
+ autoResize?: undefined;
835
+ maxAuto?: undefined;
836
+ minAuto?: undefined;
837
+ } & {
838
+ height?: undefined;
839
+ width?: undefined;
840
+ } & {
841
+ labelAriaHidden?: boolean;
842
+ } & import("react").RefAttributes<HTMLTextAreaElement>))>;
843
+ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
844
+ view: {
845
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
846
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
847
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
848
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
849
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
850
+ };
851
+ size: {
852
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
853
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
854
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
855
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
856
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
857
+ };
858
+ hintView: {
859
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
860
+ };
861
+ hintSize: {
862
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
863
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
864
+ };
865
+ disabled: {
866
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
867
+ };
868
+ readOnly: {
869
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
870
+ };
871
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
872
+ status?: "" | "success" | "warning" | "error";
873
+ label?: string;
874
+ labelPlacement?: "inner" | "outer";
875
+ titleCaption?: import("react").ReactNode;
876
+ headerSlot?: import("react").ReactNode;
877
+ contentRight?: React.ReactElement;
878
+ resize?: "none" | "both" | "horizontal" | "vertical";
879
+ helperText?: string;
880
+ leftHelper?: import("react").ReactNode;
881
+ rightHelper?: import("react").ReactNode;
882
+ leftHelperPlacement?: "inner" | "outer";
883
+ } & {
884
+ required?: boolean;
885
+ requiredPlacement?: "left" | "right";
886
+ optional?: boolean;
887
+ optionalText?: string;
888
+ hasRequiredIndicator?: boolean;
889
+ } & {
890
+ hintText: string;
891
+ hintTrigger?: "hover" | "click";
892
+ hintOpened?: boolean;
893
+ hintView?: string;
894
+ hintSize?: string;
895
+ hintTargetIcon?: import("react").ReactNode;
896
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
897
+ hintHasArrow?: boolean;
898
+ hintOffset?: [number, number];
899
+ hintWidth?: string;
900
+ hintContentLeft?: import("react").ReactNode;
901
+ } & {
902
+ appearance?: "default" | "clear";
903
+ size?: string;
904
+ view?: string;
905
+ } & {
906
+ autoResize?: boolean | undefined;
907
+ maxAuto?: number | undefined;
908
+ minAuto?: number | undefined;
909
+ } & {
910
+ height?: undefined;
911
+ width?: undefined;
912
+ } & {
913
+ rows?: undefined;
914
+ cols?: undefined;
915
+ } & {
916
+ clear?: undefined;
917
+ hasDivider?: undefined;
918
+ } & {
919
+ labelAriaHidden?: boolean;
920
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
921
+ view: {
922
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
923
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
924
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
925
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
926
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
927
+ };
928
+ size: {
929
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
930
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
931
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
932
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
933
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
934
+ };
935
+ hintView: {
936
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
937
+ };
938
+ hintSize: {
939
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
940
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
941
+ };
942
+ disabled: {
943
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
944
+ };
945
+ readOnly: {
946
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
947
+ };
948
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
949
+ status?: "" | "success" | "warning" | "error";
950
+ label?: string;
951
+ labelPlacement?: "inner" | "outer";
952
+ titleCaption?: import("react").ReactNode;
953
+ headerSlot?: import("react").ReactNode;
954
+ contentRight?: React.ReactElement;
955
+ resize?: "none" | "both" | "horizontal" | "vertical";
956
+ helperText?: string;
957
+ leftHelper?: import("react").ReactNode;
958
+ rightHelper?: import("react").ReactNode;
959
+ leftHelperPlacement?: "inner" | "outer";
960
+ } & {
961
+ required?: boolean;
962
+ requiredPlacement?: "left" | "right";
963
+ optional?: boolean;
964
+ optionalText?: string;
965
+ hasRequiredIndicator?: boolean;
966
+ } & {
967
+ hintText: string;
968
+ hintTrigger?: "hover" | "click";
969
+ hintOpened?: boolean;
970
+ hintView?: string;
971
+ hintSize?: string;
972
+ hintTargetIcon?: import("react").ReactNode;
973
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
974
+ hintHasArrow?: boolean;
975
+ hintOffset?: [number, number];
976
+ hintWidth?: string;
977
+ hintContentLeft?: import("react").ReactNode;
978
+ } & {
979
+ appearance?: "default" | "clear";
980
+ size?: string;
981
+ view?: string;
982
+ } & {
983
+ height?: (number | string) | undefined;
984
+ width?: (number | string) | undefined;
985
+ } & {
986
+ autoResize?: undefined;
987
+ maxAuto?: undefined;
988
+ minAuto?: undefined;
989
+ } & {
990
+ rows?: undefined;
991
+ cols?: undefined;
992
+ } & {
993
+ clear?: undefined;
994
+ hasDivider?: undefined;
995
+ } & {
996
+ labelAriaHidden?: boolean;
997
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
998
+ view: {
999
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1000
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1001
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1002
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1003
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1004
+ };
1005
+ size: {
1006
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1007
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1008
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1009
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1010
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1011
+ };
1012
+ hintView: {
1013
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1014
+ };
1015
+ hintSize: {
1016
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1017
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1018
+ };
1019
+ disabled: {
1020
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1021
+ };
1022
+ readOnly: {
1023
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1024
+ };
1025
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1026
+ status?: "" | "success" | "warning" | "error";
1027
+ label?: string;
1028
+ labelPlacement?: "inner" | "outer";
1029
+ titleCaption?: import("react").ReactNode;
1030
+ headerSlot?: import("react").ReactNode;
1031
+ contentRight?: React.ReactElement;
1032
+ resize?: "none" | "both" | "horizontal" | "vertical";
1033
+ helperText?: string;
1034
+ leftHelper?: import("react").ReactNode;
1035
+ rightHelper?: import("react").ReactNode;
1036
+ leftHelperPlacement?: "inner" | "outer";
1037
+ } & {
1038
+ required?: boolean;
1039
+ requiredPlacement?: "left" | "right";
1040
+ optional?: boolean;
1041
+ optionalText?: string;
1042
+ hasRequiredIndicator?: boolean;
1043
+ } & {
1044
+ hintText: string;
1045
+ hintTrigger?: "hover" | "click";
1046
+ hintOpened?: boolean;
1047
+ hintView?: string;
1048
+ hintSize?: string;
1049
+ hintTargetIcon?: import("react").ReactNode;
1050
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
1051
+ hintHasArrow?: boolean;
1052
+ hintOffset?: [number, number];
1053
+ hintWidth?: string;
1054
+ hintContentLeft?: import("react").ReactNode;
1055
+ } & {
1056
+ appearance?: "default" | "clear";
1057
+ size?: string;
1058
+ view?: string;
1059
+ } & {
1060
+ rows?: number | undefined;
1061
+ cols?: number | undefined;
1062
+ } & {
1063
+ autoResize?: undefined;
1064
+ maxAuto?: undefined;
1065
+ minAuto?: undefined;
1066
+ } & {
1067
+ height?: undefined;
1068
+ width?: undefined;
1069
+ } & {
1070
+ clear?: undefined;
1071
+ hasDivider?: undefined;
1072
+ } & {
1073
+ labelAriaHidden?: boolean;
1074
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1075
+ view: {
1076
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1077
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1078
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1079
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1080
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1081
+ };
1082
+ size: {
1083
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1084
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1085
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1086
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1087
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1088
+ };
1089
+ hintView: {
1090
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1091
+ };
1092
+ hintSize: {
1093
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1094
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1095
+ };
1096
+ disabled: {
1097
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1098
+ };
1099
+ readOnly: {
1100
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1101
+ };
1102
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1103
+ status?: "" | "success" | "warning" | "error";
1104
+ label?: string;
1105
+ labelPlacement?: "inner" | "outer";
1106
+ titleCaption?: import("react").ReactNode;
1107
+ headerSlot?: import("react").ReactNode;
1108
+ contentRight?: React.ReactElement;
1109
+ resize?: "none" | "both" | "horizontal" | "vertical";
1110
+ helperText?: string;
1111
+ leftHelper?: import("react").ReactNode;
1112
+ rightHelper?: import("react").ReactNode;
1113
+ leftHelperPlacement?: "inner" | "outer";
1114
+ } & {
1115
+ required?: boolean;
1116
+ requiredPlacement?: "left" | "right";
1117
+ optional?: boolean;
1118
+ optionalText?: string;
1119
+ hasRequiredIndicator?: boolean;
1120
+ } & {
1121
+ hintText: string;
1122
+ hintTrigger?: "hover" | "click";
1123
+ hintOpened?: boolean;
1124
+ hintView?: string;
1125
+ hintSize?: string;
1126
+ hintTargetIcon?: import("react").ReactNode;
1127
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
1128
+ hintHasArrow?: boolean;
1129
+ hintOffset?: [number, number];
1130
+ hintWidth?: string;
1131
+ hintContentLeft?: import("react").ReactNode;
1132
+ } & {
1133
+ appearance?: "default" | "clear";
1134
+ size?: string;
1135
+ view?: string;
1136
+ } & {
1137
+ clear?: true | undefined;
1138
+ hasDivider?: boolean | undefined;
1139
+ } & {
1140
+ rows?: undefined;
1141
+ cols?: undefined;
1142
+ } & {
1143
+ autoResize?: undefined;
1144
+ maxAuto?: undefined;
1145
+ minAuto?: undefined;
1146
+ } & {
1147
+ height?: undefined;
1148
+ width?: undefined;
1149
+ } & {
1150
+ labelAriaHidden?: boolean;
1151
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1152
+ view: {
1153
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1154
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1155
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1156
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1157
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1158
+ };
1159
+ size: {
1160
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1161
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1162
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1163
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1164
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1165
+ };
1166
+ hintView: {
1167
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1168
+ };
1169
+ hintSize: {
1170
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1171
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1172
+ };
1173
+ disabled: {
1174
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1175
+ };
1176
+ readOnly: {
1177
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1178
+ };
1179
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1180
+ status?: "" | "success" | "warning" | "error";
1181
+ label?: string;
1182
+ labelPlacement?: "inner" | "outer";
1183
+ titleCaption?: import("react").ReactNode;
1184
+ headerSlot?: import("react").ReactNode;
1185
+ contentRight?: React.ReactElement;
1186
+ resize?: "none" | "both" | "horizontal" | "vertical";
1187
+ helperText?: string;
1188
+ leftHelper?: import("react").ReactNode;
1189
+ rightHelper?: import("react").ReactNode;
1190
+ leftHelperPlacement?: "inner" | "outer";
1191
+ } & {
1192
+ required?: boolean;
1193
+ requiredPlacement?: "left" | "right";
1194
+ optional?: boolean;
1195
+ optionalText?: string;
1196
+ hasRequiredIndicator?: boolean;
1197
+ } & {
1198
+ hintText?: never;
1199
+ hintOpened?: never;
1200
+ hintTrigger?: never;
1201
+ hintView?: never;
1202
+ hintSize?: never;
1203
+ hintTargetIcon?: never;
1204
+ hintPlacement?: never;
1205
+ hintHasArrow?: never;
1206
+ hintOffset?: never;
1207
+ hintWidth?: never;
1208
+ hintContentLeft?: never;
1209
+ } & {
1210
+ appearance?: "default" | "clear";
1211
+ size?: string;
1212
+ view?: string;
1213
+ } & {
1214
+ autoResize?: boolean | undefined;
1215
+ maxAuto?: number | undefined;
1216
+ minAuto?: number | undefined;
1217
+ } & {
1218
+ height?: undefined;
1219
+ width?: undefined;
1220
+ } & {
1221
+ rows?: undefined;
1222
+ cols?: undefined;
1223
+ } & {
1224
+ clear?: undefined;
1225
+ hasDivider?: undefined;
1226
+ } & {
1227
+ labelAriaHidden?: boolean;
1228
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1229
+ view: {
1230
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1231
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1232
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1233
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1234
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1235
+ };
1236
+ size: {
1237
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1238
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1239
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1240
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1241
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1242
+ };
1243
+ hintView: {
1244
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1245
+ };
1246
+ hintSize: {
1247
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1248
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1249
+ };
1250
+ disabled: {
1251
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1252
+ };
1253
+ readOnly: {
1254
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1255
+ };
1256
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1257
+ status?: "" | "success" | "warning" | "error";
1258
+ label?: string;
1259
+ labelPlacement?: "inner" | "outer";
1260
+ titleCaption?: import("react").ReactNode;
1261
+ headerSlot?: import("react").ReactNode;
1262
+ contentRight?: React.ReactElement;
1263
+ resize?: "none" | "both" | "horizontal" | "vertical";
1264
+ helperText?: string;
1265
+ leftHelper?: import("react").ReactNode;
1266
+ rightHelper?: import("react").ReactNode;
1267
+ leftHelperPlacement?: "inner" | "outer";
1268
+ } & {
1269
+ required?: boolean;
1270
+ requiredPlacement?: "left" | "right";
1271
+ optional?: boolean;
1272
+ optionalText?: string;
1273
+ hasRequiredIndicator?: boolean;
1274
+ } & {
1275
+ hintText?: never;
1276
+ hintOpened?: never;
1277
+ hintTrigger?: never;
1278
+ hintView?: never;
1279
+ hintSize?: never;
1280
+ hintTargetIcon?: never;
1281
+ hintPlacement?: never;
1282
+ hintHasArrow?: never;
1283
+ hintOffset?: never;
1284
+ hintWidth?: never;
1285
+ hintContentLeft?: never;
1286
+ } & {
1287
+ appearance?: "default" | "clear";
1288
+ size?: string;
1289
+ view?: string;
1290
+ } & {
1291
+ height?: (number | string) | undefined;
1292
+ width?: (number | string) | undefined;
1293
+ } & {
1294
+ autoResize?: undefined;
1295
+ maxAuto?: undefined;
1296
+ minAuto?: undefined;
1297
+ } & {
1298
+ rows?: undefined;
1299
+ cols?: undefined;
1300
+ } & {
1301
+ clear?: undefined;
1302
+ hasDivider?: undefined;
1303
+ } & {
1304
+ labelAriaHidden?: boolean;
1305
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1306
+ view: {
1307
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1308
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1309
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1310
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1311
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1312
+ };
1313
+ size: {
1314
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1315
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1316
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1317
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1318
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1319
+ };
1320
+ hintView: {
1321
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1322
+ };
1323
+ hintSize: {
1324
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1325
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1326
+ };
1327
+ disabled: {
1328
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1329
+ };
1330
+ readOnly: {
1331
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1332
+ };
1333
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1334
+ status?: "" | "success" | "warning" | "error";
1335
+ label?: string;
1336
+ labelPlacement?: "inner" | "outer";
1337
+ titleCaption?: import("react").ReactNode;
1338
+ headerSlot?: import("react").ReactNode;
1339
+ contentRight?: React.ReactElement;
1340
+ resize?: "none" | "both" | "horizontal" | "vertical";
1341
+ helperText?: string;
1342
+ leftHelper?: import("react").ReactNode;
1343
+ rightHelper?: import("react").ReactNode;
1344
+ leftHelperPlacement?: "inner" | "outer";
1345
+ } & {
1346
+ required?: boolean;
1347
+ requiredPlacement?: "left" | "right";
1348
+ optional?: boolean;
1349
+ optionalText?: string;
1350
+ hasRequiredIndicator?: boolean;
1351
+ } & {
1352
+ hintText?: never;
1353
+ hintOpened?: never;
1354
+ hintTrigger?: never;
1355
+ hintView?: never;
1356
+ hintSize?: never;
1357
+ hintTargetIcon?: never;
1358
+ hintPlacement?: never;
1359
+ hintHasArrow?: never;
1360
+ hintOffset?: never;
1361
+ hintWidth?: never;
1362
+ hintContentLeft?: never;
1363
+ } & {
1364
+ appearance?: "default" | "clear";
1365
+ size?: string;
1366
+ view?: string;
1367
+ } & {
1368
+ rows?: number | undefined;
1369
+ cols?: number | undefined;
1370
+ } & {
1371
+ autoResize?: undefined;
1372
+ maxAuto?: undefined;
1373
+ minAuto?: undefined;
1374
+ } & {
1375
+ height?: undefined;
1376
+ width?: undefined;
1377
+ } & {
1378
+ clear?: undefined;
1379
+ hasDivider?: undefined;
1380
+ } & {
1381
+ labelAriaHidden?: boolean;
1382
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1383
+ view: {
1384
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1385
+ primary: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1386
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1387
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1388
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1389
+ };
1390
+ size: {
1391
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1392
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1393
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1394
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1395
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1396
+ };
1397
+ hintView: {
1398
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1399
+ };
1400
+ hintSize: {
1401
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1402
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1403
+ };
1404
+ disabled: {
1405
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1406
+ };
1407
+ readOnly: {
1408
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1409
+ };
1410
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1411
+ status?: "" | "success" | "warning" | "error";
1412
+ label?: string;
1413
+ labelPlacement?: "inner" | "outer";
1414
+ titleCaption?: import("react").ReactNode;
1415
+ headerSlot?: import("react").ReactNode;
1416
+ contentRight?: React.ReactElement;
1417
+ resize?: "none" | "both" | "horizontal" | "vertical";
1418
+ helperText?: string;
1419
+ leftHelper?: import("react").ReactNode;
1420
+ rightHelper?: import("react").ReactNode;
1421
+ leftHelperPlacement?: "inner" | "outer";
1422
+ } & {
1423
+ required?: boolean;
1424
+ requiredPlacement?: "left" | "right";
1425
+ optional?: boolean;
1426
+ optionalText?: string;
1427
+ hasRequiredIndicator?: boolean;
1428
+ } & {
1429
+ hintText?: never;
1430
+ hintOpened?: never;
1431
+ hintTrigger?: never;
1432
+ hintView?: never;
1433
+ hintSize?: never;
1434
+ hintTargetIcon?: never;
1435
+ hintPlacement?: never;
1436
+ hintHasArrow?: never;
1437
+ hintOffset?: never;
1438
+ hintWidth?: never;
1439
+ hintContentLeft?: never;
1440
+ } & {
1441
+ appearance?: "default" | "clear";
1442
+ size?: string;
1443
+ view?: string;
1444
+ } & {
1445
+ clear?: true | undefined;
1446
+ hasDivider?: boolean | undefined;
1447
+ } & {
1448
+ rows?: undefined;
1449
+ cols?: undefined;
1450
+ } & {
1451
+ autoResize?: undefined;
1452
+ maxAuto?: undefined;
1453
+ minAuto?: undefined;
1454
+ } & {
1455
+ height?: undefined;
1456
+ width?: undefined;
1457
+ } & {
1458
+ labelAriaHidden?: boolean;
1459
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">) & import("react").RefAttributes<HTMLElement>>;