@salutejs/plasma-b2c 1.424.0-canary.1500.11456169969.0 → 1.424.1-canary.1502.11462220468.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. package/api/plasma-b2c.api.md +2110 -662
  2. package/components/Autocomplete/Autocomplete.d.ts +1 -1
  3. package/components/Badge/Badge.d.ts +0 -3
  4. package/components/Mask/Mask.d.ts +740 -12
  5. package/components/Tabs/TabItem.d.ts +17 -2
  6. package/components/Tabs/Tabs.d.ts +1 -1
  7. package/components/TextArea/TextArea.config.d.ts +8 -1
  8. package/components/TextArea/TextArea.config.js +20 -13
  9. package/components/TextArea/TextArea.d.ts +717 -3
  10. package/components/TextArea/index.d.ts +68 -1
  11. package/components/TextField/TextField.config.d.ts +7 -0
  12. package/components/TextField/TextField.config.js +18 -11
  13. package/components/TextField/TextField.d.ts +513 -33
  14. package/components/TextField/TextField.js +4 -1
  15. package/css/cjs/components/Mask/Mask.css +14 -11
  16. package/css/cjs/components/TextArea/TextArea.config.js +11 -4
  17. package/css/cjs/components/TextArea/TextArea.config.js.map +1 -1
  18. package/css/cjs/components/TextArea/{TextArea.config_1g56huc.css → TextArea.config_1bnayxn.css} +13 -10
  19. package/css/cjs/components/TextArea/TextArea.css +13 -10
  20. package/css/cjs/components/TextArea/TextArea.js.map +1 -1
  21. package/css/cjs/components/TextField/TextField.config.js +10 -3
  22. package/css/cjs/components/TextField/TextField.config.js.map +1 -1
  23. package/css/cjs/components/TextField/TextField.config_dyxd7m.css +16 -0
  24. package/css/cjs/components/TextField/TextField.js +4 -1
  25. package/css/cjs/components/TextField/TextField.js.map +1 -1
  26. package/css/cjs/index.css +31 -25
  27. package/css/es/components/Mask/Mask.css +14 -11
  28. package/css/es/components/TextArea/TextArea.config.js +11 -4
  29. package/css/es/components/TextArea/TextArea.config.js.map +1 -1
  30. package/css/es/components/TextArea/{TextArea.config_1g56huc.css → TextArea.config_1bnayxn.css} +13 -10
  31. package/css/es/components/TextArea/TextArea.css +13 -10
  32. package/css/es/components/TextArea/TextArea.js.map +1 -1
  33. package/css/es/components/TextField/TextField.config.js +10 -3
  34. package/css/es/components/TextField/TextField.config.js.map +1 -1
  35. package/css/es/components/TextField/TextField.config_dyxd7m.css +16 -0
  36. package/css/es/components/TextField/TextField.js +4 -1
  37. package/css/es/components/TextField/TextField.js.map +1 -1
  38. package/css/es/index.css +31 -25
  39. package/es/components/TextArea/TextArea.config.js +20 -13
  40. package/es/components/TextField/TextField.config.js +18 -11
  41. package/es/components/TextField/TextField.js +4 -1
  42. package/package.json +3 -3
  43. package/temp/plasma-b2c.api.md +2110 -662
  44. package/css/cjs/components/TextField/TextField.config_o06qtv.css +0 -13
  45. package/css/es/components/TextField/TextField.config_o06qtv.css +0 -13
@@ -19,6 +19,373 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
19
19
  clear: {
20
20
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
21
21
  };
22
+ hintView: {
23
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
24
+ };
25
+ hintSize: {
26
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
27
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
28
+ };
29
+ disabled: {
30
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
31
+ };
32
+ readOnly: {
33
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
34
+ };
35
+ }> & {
36
+ size?: string | undefined;
37
+ view?: string | undefined;
38
+ readOnly?: boolean | undefined;
39
+ disabled?: boolean | undefined;
40
+ } & {
41
+ label?: string | undefined;
42
+ labelPlacement?: "outer" | "inner" | undefined;
43
+ titleCaption?: import("react").ReactNode;
44
+ leftHelper?: string | undefined;
45
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
46
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
47
+ textBefore?: string | undefined;
48
+ textAfter?: string | undefined;
49
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
50
+ } & {
51
+ requiredPlacement?: "right" | "left" | undefined;
52
+ } & {
53
+ required: true;
54
+ optional?: false | undefined;
55
+ } & {
56
+ clear?: boolean | undefined;
57
+ hasDivider?: boolean | undefined;
58
+ } & {
59
+ hintText: string;
60
+ hintTrigger?: "hover" | "click" | undefined;
61
+ hintView?: string | undefined;
62
+ hintSize?: string | undefined;
63
+ hintTargetIcon?: import("react").ReactNode;
64
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
65
+ hintHasArrow?: boolean | undefined;
66
+ hintOffset?: [number, number] | undefined;
67
+ hintWidth?: string | undefined;
68
+ hintContentLeft?: import("react").ReactNode;
69
+ } & {
70
+ chips?: undefined;
71
+ onChangeChips?: undefined;
72
+ enumerationType?: "plain" | undefined;
73
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
74
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
75
+ view: {
76
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
77
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
78
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
79
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
80
+ };
81
+ size: {
82
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
83
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
84
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
85
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
86
+ };
87
+ labelPlacement: {
88
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
89
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
90
+ };
91
+ clear: {
92
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
93
+ };
94
+ hintView: {
95
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
96
+ };
97
+ hintSize: {
98
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
99
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
100
+ };
101
+ disabled: {
102
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
103
+ };
104
+ readOnly: {
105
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
106
+ };
107
+ }> & {
108
+ size?: string | undefined;
109
+ view?: string | undefined;
110
+ readOnly?: boolean | undefined;
111
+ disabled?: boolean | undefined;
112
+ } & {
113
+ label?: string | undefined;
114
+ labelPlacement?: "outer" | "inner" | undefined;
115
+ titleCaption?: import("react").ReactNode;
116
+ leftHelper?: string | undefined;
117
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
118
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
119
+ textBefore?: string | undefined;
120
+ textAfter?: string | undefined;
121
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
122
+ } & {
123
+ requiredPlacement?: "right" | "left" | undefined;
124
+ } & {
125
+ required: true;
126
+ optional?: false | undefined;
127
+ } & {
128
+ clear?: boolean | undefined;
129
+ hasDivider?: boolean | undefined;
130
+ } & {
131
+ hintText: string;
132
+ hintTrigger?: "hover" | "click" | undefined;
133
+ hintView?: string | undefined;
134
+ hintSize?: string | undefined;
135
+ hintTargetIcon?: import("react").ReactNode;
136
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
137
+ hintHasArrow?: boolean | undefined;
138
+ hintOffset?: [number, number] | undefined;
139
+ hintWidth?: string | undefined;
140
+ hintContentLeft?: import("react").ReactNode;
141
+ } & {
142
+ enumerationType: "chip";
143
+ onSearch?: undefined;
144
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
145
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
146
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
147
+ view: {
148
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
149
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
150
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
151
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
152
+ };
153
+ size: {
154
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
155
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
156
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
157
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
158
+ };
159
+ labelPlacement: {
160
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
161
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
162
+ };
163
+ clear: {
164
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
165
+ };
166
+ hintView: {
167
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
168
+ };
169
+ hintSize: {
170
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
171
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
172
+ };
173
+ disabled: {
174
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
175
+ };
176
+ readOnly: {
177
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
178
+ };
179
+ }> & {
180
+ size?: string | undefined;
181
+ view?: string | undefined;
182
+ readOnly?: boolean | undefined;
183
+ disabled?: boolean | undefined;
184
+ } & {
185
+ label?: string | undefined;
186
+ labelPlacement?: "outer" | "inner" | undefined;
187
+ titleCaption?: import("react").ReactNode;
188
+ leftHelper?: string | undefined;
189
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
190
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
191
+ textBefore?: string | undefined;
192
+ textAfter?: string | undefined;
193
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
194
+ } & {
195
+ requiredPlacement?: "right" | "left" | undefined;
196
+ } & {
197
+ required: true;
198
+ optional?: false | undefined;
199
+ } & {
200
+ clear?: boolean | undefined;
201
+ hasDivider?: boolean | undefined;
202
+ } & {
203
+ hintTrigger?: undefined;
204
+ hintText?: undefined;
205
+ hintView?: undefined;
206
+ hintSize?: undefined;
207
+ hintTargetIcon?: undefined;
208
+ hintPlacement?: undefined;
209
+ hintHasArrow?: undefined;
210
+ hintOffset?: undefined;
211
+ hintWidth?: undefined;
212
+ hintContentLeft?: undefined;
213
+ } & {
214
+ chips?: undefined;
215
+ onChangeChips?: undefined;
216
+ enumerationType?: "plain" | undefined;
217
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
218
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
219
+ view: {
220
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
221
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
222
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
223
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
224
+ };
225
+ size: {
226
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
227
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
228
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
229
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
230
+ };
231
+ labelPlacement: {
232
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
233
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
234
+ };
235
+ clear: {
236
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
237
+ };
238
+ hintView: {
239
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
240
+ };
241
+ hintSize: {
242
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
243
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
244
+ };
245
+ disabled: {
246
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
247
+ };
248
+ readOnly: {
249
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
250
+ };
251
+ }> & {
252
+ size?: string | undefined;
253
+ view?: string | undefined;
254
+ readOnly?: boolean | undefined;
255
+ disabled?: boolean | undefined;
256
+ } & {
257
+ label?: string | undefined;
258
+ labelPlacement?: "outer" | "inner" | undefined;
259
+ titleCaption?: import("react").ReactNode;
260
+ leftHelper?: string | undefined;
261
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
262
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
263
+ textBefore?: string | undefined;
264
+ textAfter?: string | undefined;
265
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
266
+ } & {
267
+ requiredPlacement?: "right" | "left" | undefined;
268
+ } & {
269
+ required: true;
270
+ optional?: false | undefined;
271
+ } & {
272
+ clear?: boolean | undefined;
273
+ hasDivider?: boolean | undefined;
274
+ } & {
275
+ hintTrigger?: undefined;
276
+ hintText?: undefined;
277
+ hintView?: undefined;
278
+ hintSize?: undefined;
279
+ hintTargetIcon?: undefined;
280
+ hintPlacement?: undefined;
281
+ hintHasArrow?: undefined;
282
+ hintOffset?: undefined;
283
+ hintWidth?: undefined;
284
+ hintContentLeft?: undefined;
285
+ } & {
286
+ enumerationType: "chip";
287
+ onSearch?: undefined;
288
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
289
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
290
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
291
+ view: {
292
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
293
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
294
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
295
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
296
+ };
297
+ size: {
298
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
299
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
300
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
301
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
302
+ };
303
+ labelPlacement: {
304
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
305
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
306
+ };
307
+ clear: {
308
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
309
+ };
310
+ hintView: {
311
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
312
+ };
313
+ hintSize: {
314
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
315
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
316
+ };
317
+ disabled: {
318
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
319
+ };
320
+ readOnly: {
321
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
322
+ };
323
+ }> & {
324
+ size?: string | undefined;
325
+ view?: string | undefined;
326
+ readOnly?: boolean | undefined;
327
+ disabled?: boolean | undefined;
328
+ } & {
329
+ label?: string | undefined;
330
+ labelPlacement?: "outer" | "inner" | undefined;
331
+ titleCaption?: import("react").ReactNode;
332
+ leftHelper?: string | undefined;
333
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
334
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
335
+ textBefore?: string | undefined;
336
+ textAfter?: string | undefined;
337
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
338
+ } & {
339
+ requiredPlacement?: "right" | "left" | undefined;
340
+ } & {
341
+ required: true;
342
+ optional?: false | undefined;
343
+ } & {
344
+ clear?: false | undefined;
345
+ hasDivider?: undefined;
346
+ } & {
347
+ hintText: string;
348
+ hintTrigger?: "hover" | "click" | undefined;
349
+ hintView?: string | undefined;
350
+ hintSize?: string | undefined;
351
+ hintTargetIcon?: import("react").ReactNode;
352
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
353
+ hintHasArrow?: boolean | undefined;
354
+ hintOffset?: [number, number] | undefined;
355
+ hintWidth?: string | undefined;
356
+ hintContentLeft?: import("react").ReactNode;
357
+ } & {
358
+ chips?: undefined;
359
+ onChangeChips?: undefined;
360
+ enumerationType?: "plain" | undefined;
361
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
362
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
363
+ view: {
364
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
365
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
366
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
367
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
368
+ };
369
+ size: {
370
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
371
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
372
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
373
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
374
+ };
375
+ labelPlacement: {
376
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
377
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
378
+ };
379
+ clear: {
380
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
381
+ };
382
+ hintView: {
383
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
384
+ };
385
+ hintSize: {
386
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
387
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
388
+ };
22
389
  disabled: {
23
390
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
24
391
  };
@@ -33,6 +400,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
33
400
  } & {
34
401
  label?: string | undefined;
35
402
  labelPlacement?: "outer" | "inner" | undefined;
403
+ titleCaption?: import("react").ReactNode;
36
404
  leftHelper?: string | undefined;
37
405
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
38
406
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -45,8 +413,91 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
45
413
  required: true;
46
414
  optional?: false | undefined;
47
415
  } & {
48
- clear?: boolean | undefined;
49
- hasDivider?: boolean | undefined;
416
+ clear?: false | undefined;
417
+ hasDivider?: undefined;
418
+ } & {
419
+ hintText: string;
420
+ hintTrigger?: "hover" | "click" | undefined;
421
+ hintView?: string | undefined;
422
+ hintSize?: string | undefined;
423
+ hintTargetIcon?: import("react").ReactNode;
424
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
425
+ hintHasArrow?: boolean | undefined;
426
+ hintOffset?: [number, number] | undefined;
427
+ hintWidth?: string | undefined;
428
+ hintContentLeft?: import("react").ReactNode;
429
+ } & {
430
+ enumerationType: "chip";
431
+ onSearch?: undefined;
432
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
433
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
434
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
435
+ view: {
436
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
437
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
438
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
439
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
440
+ };
441
+ size: {
442
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
443
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
444
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
445
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
446
+ };
447
+ labelPlacement: {
448
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
449
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
450
+ };
451
+ clear: {
452
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
453
+ };
454
+ hintView: {
455
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
456
+ };
457
+ hintSize: {
458
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
459
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
460
+ };
461
+ disabled: {
462
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
463
+ };
464
+ readOnly: {
465
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
466
+ };
467
+ }> & {
468
+ size?: string | undefined;
469
+ view?: string | undefined;
470
+ readOnly?: boolean | undefined;
471
+ disabled?: boolean | undefined;
472
+ } & {
473
+ label?: string | undefined;
474
+ labelPlacement?: "outer" | "inner" | undefined;
475
+ titleCaption?: import("react").ReactNode;
476
+ leftHelper?: string | undefined;
477
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
478
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
479
+ textBefore?: string | undefined;
480
+ textAfter?: string | undefined;
481
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
482
+ } & {
483
+ requiredPlacement?: "right" | "left" | undefined;
484
+ } & {
485
+ required: true;
486
+ optional?: false | undefined;
487
+ } & {
488
+ clear?: false | undefined;
489
+ hasDivider?: 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;
50
501
  } & {
51
502
  chips?: undefined;
52
503
  onChangeChips?: undefined;
@@ -72,6 +523,13 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
72
523
  clear: {
73
524
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
74
525
  };
526
+ hintView: {
527
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
528
+ };
529
+ hintSize: {
530
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
531
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
532
+ };
75
533
  disabled: {
76
534
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
77
535
  };
@@ -86,6 +544,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
86
544
  } & {
87
545
  label?: string | undefined;
88
546
  labelPlacement?: "outer" | "inner" | undefined;
547
+ titleCaption?: import("react").ReactNode;
89
548
  leftHelper?: string | undefined;
90
549
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
91
550
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -98,8 +557,19 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
98
557
  required: true;
99
558
  optional?: false | undefined;
100
559
  } & {
101
- clear?: boolean | undefined;
102
- hasDivider?: boolean | undefined;
560
+ clear?: false | undefined;
561
+ hasDivider?: undefined;
562
+ } & {
563
+ hintTrigger?: undefined;
564
+ hintText?: undefined;
565
+ hintView?: undefined;
566
+ hintSize?: undefined;
567
+ hintTargetIcon?: undefined;
568
+ hintPlacement?: undefined;
569
+ hintHasArrow?: undefined;
570
+ hintOffset?: undefined;
571
+ hintWidth?: undefined;
572
+ hintContentLeft?: undefined;
103
573
  } & {
104
574
  enumerationType: "chip";
105
575
  onSearch?: undefined;
@@ -125,6 +595,13 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
125
595
  clear: {
126
596
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
127
597
  };
598
+ hintView: {
599
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
600
+ };
601
+ hintSize: {
602
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
603
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
604
+ };
128
605
  disabled: {
129
606
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
130
607
  };
@@ -139,6 +616,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
139
616
  } & {
140
617
  label?: string | undefined;
141
618
  labelPlacement?: "outer" | "inner" | undefined;
619
+ titleCaption?: import("react").ReactNode;
142
620
  leftHelper?: string | undefined;
143
621
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
144
622
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -148,11 +626,22 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
148
626
  } & {
149
627
  requiredPlacement?: "right" | "left" | undefined;
150
628
  } & {
151
- required: true;
152
- optional?: false | undefined;
629
+ optional?: true | undefined;
630
+ required?: false | undefined;
153
631
  } & {
154
- clear?: false | undefined;
155
- hasDivider?: undefined;
632
+ clear?: boolean | undefined;
633
+ hasDivider?: boolean | undefined;
634
+ } & {
635
+ hintText: string;
636
+ hintTrigger?: "hover" | "click" | undefined;
637
+ hintView?: string | undefined;
638
+ hintSize?: string | undefined;
639
+ hintTargetIcon?: import("react").ReactNode;
640
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
641
+ hintHasArrow?: boolean | undefined;
642
+ hintOffset?: [number, number] | undefined;
643
+ hintWidth?: string | undefined;
644
+ hintContentLeft?: import("react").ReactNode;
156
645
  } & {
157
646
  chips?: undefined;
158
647
  onChangeChips?: undefined;
@@ -178,6 +667,13 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
178
667
  clear: {
179
668
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
180
669
  };
670
+ hintView: {
671
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
672
+ };
673
+ hintSize: {
674
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
675
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
676
+ };
181
677
  disabled: {
182
678
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
183
679
  };
@@ -192,6 +688,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
192
688
  } & {
193
689
  label?: string | undefined;
194
690
  labelPlacement?: "outer" | "inner" | undefined;
691
+ titleCaption?: import("react").ReactNode;
195
692
  leftHelper?: string | undefined;
196
693
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
197
694
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -201,11 +698,22 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
201
698
  } & {
202
699
  requiredPlacement?: "right" | "left" | undefined;
203
700
  } & {
204
- required: true;
205
- optional?: false | undefined;
701
+ optional?: true | undefined;
702
+ required?: false | undefined;
206
703
  } & {
207
- clear?: false | undefined;
208
- hasDivider?: undefined;
704
+ clear?: boolean | undefined;
705
+ hasDivider?: boolean | undefined;
706
+ } & {
707
+ hintText: string;
708
+ hintTrigger?: "hover" | "click" | undefined;
709
+ hintView?: string | undefined;
710
+ hintSize?: string | undefined;
711
+ hintTargetIcon?: import("react").ReactNode;
712
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
713
+ hintHasArrow?: boolean | undefined;
714
+ hintOffset?: [number, number] | undefined;
715
+ hintWidth?: string | undefined;
716
+ hintContentLeft?: import("react").ReactNode;
209
717
  } & {
210
718
  enumerationType: "chip";
211
719
  onSearch?: undefined;
@@ -231,6 +739,13 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
231
739
  clear: {
232
740
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
233
741
  };
742
+ hintView: {
743
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
744
+ };
745
+ hintSize: {
746
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
747
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
748
+ };
234
749
  disabled: {
235
750
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
236
751
  };
@@ -245,6 +760,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
245
760
  } & {
246
761
  label?: string | undefined;
247
762
  labelPlacement?: "outer" | "inner" | undefined;
763
+ titleCaption?: import("react").ReactNode;
248
764
  leftHelper?: string | undefined;
249
765
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
250
766
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -259,6 +775,17 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
259
775
  } & {
260
776
  clear?: boolean | undefined;
261
777
  hasDivider?: boolean | undefined;
778
+ } & {
779
+ hintTrigger?: undefined;
780
+ hintText?: undefined;
781
+ hintView?: undefined;
782
+ hintSize?: undefined;
783
+ hintTargetIcon?: undefined;
784
+ hintPlacement?: undefined;
785
+ hintHasArrow?: undefined;
786
+ hintOffset?: undefined;
787
+ hintWidth?: undefined;
788
+ hintContentLeft?: undefined;
262
789
  } & {
263
790
  chips?: undefined;
264
791
  onChangeChips?: undefined;
@@ -284,6 +811,13 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
284
811
  clear: {
285
812
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
286
813
  };
814
+ hintView: {
815
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
816
+ };
817
+ hintSize: {
818
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
819
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
820
+ };
287
821
  disabled: {
288
822
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
289
823
  };
@@ -298,6 +832,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
298
832
  } & {
299
833
  label?: string | undefined;
300
834
  labelPlacement?: "outer" | "inner" | undefined;
835
+ titleCaption?: import("react").ReactNode;
301
836
  leftHelper?: string | undefined;
302
837
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
303
838
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -312,6 +847,161 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
312
847
  } & {
313
848
  clear?: boolean | undefined;
314
849
  hasDivider?: boolean | undefined;
850
+ } & {
851
+ hintTrigger?: undefined;
852
+ hintText?: undefined;
853
+ hintView?: undefined;
854
+ hintSize?: undefined;
855
+ hintTargetIcon?: undefined;
856
+ hintPlacement?: undefined;
857
+ hintHasArrow?: undefined;
858
+ hintOffset?: undefined;
859
+ hintWidth?: undefined;
860
+ hintContentLeft?: undefined;
861
+ } & {
862
+ enumerationType: "chip";
863
+ onSearch?: undefined;
864
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
865
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
866
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
867
+ view: {
868
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
869
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
870
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
871
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
872
+ };
873
+ size: {
874
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
875
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
876
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
877
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
878
+ };
879
+ labelPlacement: {
880
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
881
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
882
+ };
883
+ clear: {
884
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
885
+ };
886
+ hintView: {
887
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
888
+ };
889
+ hintSize: {
890
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
891
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
892
+ };
893
+ disabled: {
894
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
895
+ };
896
+ readOnly: {
897
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
898
+ };
899
+ }> & {
900
+ size?: string | undefined;
901
+ view?: string | undefined;
902
+ readOnly?: boolean | undefined;
903
+ disabled?: boolean | undefined;
904
+ } & {
905
+ label?: string | undefined;
906
+ labelPlacement?: "outer" | "inner" | undefined;
907
+ titleCaption?: import("react").ReactNode;
908
+ leftHelper?: string | undefined;
909
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
910
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
911
+ textBefore?: string | undefined;
912
+ textAfter?: string | undefined;
913
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
914
+ } & {
915
+ requiredPlacement?: "right" | "left" | undefined;
916
+ } & {
917
+ optional?: true | undefined;
918
+ required?: false | undefined;
919
+ } & {
920
+ clear?: false | undefined;
921
+ hasDivider?: undefined;
922
+ } & {
923
+ hintText: string;
924
+ hintTrigger?: "hover" | "click" | undefined;
925
+ hintView?: string | undefined;
926
+ hintSize?: string | undefined;
927
+ hintTargetIcon?: import("react").ReactNode;
928
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
929
+ hintHasArrow?: boolean | undefined;
930
+ hintOffset?: [number, number] | undefined;
931
+ hintWidth?: string | undefined;
932
+ hintContentLeft?: import("react").ReactNode;
933
+ } & {
934
+ chips?: undefined;
935
+ onChangeChips?: undefined;
936
+ enumerationType?: "plain" | undefined;
937
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
938
+ } & Omit<import("@salutejs/plasma-new-hope/types/types").InputHTMLAttributes<HTMLInputElement>, "size" | "required"> & import("react").RefAttributes<HTMLInputElement> & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
939
+ view: {
940
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
941
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
942
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
943
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
944
+ };
945
+ size: {
946
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
947
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
948
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
949
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
950
+ };
951
+ labelPlacement: {
952
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
953
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
954
+ };
955
+ clear: {
956
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
957
+ };
958
+ hintView: {
959
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
960
+ };
961
+ hintSize: {
962
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
963
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
964
+ };
965
+ disabled: {
966
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
967
+ };
968
+ readOnly: {
969
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
970
+ };
971
+ }> & {
972
+ size?: string | undefined;
973
+ view?: string | undefined;
974
+ readOnly?: boolean | undefined;
975
+ disabled?: boolean | undefined;
976
+ } & {
977
+ label?: string | undefined;
978
+ labelPlacement?: "outer" | "inner" | undefined;
979
+ titleCaption?: import("react").ReactNode;
980
+ leftHelper?: string | undefined;
981
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
982
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
983
+ textBefore?: string | undefined;
984
+ textAfter?: string | undefined;
985
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
986
+ } & {
987
+ requiredPlacement?: "right" | "left" | undefined;
988
+ } & {
989
+ optional?: true | undefined;
990
+ required?: false | undefined;
991
+ } & {
992
+ clear?: false | undefined;
993
+ hasDivider?: undefined;
994
+ } & {
995
+ hintText: string;
996
+ hintTrigger?: "hover" | "click" | undefined;
997
+ hintView?: string | undefined;
998
+ hintSize?: string | undefined;
999
+ hintTargetIcon?: import("react").ReactNode;
1000
+ hintPlacement?: import("@salutejs/plasma-new-hope/styled-components").PopoverPlacement | import("@salutejs/plasma-new-hope/styled-components").PopoverPlacementBasic[] | undefined;
1001
+ hintHasArrow?: boolean | undefined;
1002
+ hintOffset?: [number, number] | undefined;
1003
+ hintWidth?: string | undefined;
1004
+ hintContentLeft?: import("react").ReactNode;
315
1005
  } & {
316
1006
  enumerationType: "chip";
317
1007
  onSearch?: undefined;
@@ -337,6 +1027,13 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
337
1027
  clear: {
338
1028
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
339
1029
  };
1030
+ hintView: {
1031
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
1032
+ };
1033
+ hintSize: {
1034
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
1035
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
1036
+ };
340
1037
  disabled: {
341
1038
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
342
1039
  };
@@ -351,6 +1048,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
351
1048
  } & {
352
1049
  label?: string | undefined;
353
1050
  labelPlacement?: "outer" | "inner" | undefined;
1051
+ titleCaption?: import("react").ReactNode;
354
1052
  leftHelper?: string | undefined;
355
1053
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
356
1054
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -365,6 +1063,17 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
365
1063
  } & {
366
1064
  clear?: false | undefined;
367
1065
  hasDivider?: undefined;
1066
+ } & {
1067
+ hintTrigger?: undefined;
1068
+ hintText?: undefined;
1069
+ hintView?: undefined;
1070
+ hintSize?: undefined;
1071
+ hintTargetIcon?: undefined;
1072
+ hintPlacement?: undefined;
1073
+ hintHasArrow?: undefined;
1074
+ hintOffset?: undefined;
1075
+ hintWidth?: undefined;
1076
+ hintContentLeft?: undefined;
368
1077
  } & {
369
1078
  chips?: undefined;
370
1079
  onChangeChips?: undefined;
@@ -390,6 +1099,13 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
390
1099
  clear: {
391
1100
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
392
1101
  };
1102
+ hintView: {
1103
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
1104
+ };
1105
+ hintSize: {
1106
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
1107
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
1108
+ };
393
1109
  disabled: {
394
1110
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
395
1111
  };
@@ -404,6 +1120,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
404
1120
  } & {
405
1121
  label?: string | undefined;
406
1122
  labelPlacement?: "outer" | "inner" | undefined;
1123
+ titleCaption?: import("react").ReactNode;
407
1124
  leftHelper?: string | undefined;
408
1125
  contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
409
1126
  contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
@@ -418,6 +1135,17 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
418
1135
  } & {
419
1136
  clear?: false | undefined;
420
1137
  hasDivider?: undefined;
1138
+ } & {
1139
+ hintTrigger?: undefined;
1140
+ hintText?: undefined;
1141
+ hintView?: undefined;
1142
+ hintSize?: undefined;
1143
+ hintTargetIcon?: undefined;
1144
+ hintPlacement?: undefined;
1145
+ hintHasArrow?: undefined;
1146
+ hintOffset?: undefined;
1147
+ hintWidth?: undefined;
1148
+ hintContentLeft?: undefined;
421
1149
  } & {
422
1150
  enumerationType: "chip";
423
1151
  onSearch?: undefined;