@salutejs/sdds-cs 0.317.0-canary.1991.15252784001.0 → 0.317.0-canary.1992.15255012441.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 (61) hide show
  1. package/components/Accordion/Accordion.d.ts +10 -9
  2. package/components/Attach/Attach.d.ts +159 -158
  3. package/components/Autocomplete/Autocomplete.d.ts +353 -352
  4. package/components/Avatar/Avatar.d.ts +47 -46
  5. package/components/AvatarGroup/AvatarGroup.d.ts +2 -1
  6. package/components/Badge/Badge.d.ts +41 -40
  7. package/components/Breadcrumbs/Breadcrumbs.d.ts +4 -3
  8. package/components/Button/Button.d.ts +71 -71
  9. package/components/ButtonGroup/ButtonGroup.d.ts +1 -0
  10. package/components/Card/Card.d.ts +6 -5
  11. package/components/Cell/Cell.d.ts +20 -19
  12. package/components/Checkbox/Checkbox.d.ts +1 -1
  13. package/components/Chip/Chip.d.ts +1 -0
  14. package/components/ChipGroup/ChipGroup.d.ts +1 -0
  15. package/components/Combobox/Combobox.d.ts +951 -951
  16. package/components/Counter/Counter.d.ts +1 -0
  17. package/components/DatePicker/DatePicker.d.ts +54 -53
  18. package/components/Divider/Divider.d.ts +1 -0
  19. package/components/Drawer/Drawer.d.ts +19 -18
  20. package/components/Dropdown/Dropdown.d.ts +52 -52
  21. package/components/Dropzone/Dropzone.d.ts +16 -15
  22. package/components/EmptyState/EmptyState.d.ts +1 -0
  23. package/components/Flow/Flow.d.ts +2 -1
  24. package/components/Grid/Grid.d.ts +1 -0
  25. package/components/IconButton/IconButton.d.ts +36 -35
  26. package/components/Image/Image.d.ts +4 -3
  27. package/components/Indicator/Indicator.d.ts +1 -0
  28. package/components/Link/Link.d.ts +2 -1
  29. package/components/Mask/Mask.d.ts +225 -224
  30. package/components/NumberFormat/NumberFormat.d.ts +1 -1
  31. package/components/NumberInput/NumberInput.d.ts +39 -38
  32. package/components/Pagination/Pagination.d.ts +1 -0
  33. package/components/Popover/Popover.d.ts +1 -0
  34. package/components/Price/Price.d.ts +1 -0
  35. package/components/Progress/Progress.d.ts +1 -0
  36. package/components/Radiobox/Radiobox.d.ts +1 -1
  37. package/components/Range/Range.d.ts +106 -105
  38. package/components/Rating/Rating.d.ts +14 -13
  39. package/components/Segment/Segment.d.ts +9 -8
  40. package/components/Select/Select.d.ts +244 -244
  41. package/components/Sheet/Sheet.d.ts +1 -0
  42. package/components/Skeleton/Skeleton.d.ts +5 -4
  43. package/components/Slider/Slider.d.ts +105 -96
  44. package/components/Spinner/Spinner.d.ts +14 -9
  45. package/components/Steps/Steps.d.ts +1 -0
  46. package/components/Switch/Switch.d.ts +1 -1
  47. package/components/Table/Table.d.ts +1 -0
  48. package/components/Tabs/TabItem.d.ts +23 -23
  49. package/components/Tabs/Tabs.d.ts +1 -1
  50. package/components/TextArea/TextArea.d.ts +206 -205
  51. package/components/TextField/TextField.d.ts +225 -224
  52. package/components/Toast/Toast.d.ts +1 -0
  53. package/components/ToastNew/ToastNew.d.ts +1 -1
  54. package/components/Tokens/Colors/Colors.styles.d.ts +26 -25
  55. package/components/Tokens/Typography/Typography.styles.d.ts +24 -23
  56. package/components/Toolbar/Toolbar.d.ts +6 -5
  57. package/components/Tree/Tree.d.ts +1 -0
  58. package/components/Typography/Typography.d.ts +205 -204
  59. package/components/ViewContainer/ViewContainer.d.ts +1 -0
  60. package/mixins/index.d.ts +2 -1
  61. package/package.json +8 -8
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  /**
2
3
  * Поле ввода многострочного текста.
3
4
  */
@@ -26,37 +27,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
26
27
  readOnly: {
27
28
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
28
29
  };
29
- }> & ((Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
30
- status?: "" | "success" | "warning" | "error";
31
- label?: string;
32
- labelPlacement?: "inner" | "outer";
30
+ }> & ((Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
31
+ status?: "" | "warning" | "success" | "error" | undefined;
32
+ label?: string | undefined;
33
+ labelPlacement?: "outer" | "inner" | undefined;
33
34
  titleCaption?: import("react").ReactNode;
34
- contentRight?: React.ReactElement;
35
- resize?: "none" | "both" | "horizontal" | "vertical";
36
- helperText?: string;
35
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
36
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
37
+ helperText?: string | undefined;
37
38
  leftHelper?: import("react").ReactNode;
38
39
  rightHelper?: import("react").ReactNode;
39
- leftHelperPlacement?: "inner" | "outer";
40
+ leftHelperPlacement?: "outer" | "inner" | undefined;
40
41
  } & {
41
- required?: boolean;
42
- requiredPlacement?: "left" | "right";
43
- optional?: boolean;
44
- hasRequiredIndicator?: boolean;
42
+ required?: boolean | undefined;
43
+ requiredPlacement?: "left" | "right" | undefined;
44
+ optional?: boolean | undefined;
45
+ hasRequiredIndicator?: boolean | undefined;
45
46
  } & {
46
47
  hintText: string;
47
- hintTrigger?: "hover" | "click";
48
- hintOpened?: boolean;
49
- hintView?: string;
50
- hintSize?: string;
48
+ hintTrigger?: "click" | "hover" | undefined;
49
+ hintOpened?: boolean | undefined;
50
+ hintView?: string | undefined;
51
+ hintSize?: string | undefined;
51
52
  hintTargetIcon?: import("react").ReactNode;
52
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
53
- hintHasArrow?: boolean;
54
- hintOffset?: [number, number];
55
- hintWidth?: string;
53
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
54
+ hintHasArrow?: boolean | undefined;
55
+ hintOffset?: [number, number] | undefined;
56
+ hintWidth?: string | undefined;
56
57
  hintContentLeft?: import("react").ReactNode;
57
58
  } & {
58
- size?: string;
59
- view?: string;
59
+ size?: string | undefined;
60
+ view?: string | undefined;
60
61
  } & {
61
62
  autoResize?: boolean | undefined;
62
63
  maxAuto?: number | undefined;
@@ -70,40 +71,40 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
70
71
  } & {
71
72
  clear?: undefined;
72
73
  hasDivider?: undefined;
73
- } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
74
- status?: "" | "success" | "warning" | "error";
75
- label?: string;
76
- labelPlacement?: "inner" | "outer";
74
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
75
+ status?: "" | "warning" | "success" | "error" | undefined;
76
+ label?: string | undefined;
77
+ labelPlacement?: "outer" | "inner" | undefined;
77
78
  titleCaption?: import("react").ReactNode;
78
- contentRight?: React.ReactElement;
79
- resize?: "none" | "both" | "horizontal" | "vertical";
80
- helperText?: string;
79
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
80
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
81
+ helperText?: string | undefined;
81
82
  leftHelper?: import("react").ReactNode;
82
83
  rightHelper?: import("react").ReactNode;
83
- leftHelperPlacement?: "inner" | "outer";
84
+ leftHelperPlacement?: "outer" | "inner" | undefined;
84
85
  } & {
85
- required?: boolean;
86
- requiredPlacement?: "left" | "right";
87
- optional?: boolean;
88
- hasRequiredIndicator?: boolean;
86
+ required?: boolean | undefined;
87
+ requiredPlacement?: "left" | "right" | undefined;
88
+ optional?: boolean | undefined;
89
+ hasRequiredIndicator?: boolean | undefined;
89
90
  } & {
90
91
  hintText: string;
91
- hintTrigger?: "hover" | "click";
92
- hintOpened?: boolean;
93
- hintView?: string;
94
- hintSize?: string;
92
+ hintTrigger?: "click" | "hover" | undefined;
93
+ hintOpened?: boolean | undefined;
94
+ hintView?: string | undefined;
95
+ hintSize?: string | undefined;
95
96
  hintTargetIcon?: import("react").ReactNode;
96
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
97
- hintHasArrow?: boolean;
98
- hintOffset?: [number, number];
99
- hintWidth?: string;
97
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
98
+ hintHasArrow?: boolean | undefined;
99
+ hintOffset?: [number, number] | undefined;
100
+ hintWidth?: string | undefined;
100
101
  hintContentLeft?: import("react").ReactNode;
101
102
  } & {
102
- size?: string;
103
- view?: string;
103
+ size?: string | undefined;
104
+ view?: string | undefined;
104
105
  } & {
105
- height?: (number | string) | undefined;
106
- width?: (number | string) | undefined;
106
+ height?: string | number | undefined;
107
+ width?: string | number | undefined;
107
108
  } & {
108
109
  autoResize?: undefined;
109
110
  maxAuto?: undefined;
@@ -114,37 +115,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
114
115
  } & {
115
116
  clear?: undefined;
116
117
  hasDivider?: undefined;
117
- } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
118
- status?: "" | "success" | "warning" | "error";
119
- label?: string;
120
- labelPlacement?: "inner" | "outer";
118
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
119
+ status?: "" | "warning" | "success" | "error" | undefined;
120
+ label?: string | undefined;
121
+ labelPlacement?: "outer" | "inner" | undefined;
121
122
  titleCaption?: import("react").ReactNode;
122
- contentRight?: React.ReactElement;
123
- resize?: "none" | "both" | "horizontal" | "vertical";
124
- helperText?: string;
123
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
124
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
125
+ helperText?: string | undefined;
125
126
  leftHelper?: import("react").ReactNode;
126
127
  rightHelper?: import("react").ReactNode;
127
- leftHelperPlacement?: "inner" | "outer";
128
+ leftHelperPlacement?: "outer" | "inner" | undefined;
128
129
  } & {
129
- required?: boolean;
130
- requiredPlacement?: "left" | "right";
131
- optional?: boolean;
132
- hasRequiredIndicator?: boolean;
130
+ required?: boolean | undefined;
131
+ requiredPlacement?: "left" | "right" | undefined;
132
+ optional?: boolean | undefined;
133
+ hasRequiredIndicator?: boolean | undefined;
133
134
  } & {
134
135
  hintText: string;
135
- hintTrigger?: "hover" | "click";
136
- hintOpened?: boolean;
137
- hintView?: string;
138
- hintSize?: string;
136
+ hintTrigger?: "click" | "hover" | undefined;
137
+ hintOpened?: boolean | undefined;
138
+ hintView?: string | undefined;
139
+ hintSize?: string | undefined;
139
140
  hintTargetIcon?: import("react").ReactNode;
140
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
141
- hintHasArrow?: boolean;
142
- hintOffset?: [number, number];
143
- hintWidth?: string;
141
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
142
+ hintHasArrow?: boolean | undefined;
143
+ hintOffset?: [number, number] | undefined;
144
+ hintWidth?: string | undefined;
144
145
  hintContentLeft?: import("react").ReactNode;
145
146
  } & {
146
- size?: string;
147
- view?: string;
147
+ size?: string | undefined;
148
+ view?: string | undefined;
148
149
  } & {
149
150
  rows?: number | undefined;
150
151
  cols?: number | undefined;
@@ -158,37 +159,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
158
159
  } & {
159
160
  clear?: undefined;
160
161
  hasDivider?: undefined;
161
- } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
162
- status?: "" | "success" | "warning" | "error";
163
- label?: string;
164
- labelPlacement?: "inner" | "outer";
162
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
163
+ status?: "" | "warning" | "success" | "error" | undefined;
164
+ label?: string | undefined;
165
+ labelPlacement?: "outer" | "inner" | undefined;
165
166
  titleCaption?: import("react").ReactNode;
166
- contentRight?: React.ReactElement;
167
- resize?: "none" | "both" | "horizontal" | "vertical";
168
- helperText?: string;
167
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
168
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
169
+ helperText?: string | undefined;
169
170
  leftHelper?: import("react").ReactNode;
170
171
  rightHelper?: import("react").ReactNode;
171
- leftHelperPlacement?: "inner" | "outer";
172
+ leftHelperPlacement?: "outer" | "inner" | undefined;
172
173
  } & {
173
- required?: boolean;
174
- requiredPlacement?: "left" | "right";
175
- optional?: boolean;
176
- hasRequiredIndicator?: boolean;
174
+ required?: boolean | undefined;
175
+ requiredPlacement?: "left" | "right" | undefined;
176
+ optional?: boolean | undefined;
177
+ hasRequiredIndicator?: boolean | undefined;
177
178
  } & {
178
179
  hintText: string;
179
- hintTrigger?: "hover" | "click";
180
- hintOpened?: boolean;
181
- hintView?: string;
182
- hintSize?: string;
180
+ hintTrigger?: "click" | "hover" | undefined;
181
+ hintOpened?: boolean | undefined;
182
+ hintView?: string | undefined;
183
+ hintSize?: string | undefined;
183
184
  hintTargetIcon?: import("react").ReactNode;
184
- hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | Array<import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic>;
185
- hintHasArrow?: boolean;
186
- hintOffset?: [number, number];
187
- hintWidth?: string;
185
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
186
+ hintHasArrow?: boolean | undefined;
187
+ hintOffset?: [number, number] | undefined;
188
+ hintWidth?: string | undefined;
188
189
  hintContentLeft?: import("react").ReactNode;
189
190
  } & {
190
- size?: string;
191
- view?: string;
191
+ size?: string | undefined;
192
+ view?: string | undefined;
192
193
  } & {
193
194
  clear?: true | undefined;
194
195
  hasDivider?: boolean | undefined;
@@ -202,37 +203,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
202
203
  } & {
203
204
  height?: undefined;
204
205
  width?: undefined;
205
- } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
206
- status?: "" | "success" | "warning" | "error";
207
- label?: string;
208
- labelPlacement?: "inner" | "outer";
206
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
207
+ status?: "" | "warning" | "success" | "error" | undefined;
208
+ label?: string | undefined;
209
+ labelPlacement?: "outer" | "inner" | undefined;
209
210
  titleCaption?: import("react").ReactNode;
210
- contentRight?: React.ReactElement;
211
- resize?: "none" | "both" | "horizontal" | "vertical";
212
- helperText?: string;
211
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
212
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
213
+ helperText?: string | undefined;
213
214
  leftHelper?: import("react").ReactNode;
214
215
  rightHelper?: import("react").ReactNode;
215
- leftHelperPlacement?: "inner" | "outer";
216
- } & {
217
- required?: boolean;
218
- requiredPlacement?: "left" | "right";
219
- optional?: boolean;
220
- hasRequiredIndicator?: boolean;
221
- } & {
222
- hintText?: never;
223
- hintOpened?: never;
224
- hintTrigger?: never;
225
- hintView?: never;
226
- hintSize?: never;
227
- hintTargetIcon?: never;
228
- hintPlacement?: never;
229
- hintHasArrow?: never;
230
- hintOffset?: never;
231
- hintWidth?: never;
232
- hintContentLeft?: never;
233
- } & {
234
- size?: string;
235
- view?: string;
216
+ leftHelperPlacement?: "outer" | "inner" | undefined;
217
+ } & {
218
+ required?: boolean | undefined;
219
+ requiredPlacement?: "left" | "right" | undefined;
220
+ optional?: boolean | undefined;
221
+ hasRequiredIndicator?: boolean | undefined;
222
+ } & {
223
+ hintText?: undefined;
224
+ hintOpened?: undefined;
225
+ hintTrigger?: undefined;
226
+ hintView?: undefined;
227
+ hintSize?: undefined;
228
+ hintTargetIcon?: undefined;
229
+ hintPlacement?: undefined;
230
+ hintHasArrow?: undefined;
231
+ hintOffset?: undefined;
232
+ hintWidth?: undefined;
233
+ hintContentLeft?: undefined;
234
+ } & {
235
+ size?: string | undefined;
236
+ view?: string | undefined;
236
237
  } & {
237
238
  autoResize?: boolean | undefined;
238
239
  maxAuto?: number | undefined;
@@ -246,40 +247,40 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
246
247
  } & {
247
248
  clear?: undefined;
248
249
  hasDivider?: undefined;
249
- } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
250
- status?: "" | "success" | "warning" | "error";
251
- label?: string;
252
- labelPlacement?: "inner" | "outer";
250
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
251
+ status?: "" | "warning" | "success" | "error" | undefined;
252
+ label?: string | undefined;
253
+ labelPlacement?: "outer" | "inner" | undefined;
253
254
  titleCaption?: import("react").ReactNode;
254
- contentRight?: React.ReactElement;
255
- resize?: "none" | "both" | "horizontal" | "vertical";
256
- helperText?: string;
255
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
256
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
257
+ helperText?: string | undefined;
257
258
  leftHelper?: import("react").ReactNode;
258
259
  rightHelper?: import("react").ReactNode;
259
- leftHelperPlacement?: "inner" | "outer";
260
- } & {
261
- required?: boolean;
262
- requiredPlacement?: "left" | "right";
263
- optional?: boolean;
264
- hasRequiredIndicator?: boolean;
265
- } & {
266
- hintText?: never;
267
- hintOpened?: never;
268
- hintTrigger?: never;
269
- hintView?: never;
270
- hintSize?: never;
271
- hintTargetIcon?: never;
272
- hintPlacement?: never;
273
- hintHasArrow?: never;
274
- hintOffset?: never;
275
- hintWidth?: never;
276
- hintContentLeft?: never;
277
- } & {
278
- size?: string;
279
- view?: string;
280
- } & {
281
- height?: (number | string) | undefined;
282
- width?: (number | string) | undefined;
260
+ leftHelperPlacement?: "outer" | "inner" | undefined;
261
+ } & {
262
+ required?: boolean | undefined;
263
+ requiredPlacement?: "left" | "right" | undefined;
264
+ optional?: boolean | undefined;
265
+ hasRequiredIndicator?: boolean | undefined;
266
+ } & {
267
+ hintText?: undefined;
268
+ hintOpened?: undefined;
269
+ hintTrigger?: undefined;
270
+ hintView?: undefined;
271
+ hintSize?: undefined;
272
+ hintTargetIcon?: undefined;
273
+ hintPlacement?: undefined;
274
+ hintHasArrow?: undefined;
275
+ hintOffset?: undefined;
276
+ hintWidth?: undefined;
277
+ hintContentLeft?: undefined;
278
+ } & {
279
+ size?: string | undefined;
280
+ view?: string | undefined;
281
+ } & {
282
+ height?: string | number | undefined;
283
+ width?: string | number | undefined;
283
284
  } & {
284
285
  autoResize?: undefined;
285
286
  maxAuto?: undefined;
@@ -290,37 +291,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
290
291
  } & {
291
292
  clear?: undefined;
292
293
  hasDivider?: undefined;
293
- } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
294
- status?: "" | "success" | "warning" | "error";
295
- label?: string;
296
- labelPlacement?: "inner" | "outer";
294
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
295
+ status?: "" | "warning" | "success" | "error" | undefined;
296
+ label?: string | undefined;
297
+ labelPlacement?: "outer" | "inner" | undefined;
297
298
  titleCaption?: import("react").ReactNode;
298
- contentRight?: React.ReactElement;
299
- resize?: "none" | "both" | "horizontal" | "vertical";
300
- helperText?: string;
299
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
300
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
301
+ helperText?: string | undefined;
301
302
  leftHelper?: import("react").ReactNode;
302
303
  rightHelper?: import("react").ReactNode;
303
- leftHelperPlacement?: "inner" | "outer";
304
- } & {
305
- required?: boolean;
306
- requiredPlacement?: "left" | "right";
307
- optional?: boolean;
308
- hasRequiredIndicator?: boolean;
309
- } & {
310
- hintText?: never;
311
- hintOpened?: never;
312
- hintTrigger?: never;
313
- hintView?: never;
314
- hintSize?: never;
315
- hintTargetIcon?: never;
316
- hintPlacement?: never;
317
- hintHasArrow?: never;
318
- hintOffset?: never;
319
- hintWidth?: never;
320
- hintContentLeft?: never;
321
- } & {
322
- size?: string;
323
- view?: string;
304
+ leftHelperPlacement?: "outer" | "inner" | undefined;
305
+ } & {
306
+ required?: boolean | undefined;
307
+ requiredPlacement?: "left" | "right" | undefined;
308
+ optional?: boolean | undefined;
309
+ hasRequiredIndicator?: boolean | undefined;
310
+ } & {
311
+ hintText?: undefined;
312
+ hintOpened?: undefined;
313
+ hintTrigger?: undefined;
314
+ hintView?: undefined;
315
+ hintSize?: undefined;
316
+ hintTargetIcon?: undefined;
317
+ hintPlacement?: undefined;
318
+ hintHasArrow?: undefined;
319
+ hintOffset?: undefined;
320
+ hintWidth?: undefined;
321
+ hintContentLeft?: undefined;
322
+ } & {
323
+ size?: string | undefined;
324
+ view?: string | undefined;
324
325
  } & {
325
326
  rows?: number | undefined;
326
327
  cols?: number | undefined;
@@ -334,37 +335,37 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
334
335
  } & {
335
336
  clear?: undefined;
336
337
  hasDivider?: undefined;
337
- } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "cols" | "rows"> & {
338
- status?: "" | "success" | "warning" | "error";
339
- label?: string;
340
- labelPlacement?: "inner" | "outer";
338
+ } & import("react").RefAttributes<HTMLTextAreaElement>) | (Omit<import("@salutejs/plasma-new-hope/styled-components").TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "rows" | "cols"> & {
339
+ status?: "" | "warning" | "success" | "error" | undefined;
340
+ label?: string | undefined;
341
+ labelPlacement?: "outer" | "inner" | undefined;
341
342
  titleCaption?: import("react").ReactNode;
342
- contentRight?: React.ReactElement;
343
- resize?: "none" | "both" | "horizontal" | "vertical";
344
- helperText?: string;
343
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
344
+ resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
345
+ helperText?: string | undefined;
345
346
  leftHelper?: import("react").ReactNode;
346
347
  rightHelper?: import("react").ReactNode;
347
- leftHelperPlacement?: "inner" | "outer";
348
- } & {
349
- required?: boolean;
350
- requiredPlacement?: "left" | "right";
351
- optional?: boolean;
352
- hasRequiredIndicator?: boolean;
353
- } & {
354
- hintText?: never;
355
- hintOpened?: never;
356
- hintTrigger?: never;
357
- hintView?: never;
358
- hintSize?: never;
359
- hintTargetIcon?: never;
360
- hintPlacement?: never;
361
- hintHasArrow?: never;
362
- hintOffset?: never;
363
- hintWidth?: never;
364
- hintContentLeft?: never;
365
- } & {
366
- size?: string;
367
- view?: string;
348
+ leftHelperPlacement?: "outer" | "inner" | undefined;
349
+ } & {
350
+ required?: boolean | undefined;
351
+ requiredPlacement?: "left" | "right" | undefined;
352
+ optional?: boolean | undefined;
353
+ hasRequiredIndicator?: boolean | undefined;
354
+ } & {
355
+ hintText?: undefined;
356
+ hintOpened?: undefined;
357
+ hintTrigger?: undefined;
358
+ hintView?: undefined;
359
+ hintSize?: undefined;
360
+ hintTargetIcon?: undefined;
361
+ hintPlacement?: undefined;
362
+ hintHasArrow?: undefined;
363
+ hintOffset?: undefined;
364
+ hintWidth?: undefined;
365
+ hintContentLeft?: undefined;
366
+ } & {
367
+ size?: string | undefined;
368
+ view?: string | undefined;
368
369
  } & {
369
370
  clear?: true | undefined;
370
371
  hasDivider?: boolean | undefined;