@salutejs/sdds-dfa 0.346.0-next-sbcom.0 → 0.346.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 (33) hide show
  1. package/dist/styled-components/cjs/components/Button/Button.js +2 -1
  2. package/dist/styled-components/cjs/components/DatePicker/DatePicker.js +8 -18
  3. package/dist/styled-components/cjs/components/Link/Link.config.js +28 -19
  4. package/dist/styled-components/cjs/components/Range/Range.js +4 -9
  5. package/dist/styled-components/cjs/components/Slider/Slider.config.js +15 -6
  6. package/dist/styled-components/cjs/components/TextArea/TextArea.js +4 -9
  7. package/dist/styled-components/cjs/components/TextField/TextField.js +4 -9
  8. package/dist/styled-components/cjs/components/TextFieldSlider/TextFieldSlider.js +4 -9
  9. package/dist/styled-components/cjs/components/Tour/Tour.config.js +7 -8
  10. package/dist/styled-components/es/components/Button/Button.js +2 -1
  11. package/dist/styled-components/es/components/DatePicker/DatePicker.js +8 -18
  12. package/dist/styled-components/es/components/Link/Link.config.js +28 -19
  13. package/dist/styled-components/es/components/Range/Range.js +4 -9
  14. package/dist/styled-components/es/components/Slider/Slider.config.js +15 -6
  15. package/dist/styled-components/es/components/TextArea/TextArea.js +4 -9
  16. package/dist/styled-components/es/components/TextField/TextField.js +4 -9
  17. package/dist/styled-components/es/components/TextFieldSlider/TextFieldSlider.js +4 -9
  18. package/dist/styled-components/es/components/Tour/Tour.config.js +8 -9
  19. package/package.json +8 -8
  20. package/types/components/Attach/Attach.d.ts +32 -32
  21. package/types/components/Button/Button.d.ts +10 -10
  22. package/types/components/DatePicker/DatePicker.d.ts +252 -7
  23. package/types/components/EmbedIconButton/EmbedIconButton.d.ts +4 -4
  24. package/types/components/IconButton/IconButton.d.ts +4 -4
  25. package/types/components/Mask/Mask.d.ts +657 -9
  26. package/types/components/Radiobox/Radiobox.d.ts +2 -2
  27. package/types/components/Range/Range.d.ts +977 -13
  28. package/types/components/Select/Select.d.ts +464 -285
  29. package/types/components/Select/index.d.ts +1 -1
  30. package/types/components/Slider/Slider.d.ts +43 -27
  31. package/types/components/TextArea/TextArea.d.ts +621 -9
  32. package/types/components/TextField/TextField.d.ts +629 -9
  33. package/types/components/TextFieldSlider/TextFieldSlider.d.ts +155 -3
@@ -838,7 +838,617 @@ export declare const TextAreaClear: import("react").FunctionComponent<import("@s
838
838
  } & {
839
839
  labelAriaHidden?: boolean;
840
840
  } & import("react").RefAttributes<HTMLTextAreaElement>))>;
841
- export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
841
+ export declare const TextArea: import("react").ForwardRefExoticComponent<(((Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
842
+ view: {
843
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
844
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
845
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
846
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
847
+ };
848
+ size: {
849
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
850
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
851
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
852
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
853
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
854
+ };
855
+ hintView: {
856
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
857
+ };
858
+ hintSize: {
859
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
860
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
861
+ };
862
+ readOnly: {
863
+ true: 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
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
869
+ status?: "" | "success" | "warning" | "error";
870
+ label?: string;
871
+ labelPlacement?: "inner" | "outer";
872
+ titleCaption?: import("react").ReactNode;
873
+ headerSlot?: import("react").ReactNode;
874
+ contentRight?: React.ReactElement;
875
+ resize?: "none" | "both" | "horizontal" | "vertical";
876
+ helperText?: string;
877
+ leftHelper?: import("react").ReactNode;
878
+ rightHelper?: import("react").ReactNode;
879
+ leftHelperPlacement?: "inner" | "outer";
880
+ } & {
881
+ required?: boolean;
882
+ requiredPlacement?: "left" | "right";
883
+ optional?: boolean;
884
+ optionalText?: string;
885
+ hasRequiredIndicator?: boolean;
886
+ } & {
887
+ hintText: string;
888
+ hintTrigger?: "hover" | "click";
889
+ hintOpened?: boolean;
890
+ hintView?: string;
891
+ hintSize?: string;
892
+ hintTargetIcon?: import("react").ReactNode;
893
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
894
+ hintHasArrow?: boolean;
895
+ hintOffset?: [number, number];
896
+ hintWidth?: string;
897
+ hintContentLeft?: import("react").ReactNode;
898
+ } & {
899
+ appearance?: "default" | "clear";
900
+ size?: string;
901
+ view?: string;
902
+ } & {
903
+ autoResize?: boolean | undefined;
904
+ maxAuto?: number | undefined;
905
+ minAuto?: number | undefined;
906
+ } & {
907
+ height?: undefined;
908
+ width?: undefined;
909
+ } & {
910
+ rows?: undefined;
911
+ cols?: undefined;
912
+ } & {
913
+ clear?: undefined;
914
+ hasDivider?: undefined;
915
+ } & {
916
+ labelAriaHidden?: boolean;
917
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
918
+ view: {
919
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
920
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
921
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
922
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
923
+ };
924
+ size: {
925
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
926
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
927
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
928
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
929
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
930
+ };
931
+ hintView: {
932
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
933
+ };
934
+ hintSize: {
935
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
936
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
937
+ };
938
+ readOnly: {
939
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
940
+ };
941
+ disabled: {
942
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
943
+ };
944
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
945
+ status?: "" | "success" | "warning" | "error";
946
+ label?: string;
947
+ labelPlacement?: "inner" | "outer";
948
+ titleCaption?: import("react").ReactNode;
949
+ headerSlot?: import("react").ReactNode;
950
+ contentRight?: React.ReactElement;
951
+ resize?: "none" | "both" | "horizontal" | "vertical";
952
+ helperText?: string;
953
+ leftHelper?: import("react").ReactNode;
954
+ rightHelper?: import("react").ReactNode;
955
+ leftHelperPlacement?: "inner" | "outer";
956
+ } & {
957
+ required?: boolean;
958
+ requiredPlacement?: "left" | "right";
959
+ optional?: boolean;
960
+ optionalText?: string;
961
+ hasRequiredIndicator?: boolean;
962
+ } & {
963
+ hintText: string;
964
+ hintTrigger?: "hover" | "click";
965
+ hintOpened?: boolean;
966
+ hintView?: string;
967
+ hintSize?: string;
968
+ hintTargetIcon?: import("react").ReactNode;
969
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
970
+ hintHasArrow?: boolean;
971
+ hintOffset?: [number, number];
972
+ hintWidth?: string;
973
+ hintContentLeft?: import("react").ReactNode;
974
+ } & {
975
+ appearance?: "default" | "clear";
976
+ size?: string;
977
+ view?: string;
978
+ } & {
979
+ height?: (number | string) | undefined;
980
+ width?: (number | string) | undefined;
981
+ } & {
982
+ autoResize?: undefined;
983
+ maxAuto?: undefined;
984
+ minAuto?: undefined;
985
+ } & {
986
+ rows?: undefined;
987
+ cols?: undefined;
988
+ } & {
989
+ clear?: undefined;
990
+ hasDivider?: undefined;
991
+ } & {
992
+ labelAriaHidden?: boolean;
993
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
994
+ view: {
995
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
996
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
997
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
998
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
999
+ };
1000
+ size: {
1001
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1002
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1003
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1004
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1005
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1006
+ };
1007
+ hintView: {
1008
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1009
+ };
1010
+ hintSize: {
1011
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1012
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1013
+ };
1014
+ readOnly: {
1015
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1016
+ };
1017
+ disabled: {
1018
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1019
+ };
1020
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1021
+ status?: "" | "success" | "warning" | "error";
1022
+ label?: string;
1023
+ labelPlacement?: "inner" | "outer";
1024
+ titleCaption?: import("react").ReactNode;
1025
+ headerSlot?: import("react").ReactNode;
1026
+ contentRight?: React.ReactElement;
1027
+ resize?: "none" | "both" | "horizontal" | "vertical";
1028
+ helperText?: string;
1029
+ leftHelper?: import("react").ReactNode;
1030
+ rightHelper?: import("react").ReactNode;
1031
+ leftHelperPlacement?: "inner" | "outer";
1032
+ } & {
1033
+ required?: boolean;
1034
+ requiredPlacement?: "left" | "right";
1035
+ optional?: boolean;
1036
+ optionalText?: string;
1037
+ hasRequiredIndicator?: boolean;
1038
+ } & {
1039
+ hintText: string;
1040
+ hintTrigger?: "hover" | "click";
1041
+ hintOpened?: boolean;
1042
+ hintView?: string;
1043
+ hintSize?: string;
1044
+ hintTargetIcon?: import("react").ReactNode;
1045
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
1046
+ hintHasArrow?: boolean;
1047
+ hintOffset?: [number, number];
1048
+ hintWidth?: string;
1049
+ hintContentLeft?: import("react").ReactNode;
1050
+ } & {
1051
+ appearance?: "default" | "clear";
1052
+ size?: string;
1053
+ view?: string;
1054
+ } & {
1055
+ rows?: number | undefined;
1056
+ cols?: number | undefined;
1057
+ } & {
1058
+ autoResize?: undefined;
1059
+ maxAuto?: undefined;
1060
+ minAuto?: undefined;
1061
+ } & {
1062
+ height?: undefined;
1063
+ width?: undefined;
1064
+ } & {
1065
+ clear?: undefined;
1066
+ hasDivider?: undefined;
1067
+ } & {
1068
+ labelAriaHidden?: boolean;
1069
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1070
+ view: {
1071
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1072
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1073
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1074
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1075
+ };
1076
+ size: {
1077
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1078
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1079
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1080
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1081
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1082
+ };
1083
+ hintView: {
1084
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1085
+ };
1086
+ hintSize: {
1087
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1088
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1089
+ };
1090
+ readOnly: {
1091
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1092
+ };
1093
+ disabled: {
1094
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1095
+ };
1096
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1097
+ status?: "" | "success" | "warning" | "error";
1098
+ label?: string;
1099
+ labelPlacement?: "inner" | "outer";
1100
+ titleCaption?: import("react").ReactNode;
1101
+ headerSlot?: import("react").ReactNode;
1102
+ contentRight?: React.ReactElement;
1103
+ resize?: "none" | "both" | "horizontal" | "vertical";
1104
+ helperText?: string;
1105
+ leftHelper?: import("react").ReactNode;
1106
+ rightHelper?: import("react").ReactNode;
1107
+ leftHelperPlacement?: "inner" | "outer";
1108
+ } & {
1109
+ required?: boolean;
1110
+ requiredPlacement?: "left" | "right";
1111
+ optional?: boolean;
1112
+ optionalText?: string;
1113
+ hasRequiredIndicator?: boolean;
1114
+ } & {
1115
+ hintText: string;
1116
+ hintTrigger?: "hover" | "click";
1117
+ hintOpened?: boolean;
1118
+ hintView?: string;
1119
+ hintSize?: string;
1120
+ hintTargetIcon?: import("react").ReactNode;
1121
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
1122
+ hintHasArrow?: boolean;
1123
+ hintOffset?: [number, number];
1124
+ hintWidth?: string;
1125
+ hintContentLeft?: import("react").ReactNode;
1126
+ } & {
1127
+ appearance?: "default" | "clear";
1128
+ size?: string;
1129
+ view?: string;
1130
+ } & {
1131
+ clear?: true | undefined;
1132
+ hasDivider?: boolean | undefined;
1133
+ } & {
1134
+ rows?: undefined;
1135
+ cols?: undefined;
1136
+ } & {
1137
+ autoResize?: undefined;
1138
+ maxAuto?: undefined;
1139
+ minAuto?: undefined;
1140
+ } & {
1141
+ height?: undefined;
1142
+ width?: undefined;
1143
+ } & {
1144
+ labelAriaHidden?: boolean;
1145
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1146
+ view: {
1147
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1148
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1149
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1150
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1151
+ };
1152
+ size: {
1153
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1154
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1155
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1156
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1157
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1158
+ };
1159
+ hintView: {
1160
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1161
+ };
1162
+ hintSize: {
1163
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1164
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1165
+ };
1166
+ readOnly: {
1167
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1168
+ };
1169
+ disabled: {
1170
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1171
+ };
1172
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1173
+ status?: "" | "success" | "warning" | "error";
1174
+ label?: string;
1175
+ labelPlacement?: "inner" | "outer";
1176
+ titleCaption?: import("react").ReactNode;
1177
+ headerSlot?: import("react").ReactNode;
1178
+ contentRight?: React.ReactElement;
1179
+ resize?: "none" | "both" | "horizontal" | "vertical";
1180
+ helperText?: string;
1181
+ leftHelper?: import("react").ReactNode;
1182
+ rightHelper?: import("react").ReactNode;
1183
+ leftHelperPlacement?: "inner" | "outer";
1184
+ } & {
1185
+ required?: boolean;
1186
+ requiredPlacement?: "left" | "right";
1187
+ optional?: boolean;
1188
+ optionalText?: string;
1189
+ hasRequiredIndicator?: boolean;
1190
+ } & {
1191
+ hintText?: never;
1192
+ hintOpened?: never;
1193
+ hintTrigger?: never;
1194
+ hintView?: never;
1195
+ hintSize?: never;
1196
+ hintTargetIcon?: never;
1197
+ hintPlacement?: never;
1198
+ hintHasArrow?: never;
1199
+ hintOffset?: never;
1200
+ hintWidth?: never;
1201
+ hintContentLeft?: never;
1202
+ } & {
1203
+ appearance?: "default" | "clear";
1204
+ size?: string;
1205
+ view?: string;
1206
+ } & {
1207
+ autoResize?: boolean | undefined;
1208
+ maxAuto?: number | undefined;
1209
+ minAuto?: number | undefined;
1210
+ } & {
1211
+ height?: undefined;
1212
+ width?: undefined;
1213
+ } & {
1214
+ rows?: undefined;
1215
+ cols?: undefined;
1216
+ } & {
1217
+ clear?: undefined;
1218
+ hasDivider?: undefined;
1219
+ } & {
1220
+ labelAriaHidden?: boolean;
1221
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1222
+ view: {
1223
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1224
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1225
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1226
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1227
+ };
1228
+ size: {
1229
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1230
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1231
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1232
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1233
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1234
+ };
1235
+ hintView: {
1236
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1237
+ };
1238
+ hintSize: {
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
+ };
1242
+ readOnly: {
1243
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1244
+ };
1245
+ disabled: {
1246
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1247
+ };
1248
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1249
+ status?: "" | "success" | "warning" | "error";
1250
+ label?: string;
1251
+ labelPlacement?: "inner" | "outer";
1252
+ titleCaption?: import("react").ReactNode;
1253
+ headerSlot?: import("react").ReactNode;
1254
+ contentRight?: React.ReactElement;
1255
+ resize?: "none" | "both" | "horizontal" | "vertical";
1256
+ helperText?: string;
1257
+ leftHelper?: import("react").ReactNode;
1258
+ rightHelper?: import("react").ReactNode;
1259
+ leftHelperPlacement?: "inner" | "outer";
1260
+ } & {
1261
+ required?: boolean;
1262
+ requiredPlacement?: "left" | "right";
1263
+ optional?: boolean;
1264
+ optionalText?: string;
1265
+ hasRequiredIndicator?: boolean;
1266
+ } & {
1267
+ hintText?: never;
1268
+ hintOpened?: never;
1269
+ hintTrigger?: never;
1270
+ hintView?: never;
1271
+ hintSize?: never;
1272
+ hintTargetIcon?: never;
1273
+ hintPlacement?: never;
1274
+ hintHasArrow?: never;
1275
+ hintOffset?: never;
1276
+ hintWidth?: never;
1277
+ hintContentLeft?: never;
1278
+ } & {
1279
+ appearance?: "default" | "clear";
1280
+ size?: string;
1281
+ view?: string;
1282
+ } & {
1283
+ height?: (number | string) | undefined;
1284
+ width?: (number | string) | undefined;
1285
+ } & {
1286
+ autoResize?: undefined;
1287
+ maxAuto?: undefined;
1288
+ minAuto?: undefined;
1289
+ } & {
1290
+ rows?: undefined;
1291
+ cols?: undefined;
1292
+ } & {
1293
+ clear?: undefined;
1294
+ hasDivider?: undefined;
1295
+ } & {
1296
+ labelAriaHidden?: boolean;
1297
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1298
+ view: {
1299
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1300
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1301
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1302
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1303
+ };
1304
+ size: {
1305
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1306
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1307
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1308
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1309
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1310
+ };
1311
+ hintView: {
1312
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1313
+ };
1314
+ hintSize: {
1315
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1316
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1317
+ };
1318
+ readOnly: {
1319
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1320
+ };
1321
+ disabled: {
1322
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1323
+ };
1324
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1325
+ status?: "" | "success" | "warning" | "error";
1326
+ label?: string;
1327
+ labelPlacement?: "inner" | "outer";
1328
+ titleCaption?: import("react").ReactNode;
1329
+ headerSlot?: import("react").ReactNode;
1330
+ contentRight?: React.ReactElement;
1331
+ resize?: "none" | "both" | "horizontal" | "vertical";
1332
+ helperText?: string;
1333
+ leftHelper?: import("react").ReactNode;
1334
+ rightHelper?: import("react").ReactNode;
1335
+ leftHelperPlacement?: "inner" | "outer";
1336
+ } & {
1337
+ required?: boolean;
1338
+ requiredPlacement?: "left" | "right";
1339
+ optional?: boolean;
1340
+ optionalText?: string;
1341
+ hasRequiredIndicator?: boolean;
1342
+ } & {
1343
+ hintText?: never;
1344
+ hintOpened?: never;
1345
+ hintTrigger?: never;
1346
+ hintView?: never;
1347
+ hintSize?: never;
1348
+ hintTargetIcon?: never;
1349
+ hintPlacement?: never;
1350
+ hintHasArrow?: never;
1351
+ hintOffset?: never;
1352
+ hintWidth?: never;
1353
+ hintContentLeft?: never;
1354
+ } & {
1355
+ appearance?: "default" | "clear";
1356
+ size?: string;
1357
+ view?: string;
1358
+ } & {
1359
+ rows?: number | undefined;
1360
+ cols?: number | undefined;
1361
+ } & {
1362
+ autoResize?: undefined;
1363
+ maxAuto?: undefined;
1364
+ minAuto?: undefined;
1365
+ } & {
1366
+ height?: undefined;
1367
+ width?: undefined;
1368
+ } & {
1369
+ clear?: undefined;
1370
+ hasDivider?: undefined;
1371
+ } & {
1372
+ labelAriaHidden?: boolean;
1373
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1374
+ view: {
1375
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1376
+ positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1377
+ warning: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1378
+ negative: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1379
+ };
1380
+ size: {
1381
+ xl: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1382
+ l: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1383
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1384
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1385
+ xs: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1386
+ };
1387
+ hintView: {
1388
+ default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1389
+ };
1390
+ hintSize: {
1391
+ m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1392
+ s: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1393
+ };
1394
+ readOnly: {
1395
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1396
+ };
1397
+ disabled: {
1398
+ true: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1399
+ };
1400
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
1401
+ status?: "" | "success" | "warning" | "error";
1402
+ label?: string;
1403
+ labelPlacement?: "inner" | "outer";
1404
+ titleCaption?: import("react").ReactNode;
1405
+ headerSlot?: import("react").ReactNode;
1406
+ contentRight?: React.ReactElement;
1407
+ resize?: "none" | "both" | "horizontal" | "vertical";
1408
+ helperText?: string;
1409
+ leftHelper?: import("react").ReactNode;
1410
+ rightHelper?: import("react").ReactNode;
1411
+ leftHelperPlacement?: "inner" | "outer";
1412
+ } & {
1413
+ required?: boolean;
1414
+ requiredPlacement?: "left" | "right";
1415
+ optional?: boolean;
1416
+ optionalText?: string;
1417
+ hasRequiredIndicator?: boolean;
1418
+ } & {
1419
+ hintText?: never;
1420
+ hintOpened?: never;
1421
+ hintTrigger?: never;
1422
+ hintView?: never;
1423
+ hintSize?: never;
1424
+ hintTargetIcon?: never;
1425
+ hintPlacement?: never;
1426
+ hintHasArrow?: never;
1427
+ hintOffset?: never;
1428
+ hintWidth?: never;
1429
+ hintContentLeft?: never;
1430
+ } & {
1431
+ appearance?: "default" | "clear";
1432
+ size?: string;
1433
+ view?: string;
1434
+ } & {
1435
+ clear?: true | undefined;
1436
+ hasDivider?: boolean | undefined;
1437
+ } & {
1438
+ rows?: undefined;
1439
+ cols?: undefined;
1440
+ } & {
1441
+ autoResize?: undefined;
1442
+ maxAuto?: undefined;
1443
+ minAuto?: undefined;
1444
+ } & {
1445
+ height?: undefined;
1446
+ width?: undefined;
1447
+ } & {
1448
+ labelAriaHidden?: boolean;
1449
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance">) & {
1450
+ appearance?: "default";
1451
+ }) | ((Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
842
1452
  view: {
843
1453
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
844
1454
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -914,7 +1524,7 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
914
1524
  hasDivider?: undefined;
915
1525
  } & {
916
1526
  labelAriaHidden?: boolean;
917
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1527
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
918
1528
  view: {
919
1529
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
920
1530
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -990,7 +1600,7 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
990
1600
  hasDivider?: undefined;
991
1601
  } & {
992
1602
  labelAriaHidden?: boolean;
993
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1603
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
994
1604
  view: {
995
1605
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
996
1606
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -1066,7 +1676,7 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
1066
1676
  hasDivider?: undefined;
1067
1677
  } & {
1068
1678
  labelAriaHidden?: boolean;
1069
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1679
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1070
1680
  view: {
1071
1681
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1072
1682
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -1142,7 +1752,7 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
1142
1752
  width?: undefined;
1143
1753
  } & {
1144
1754
  labelAriaHidden?: boolean;
1145
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1755
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1146
1756
  view: {
1147
1757
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1148
1758
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -1218,7 +1828,7 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
1218
1828
  hasDivider?: undefined;
1219
1829
  } & {
1220
1830
  labelAriaHidden?: boolean;
1221
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1831
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1222
1832
  view: {
1223
1833
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1224
1834
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -1294,7 +1904,7 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
1294
1904
  hasDivider?: undefined;
1295
1905
  } & {
1296
1906
  labelAriaHidden?: boolean;
1297
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1907
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1298
1908
  view: {
1299
1909
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1300
1910
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -1370,7 +1980,7 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
1370
1980
  hasDivider?: undefined;
1371
1981
  } & {
1372
1982
  labelAriaHidden?: boolean;
1373
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1983
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance"> | Omit<Omit<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
1374
1984
  view: {
1375
1985
  default: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
1376
1986
  positive: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
@@ -1446,4 +2056,6 @@ export declare const TextArea: import("react").ForwardRefExoticComponent<(Omit<i
1446
2056
  width?: undefined;
1447
2057
  } & {
1448
2058
  labelAriaHidden?: boolean;
1449
- } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">) & import("react").RefAttributes<HTMLElement>>;
2059
+ } & import("react").RefAttributes<HTMLTextAreaElement>, "ref">, "appearance">) & {
2060
+ appearance: "clear";
2061
+ })) & import("react").RefAttributes<HTMLTextAreaElement>>;