@salutejs/sdds-finportal 0.145.1-canary.1501.11457027337.0 → 0.146.0-canary.1459.11461047015.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,6 +22,13 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
22
22
  clear: {
23
23
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
24
24
  };
25
+ hintView: {
26
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
27
+ };
28
+ hintSize: {
29
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
30
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
31
+ };
25
32
  disabled: {
26
33
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
27
34
  };
@@ -36,6 +43,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
36
43
  } & {
37
44
  label?: string | undefined;
38
45
  labelPlacement?: "outer" | "inner" | undefined;
46
+ titleCaption?: import("react").ReactNode;
39
47
  leftHelper?: string | undefined;
40
48
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
41
49
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -50,6 +58,17 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
50
58
  } & {
51
59
  clear?: boolean | undefined;
52
60
  hasDivider?: boolean | undefined;
61
+ } & {
62
+ hintText: string;
63
+ hintTrigger?: "hover" | "click" | undefined;
64
+ hintView?: string | undefined;
65
+ hintSize?: string | undefined;
66
+ hintTargetIcon?: import("react").ReactNode;
67
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
68
+ hintHasArrow?: boolean | undefined;
69
+ hintOffset?: [number, number] | undefined;
70
+ hintWidth?: string | undefined;
71
+ hintContentLeft?: import("react").ReactNode;
53
72
  } & {
54
73
  chips?: undefined;
55
74
  onChangeChips?: undefined;
@@ -63,6 +82,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
63
82
  } & {
64
83
  label?: string | undefined;
65
84
  labelPlacement?: "outer" | "inner" | undefined;
85
+ titleCaption?: import("react").ReactNode;
66
86
  leftHelper?: string | undefined;
67
87
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
68
88
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -77,6 +97,17 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
77
97
  } & {
78
98
  clear?: boolean | undefined;
79
99
  hasDivider?: boolean | undefined;
100
+ } & {
101
+ hintText: string;
102
+ hintTrigger?: "hover" | "click" | undefined;
103
+ hintView?: string | undefined;
104
+ hintSize?: string | undefined;
105
+ hintTargetIcon?: import("react").ReactNode;
106
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
107
+ hintHasArrow?: boolean | undefined;
108
+ hintOffset?: [number, number] | undefined;
109
+ hintWidth?: string | undefined;
110
+ hintContentLeft?: import("react").ReactNode;
80
111
  } & {
81
112
  enumerationType: "chip";
82
113
  onSearch?: undefined;
@@ -90,6 +121,85 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
90
121
  } & {
91
122
  label?: string | undefined;
92
123
  labelPlacement?: "outer" | "inner" | undefined;
124
+ titleCaption?: import("react").ReactNode;
125
+ leftHelper?: string | undefined;
126
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
127
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
128
+ textBefore?: string | undefined;
129
+ textAfter?: string | undefined;
130
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
131
+ } & {
132
+ requiredPlacement?: "right" | "left" | undefined;
133
+ } & {
134
+ required: true;
135
+ optional?: false | undefined;
136
+ } & {
137
+ clear?: boolean | undefined;
138
+ hasDivider?: boolean | undefined;
139
+ } & {
140
+ hintTrigger?: undefined;
141
+ hintText?: undefined;
142
+ hintView?: undefined;
143
+ hintSize?: undefined;
144
+ hintTargetIcon?: undefined;
145
+ hintPlacement?: undefined;
146
+ hintHasArrow?: undefined;
147
+ hintOffset?: undefined;
148
+ hintWidth?: undefined;
149
+ hintContentLeft?: undefined;
150
+ } & {
151
+ chips?: undefined;
152
+ onChangeChips?: undefined;
153
+ enumerationType?: "plain" | undefined;
154
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
155
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
156
+ size?: string | undefined;
157
+ view?: string | undefined;
158
+ readOnly?: boolean | undefined;
159
+ disabled?: boolean | undefined;
160
+ } & {
161
+ label?: string | undefined;
162
+ labelPlacement?: "outer" | "inner" | undefined;
163
+ titleCaption?: import("react").ReactNode;
164
+ leftHelper?: string | undefined;
165
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
166
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
167
+ textBefore?: string | undefined;
168
+ textAfter?: string | undefined;
169
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
170
+ } & {
171
+ requiredPlacement?: "right" | "left" | undefined;
172
+ } & {
173
+ required: true;
174
+ optional?: false | undefined;
175
+ } & {
176
+ clear?: boolean | undefined;
177
+ hasDivider?: boolean | undefined;
178
+ } & {
179
+ hintTrigger?: undefined;
180
+ hintText?: undefined;
181
+ hintView?: undefined;
182
+ hintSize?: undefined;
183
+ hintTargetIcon?: undefined;
184
+ hintPlacement?: undefined;
185
+ hintHasArrow?: undefined;
186
+ hintOffset?: undefined;
187
+ hintWidth?: undefined;
188
+ hintContentLeft?: undefined;
189
+ } & {
190
+ enumerationType: "chip";
191
+ onSearch?: undefined;
192
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
193
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
194
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
195
+ size?: string | undefined;
196
+ view?: string | undefined;
197
+ readOnly?: boolean | undefined;
198
+ disabled?: boolean | undefined;
199
+ } & {
200
+ label?: string | undefined;
201
+ labelPlacement?: "outer" | "inner" | undefined;
202
+ titleCaption?: import("react").ReactNode;
93
203
  leftHelper?: string | undefined;
94
204
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
95
205
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -104,6 +214,17 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
104
214
  } & {
105
215
  clear?: false | undefined;
106
216
  hasDivider?: undefined;
217
+ } & {
218
+ hintText: string;
219
+ hintTrigger?: "hover" | "click" | undefined;
220
+ hintView?: string | undefined;
221
+ hintSize?: string | undefined;
222
+ hintTargetIcon?: import("react").ReactNode;
223
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
224
+ hintHasArrow?: boolean | undefined;
225
+ hintOffset?: [number, number] | undefined;
226
+ hintWidth?: string | undefined;
227
+ hintContentLeft?: import("react").ReactNode;
107
228
  } & {
108
229
  chips?: undefined;
109
230
  onChangeChips?: undefined;
@@ -117,6 +238,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
117
238
  } & {
118
239
  label?: string | undefined;
119
240
  labelPlacement?: "outer" | "inner" | undefined;
241
+ titleCaption?: import("react").ReactNode;
120
242
  leftHelper?: string | undefined;
121
243
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
122
244
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -131,6 +253,17 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
131
253
  } & {
132
254
  clear?: false | undefined;
133
255
  hasDivider?: undefined;
256
+ } & {
257
+ hintText: string;
258
+ hintTrigger?: "hover" | "click" | undefined;
259
+ hintView?: string | undefined;
260
+ hintSize?: string | undefined;
261
+ hintTargetIcon?: import("react").ReactNode;
262
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
263
+ hintHasArrow?: boolean | undefined;
264
+ hintOffset?: [number, number] | undefined;
265
+ hintWidth?: string | undefined;
266
+ hintContentLeft?: import("react").ReactNode;
134
267
  } & {
135
268
  enumerationType: "chip";
136
269
  onSearch?: undefined;
@@ -144,6 +277,124 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
144
277
  } & {
145
278
  label?: string | undefined;
146
279
  labelPlacement?: "outer" | "inner" | undefined;
280
+ titleCaption?: import("react").ReactNode;
281
+ leftHelper?: string | undefined;
282
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
283
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
284
+ textBefore?: string | undefined;
285
+ textAfter?: string | undefined;
286
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
287
+ } & {
288
+ requiredPlacement?: "right" | "left" | undefined;
289
+ } & {
290
+ required: true;
291
+ optional?: false | undefined;
292
+ } & {
293
+ clear?: false | undefined;
294
+ hasDivider?: undefined;
295
+ } & {
296
+ hintTrigger?: undefined;
297
+ hintText?: undefined;
298
+ hintView?: undefined;
299
+ hintSize?: undefined;
300
+ hintTargetIcon?: undefined;
301
+ hintPlacement?: undefined;
302
+ hintHasArrow?: undefined;
303
+ hintOffset?: undefined;
304
+ hintWidth?: undefined;
305
+ hintContentLeft?: undefined;
306
+ } & {
307
+ chips?: undefined;
308
+ onChangeChips?: undefined;
309
+ enumerationType?: "plain" | undefined;
310
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
311
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
312
+ size?: string | undefined;
313
+ view?: string | undefined;
314
+ readOnly?: boolean | undefined;
315
+ disabled?: boolean | undefined;
316
+ } & {
317
+ label?: string | undefined;
318
+ labelPlacement?: "outer" | "inner" | undefined;
319
+ titleCaption?: import("react").ReactNode;
320
+ leftHelper?: string | undefined;
321
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
322
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
323
+ textBefore?: string | undefined;
324
+ textAfter?: string | undefined;
325
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
326
+ } & {
327
+ requiredPlacement?: "right" | "left" | undefined;
328
+ } & {
329
+ required: true;
330
+ optional?: false | undefined;
331
+ } & {
332
+ clear?: false | undefined;
333
+ hasDivider?: undefined;
334
+ } & {
335
+ hintTrigger?: undefined;
336
+ hintText?: undefined;
337
+ hintView?: undefined;
338
+ hintSize?: undefined;
339
+ hintTargetIcon?: undefined;
340
+ hintPlacement?: undefined;
341
+ hintHasArrow?: undefined;
342
+ hintOffset?: undefined;
343
+ hintWidth?: undefined;
344
+ hintContentLeft?: undefined;
345
+ } & {
346
+ enumerationType: "chip";
347
+ onSearch?: undefined;
348
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
349
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
350
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
351
+ size?: string | undefined;
352
+ view?: string | undefined;
353
+ readOnly?: boolean | undefined;
354
+ disabled?: boolean | undefined;
355
+ } & {
356
+ label?: string | undefined;
357
+ labelPlacement?: "outer" | "inner" | undefined;
358
+ titleCaption?: import("react").ReactNode;
359
+ leftHelper?: string | undefined;
360
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
361
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
362
+ textBefore?: string | undefined;
363
+ textAfter?: string | undefined;
364
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
365
+ } & {
366
+ requiredPlacement?: "right" | "left" | undefined;
367
+ } & {
368
+ optional?: true | undefined;
369
+ required?: false | undefined;
370
+ } & {
371
+ clear?: boolean | undefined;
372
+ hasDivider?: boolean | undefined;
373
+ } & {
374
+ hintText: string;
375
+ hintTrigger?: "hover" | "click" | undefined;
376
+ hintView?: string | undefined;
377
+ hintSize?: string | undefined;
378
+ hintTargetIcon?: import("react").ReactNode;
379
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
380
+ hintHasArrow?: boolean | undefined;
381
+ hintOffset?: [number, number] | undefined;
382
+ hintWidth?: string | undefined;
383
+ hintContentLeft?: import("react").ReactNode;
384
+ } & {
385
+ chips?: undefined;
386
+ onChangeChips?: undefined;
387
+ enumerationType?: "plain" | undefined;
388
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
389
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
390
+ size?: string | undefined;
391
+ view?: string | undefined;
392
+ readOnly?: boolean | undefined;
393
+ disabled?: boolean | undefined;
394
+ } & {
395
+ label?: string | undefined;
396
+ labelPlacement?: "outer" | "inner" | undefined;
397
+ titleCaption?: import("react").ReactNode;
147
398
  leftHelper?: string | undefined;
148
399
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
149
400
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -158,6 +409,56 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
158
409
  } & {
159
410
  clear?: boolean | undefined;
160
411
  hasDivider?: boolean | undefined;
412
+ } & {
413
+ hintText: string;
414
+ hintTrigger?: "hover" | "click" | undefined;
415
+ hintView?: string | undefined;
416
+ hintSize?: string | undefined;
417
+ hintTargetIcon?: import("react").ReactNode;
418
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
419
+ hintHasArrow?: boolean | undefined;
420
+ hintOffset?: [number, number] | undefined;
421
+ hintWidth?: string | undefined;
422
+ hintContentLeft?: import("react").ReactNode;
423
+ } & {
424
+ enumerationType: "chip";
425
+ onSearch?: undefined;
426
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
427
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
428
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
429
+ size?: string | undefined;
430
+ view?: string | undefined;
431
+ readOnly?: boolean | undefined;
432
+ disabled?: boolean | undefined;
433
+ } & {
434
+ label?: string | undefined;
435
+ labelPlacement?: "outer" | "inner" | undefined;
436
+ titleCaption?: import("react").ReactNode;
437
+ leftHelper?: string | undefined;
438
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
439
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
440
+ textBefore?: string | undefined;
441
+ textAfter?: string | undefined;
442
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
443
+ } & {
444
+ requiredPlacement?: "right" | "left" | undefined;
445
+ } & {
446
+ optional?: true | undefined;
447
+ required?: false | undefined;
448
+ } & {
449
+ clear?: boolean | undefined;
450
+ hasDivider?: boolean | undefined;
451
+ } & {
452
+ hintTrigger?: undefined;
453
+ hintText?: undefined;
454
+ hintView?: undefined;
455
+ hintSize?: undefined;
456
+ hintTargetIcon?: undefined;
457
+ hintPlacement?: undefined;
458
+ hintHasArrow?: undefined;
459
+ hintOffset?: undefined;
460
+ hintWidth?: undefined;
461
+ hintContentLeft?: undefined;
161
462
  } & {
162
463
  chips?: undefined;
163
464
  onChangeChips?: undefined;
@@ -171,6 +472,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
171
472
  } & {
172
473
  label?: string | undefined;
173
474
  labelPlacement?: "outer" | "inner" | undefined;
475
+ titleCaption?: import("react").ReactNode;
174
476
  leftHelper?: string | undefined;
175
477
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
176
478
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -185,6 +487,17 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
185
487
  } & {
186
488
  clear?: boolean | undefined;
187
489
  hasDivider?: boolean | undefined;
490
+ } & {
491
+ hintTrigger?: undefined;
492
+ hintText?: undefined;
493
+ hintView?: undefined;
494
+ hintSize?: undefined;
495
+ hintTargetIcon?: undefined;
496
+ hintPlacement?: undefined;
497
+ hintHasArrow?: undefined;
498
+ hintOffset?: undefined;
499
+ hintWidth?: undefined;
500
+ hintContentLeft?: undefined;
188
501
  } & {
189
502
  enumerationType: "chip";
190
503
  onSearch?: undefined;
@@ -198,6 +511,7 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
198
511
  } & {
199
512
  label?: string | undefined;
200
513
  labelPlacement?: "outer" | "inner" | undefined;
514
+ titleCaption?: import("react").ReactNode;
201
515
  leftHelper?: string | undefined;
202
516
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
203
517
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -212,6 +526,17 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
212
526
  } & {
213
527
  clear?: false | undefined;
214
528
  hasDivider?: undefined;
529
+ } & {
530
+ hintText: string;
531
+ hintTrigger?: "hover" | "click" | undefined;
532
+ hintView?: string | undefined;
533
+ hintSize?: string | undefined;
534
+ hintTargetIcon?: import("react").ReactNode;
535
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
536
+ hintHasArrow?: boolean | undefined;
537
+ hintOffset?: [number, number] | undefined;
538
+ hintWidth?: string | undefined;
539
+ hintContentLeft?: import("react").ReactNode;
215
540
  } & {
216
541
  chips?: undefined;
217
542
  onChangeChips?: undefined;
@@ -225,6 +550,46 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
225
550
  } & {
226
551
  label?: string | undefined;
227
552
  labelPlacement?: "outer" | "inner" | undefined;
553
+ titleCaption?: import("react").ReactNode;
554
+ leftHelper?: string | undefined;
555
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
556
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
557
+ textBefore?: string | undefined;
558
+ textAfter?: string | undefined;
559
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
560
+ } & {
561
+ requiredPlacement?: "right" | "left" | undefined;
562
+ } & {
563
+ optional?: true | undefined;
564
+ required?: false | undefined;
565
+ } & {
566
+ clear?: false | undefined;
567
+ hasDivider?: undefined;
568
+ } & {
569
+ hintText: string;
570
+ hintTrigger?: "hover" | "click" | undefined;
571
+ hintView?: string | undefined;
572
+ hintSize?: string | undefined;
573
+ hintTargetIcon?: import("react").ReactNode;
574
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
575
+ hintHasArrow?: boolean | undefined;
576
+ hintOffset?: [number, number] | undefined;
577
+ hintWidth?: string | undefined;
578
+ hintContentLeft?: import("react").ReactNode;
579
+ } & {
580
+ enumerationType: "chip";
581
+ onSearch?: undefined;
582
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
583
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
584
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
585
+ size?: string | undefined;
586
+ view?: string | undefined;
587
+ readOnly?: boolean | undefined;
588
+ disabled?: boolean | undefined;
589
+ } & {
590
+ label?: string | undefined;
591
+ labelPlacement?: "outer" | "inner" | undefined;
592
+ titleCaption?: import("react").ReactNode;
228
593
  leftHelper?: string | undefined;
229
594
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
230
595
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -239,6 +604,56 @@ export declare const TextField: import("react").FunctionComponent<import("@salut
239
604
  } & {
240
605
  clear?: false | undefined;
241
606
  hasDivider?: undefined;
607
+ } & {
608
+ hintTrigger?: undefined;
609
+ hintText?: undefined;
610
+ hintView?: undefined;
611
+ hintSize?: undefined;
612
+ hintTargetIcon?: undefined;
613
+ hintPlacement?: undefined;
614
+ hintHasArrow?: undefined;
615
+ hintOffset?: undefined;
616
+ hintWidth?: undefined;
617
+ hintContentLeft?: undefined;
618
+ } & {
619
+ chips?: undefined;
620
+ onChangeChips?: undefined;
621
+ enumerationType?: "plain" | undefined;
622
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
623
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement>) | ({
624
+ size?: string | undefined;
625
+ view?: string | undefined;
626
+ readOnly?: boolean | undefined;
627
+ disabled?: boolean | undefined;
628
+ } & {
629
+ label?: string | undefined;
630
+ labelPlacement?: "outer" | "inner" | undefined;
631
+ titleCaption?: import("react").ReactNode;
632
+ leftHelper?: string | undefined;
633
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
634
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
635
+ textBefore?: string | undefined;
636
+ textAfter?: string | undefined;
637
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
638
+ } & {
639
+ requiredPlacement?: "right" | "left" | undefined;
640
+ } & {
641
+ optional?: true | undefined;
642
+ required?: false | undefined;
643
+ } & {
644
+ clear?: false | undefined;
645
+ hasDivider?: undefined;
646
+ } & {
647
+ hintTrigger?: undefined;
648
+ hintText?: undefined;
649
+ hintView?: undefined;
650
+ hintSize?: undefined;
651
+ hintTargetIcon?: undefined;
652
+ hintPlacement?: undefined;
653
+ hintHasArrow?: undefined;
654
+ hintOffset?: undefined;
655
+ hintWidth?: undefined;
656
+ hintContentLeft?: undefined;
242
657
  } & {
243
658
  enumerationType: "chip";
244
659
  onSearch?: undefined;