@salutejs/plasma-b2c 1.421.0-canary.1459.11367029149.0 → 1.421.0-canary.1487.11365064527.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. package/api/plasma-b2c.api.md +429 -10
  2. package/components/Mask/Mask.d.ts +425 -2
  3. package/components/TextArea/TextArea.config.d.ts +1 -11
  4. package/components/TextArea/TextArea.config.js +13 -23
  5. package/components/TextArea/index.d.ts +1 -68
  6. package/components/TextField/TextField.config.d.ts +0 -10
  7. package/components/TextField/TextField.config.js +11 -21
  8. package/components/TextField/TextField.d.ts +278 -61
  9. package/components/TextField/TextField.js +1 -4
  10. package/css/cjs/components/Mask/Mask.css +11 -17
  11. package/css/cjs/components/Mask/Mask.js.map +1 -1
  12. package/css/cjs/components/TextArea/TextArea.config.js +4 -14
  13. package/css/cjs/components/TextArea/TextArea.config.js.map +1 -1
  14. package/css/cjs/components/TextArea/{TextArea.config_lr7df6.css → TextArea.config_1g56huc.css} +10 -16
  15. package/css/cjs/components/TextArea/TextArea.css +10 -16
  16. package/css/cjs/components/TextField/TextField.config.js +3 -13
  17. package/css/cjs/components/TextField/TextField.config.js.map +1 -1
  18. package/css/cjs/components/TextField/TextField.config_o06qtv.css +13 -0
  19. package/css/cjs/components/TextField/TextField.js +1 -4
  20. package/css/cjs/components/TextField/TextField.js.map +1 -1
  21. package/css/cjs/index.css +25 -37
  22. package/css/es/components/Mask/Mask.css +11 -17
  23. package/css/es/components/Mask/Mask.js.map +1 -1
  24. package/css/es/components/TextArea/TextArea.config.js +4 -14
  25. package/css/es/components/TextArea/TextArea.config.js.map +1 -1
  26. package/css/es/components/TextArea/{TextArea.config_lr7df6.css → TextArea.config_1g56huc.css} +10 -16
  27. package/css/es/components/TextArea/TextArea.css +10 -16
  28. package/css/es/components/TextField/TextField.config.js +3 -13
  29. package/css/es/components/TextField/TextField.config.js.map +1 -1
  30. package/css/es/components/TextField/TextField.config_o06qtv.css +13 -0
  31. package/css/es/components/TextField/TextField.js +1 -4
  32. package/css/es/components/TextField/TextField.js.map +1 -1
  33. package/css/es/index.css +25 -37
  34. package/es/components/TextArea/TextArea.config.js +13 -23
  35. package/es/components/TextField/TextField.config.js +11 -21
  36. package/es/components/TextField/TextField.js +1 -4
  37. package/package.json +10 -10
  38. package/css/cjs/components/TextField/TextField.config_dt66zs.css +0 -19
  39. package/css/es/components/TextField/TextField.config_dt66zs.css +0 -19
  40. package/temp/plasma-b2c.api.md +0 -2979
@@ -1,3 +1,426 @@
1
1
  /// <reference types="react" />
2
- import type { TextFieldProps } from '@salutejs/plasma-new-hope/styled-components';
3
- export declare const Mask: import("react").ForwardRefExoticComponent<(TextFieldProps & import("@salutejs/plasma-new-hope/types/components/Mask/Mask.types").MaskProps) & import("react").RefAttributes<HTMLInputElement>>;
2
+ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
3
+ view: {
4
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
5
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
6
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
7
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
8
+ };
9
+ size: {
10
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
11
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
12
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
13
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
14
+ };
15
+ labelPlacement: {
16
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
17
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
18
+ };
19
+ clear: {
20
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
21
+ };
22
+ disabled: {
23
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
24
+ };
25
+ readOnly: {
26
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
27
+ };
28
+ }> & {
29
+ size?: string | undefined;
30
+ view?: string | undefined;
31
+ readOnly?: boolean | undefined;
32
+ disabled?: boolean | undefined;
33
+ } & {
34
+ label?: string | undefined;
35
+ labelPlacement?: "outer" | "inner" | undefined;
36
+ leftHelper?: string | undefined;
37
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
38
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
39
+ textBefore?: string | undefined;
40
+ textAfter?: string | undefined;
41
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
42
+ } & {
43
+ requiredPlacement?: "right" | "left" | undefined;
44
+ } & {
45
+ required: true;
46
+ optional?: false | undefined;
47
+ } & {
48
+ clear?: boolean | undefined;
49
+ hasDivider?: boolean | undefined;
50
+ } & {
51
+ chips?: undefined;
52
+ onChangeChips?: undefined;
53
+ enumerationType?: "plain" | undefined;
54
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
55
+ } & 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<{
56
+ view: {
57
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
58
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
59
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
60
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
61
+ };
62
+ size: {
63
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
64
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
65
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
66
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
67
+ };
68
+ labelPlacement: {
69
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
70
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
71
+ };
72
+ clear: {
73
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
74
+ };
75
+ disabled: {
76
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
77
+ };
78
+ readOnly: {
79
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
80
+ };
81
+ }> & {
82
+ size?: string | undefined;
83
+ view?: string | undefined;
84
+ readOnly?: boolean | undefined;
85
+ disabled?: boolean | undefined;
86
+ } & {
87
+ label?: string | undefined;
88
+ labelPlacement?: "outer" | "inner" | undefined;
89
+ leftHelper?: string | undefined;
90
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
91
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
92
+ textBefore?: string | undefined;
93
+ textAfter?: string | undefined;
94
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
95
+ } & {
96
+ requiredPlacement?: "right" | "left" | undefined;
97
+ } & {
98
+ required: true;
99
+ optional?: false | undefined;
100
+ } & {
101
+ clear?: boolean | undefined;
102
+ hasDivider?: boolean | undefined;
103
+ } & {
104
+ enumerationType: "chip";
105
+ onSearch?: undefined;
106
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
107
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
108
+ } & 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<{
109
+ view: {
110
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
111
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
112
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
113
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
114
+ };
115
+ size: {
116
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
117
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
118
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
119
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
120
+ };
121
+ labelPlacement: {
122
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
123
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
124
+ };
125
+ clear: {
126
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
127
+ };
128
+ disabled: {
129
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
130
+ };
131
+ readOnly: {
132
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
133
+ };
134
+ }> & {
135
+ size?: string | undefined;
136
+ view?: string | undefined;
137
+ readOnly?: boolean | undefined;
138
+ disabled?: boolean | undefined;
139
+ } & {
140
+ label?: string | undefined;
141
+ labelPlacement?: "outer" | "inner" | undefined;
142
+ leftHelper?: string | undefined;
143
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
144
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
145
+ textBefore?: string | undefined;
146
+ textAfter?: string | undefined;
147
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
148
+ } & {
149
+ requiredPlacement?: "right" | "left" | undefined;
150
+ } & {
151
+ required: true;
152
+ optional?: false | undefined;
153
+ } & {
154
+ clear?: false | undefined;
155
+ hasDivider?: undefined;
156
+ } & {
157
+ chips?: undefined;
158
+ onChangeChips?: undefined;
159
+ enumerationType?: "plain" | undefined;
160
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
161
+ } & 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<{
162
+ view: {
163
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
164
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
165
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
166
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
167
+ };
168
+ size: {
169
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
170
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
171
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
172
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
173
+ };
174
+ labelPlacement: {
175
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
176
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
177
+ };
178
+ clear: {
179
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
180
+ };
181
+ disabled: {
182
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
183
+ };
184
+ readOnly: {
185
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
186
+ };
187
+ }> & {
188
+ size?: string | undefined;
189
+ view?: string | undefined;
190
+ readOnly?: boolean | undefined;
191
+ disabled?: boolean | undefined;
192
+ } & {
193
+ label?: string | undefined;
194
+ labelPlacement?: "outer" | "inner" | undefined;
195
+ leftHelper?: string | undefined;
196
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
197
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
198
+ textBefore?: string | undefined;
199
+ textAfter?: string | undefined;
200
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
201
+ } & {
202
+ requiredPlacement?: "right" | "left" | undefined;
203
+ } & {
204
+ required: true;
205
+ optional?: false | undefined;
206
+ } & {
207
+ clear?: false | undefined;
208
+ hasDivider?: undefined;
209
+ } & {
210
+ enumerationType: "chip";
211
+ onSearch?: undefined;
212
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
213
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
214
+ } & 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<{
215
+ view: {
216
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
217
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
218
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
219
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
220
+ };
221
+ size: {
222
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
223
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
224
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
225
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
226
+ };
227
+ labelPlacement: {
228
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
229
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
230
+ };
231
+ clear: {
232
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
233
+ };
234
+ disabled: {
235
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
236
+ };
237
+ readOnly: {
238
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
239
+ };
240
+ }> & {
241
+ size?: string | undefined;
242
+ view?: string | undefined;
243
+ readOnly?: boolean | undefined;
244
+ disabled?: boolean | undefined;
245
+ } & {
246
+ label?: string | undefined;
247
+ labelPlacement?: "outer" | "inner" | undefined;
248
+ leftHelper?: string | undefined;
249
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
250
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
251
+ textBefore?: string | undefined;
252
+ textAfter?: string | undefined;
253
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
254
+ } & {
255
+ requiredPlacement?: "right" | "left" | undefined;
256
+ } & {
257
+ optional?: true | undefined;
258
+ required?: false | undefined;
259
+ } & {
260
+ clear?: boolean | undefined;
261
+ hasDivider?: boolean | undefined;
262
+ } & {
263
+ chips?: undefined;
264
+ onChangeChips?: undefined;
265
+ enumerationType?: "plain" | undefined;
266
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
267
+ } & 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<{
268
+ view: {
269
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
270
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
271
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
272
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
273
+ };
274
+ size: {
275
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
276
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
277
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
278
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
279
+ };
280
+ labelPlacement: {
281
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
282
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
283
+ };
284
+ clear: {
285
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
286
+ };
287
+ disabled: {
288
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
289
+ };
290
+ readOnly: {
291
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
292
+ };
293
+ }> & {
294
+ size?: string | undefined;
295
+ view?: string | undefined;
296
+ readOnly?: boolean | undefined;
297
+ disabled?: boolean | undefined;
298
+ } & {
299
+ label?: string | undefined;
300
+ labelPlacement?: "outer" | "inner" | undefined;
301
+ leftHelper?: string | undefined;
302
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
303
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
304
+ textBefore?: string | undefined;
305
+ textAfter?: string | undefined;
306
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
307
+ } & {
308
+ requiredPlacement?: "right" | "left" | undefined;
309
+ } & {
310
+ optional?: true | undefined;
311
+ required?: false | undefined;
312
+ } & {
313
+ clear?: boolean | undefined;
314
+ hasDivider?: boolean | undefined;
315
+ } & {
316
+ enumerationType: "chip";
317
+ onSearch?: undefined;
318
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
319
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
320
+ } & 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<{
321
+ view: {
322
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
323
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
324
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
325
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
326
+ };
327
+ size: {
328
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
329
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
330
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
331
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
332
+ };
333
+ labelPlacement: {
334
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
335
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
336
+ };
337
+ clear: {
338
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
339
+ };
340
+ disabled: {
341
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
342
+ };
343
+ readOnly: {
344
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
345
+ };
346
+ }> & {
347
+ size?: string | undefined;
348
+ view?: string | undefined;
349
+ readOnly?: boolean | undefined;
350
+ disabled?: boolean | undefined;
351
+ } & {
352
+ label?: string | undefined;
353
+ labelPlacement?: "outer" | "inner" | undefined;
354
+ leftHelper?: string | undefined;
355
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
356
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
357
+ textBefore?: string | undefined;
358
+ textAfter?: string | undefined;
359
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
360
+ } & {
361
+ requiredPlacement?: "right" | "left" | undefined;
362
+ } & {
363
+ optional?: true | undefined;
364
+ required?: false | undefined;
365
+ } & {
366
+ clear?: false | undefined;
367
+ hasDivider?: undefined;
368
+ } & {
369
+ chips?: undefined;
370
+ onChangeChips?: undefined;
371
+ enumerationType?: "plain" | undefined;
372
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
373
+ } & 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<{
374
+ view: {
375
+ default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
376
+ positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
377
+ warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
378
+ negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
379
+ };
380
+ size: {
381
+ l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
382
+ m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
383
+ s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
384
+ xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
385
+ };
386
+ labelPlacement: {
387
+ inner: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
388
+ outer: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
389
+ };
390
+ clear: {
391
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
392
+ };
393
+ disabled: {
394
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
395
+ };
396
+ readOnly: {
397
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
398
+ };
399
+ }> & {
400
+ size?: string | undefined;
401
+ view?: string | undefined;
402
+ readOnly?: boolean | undefined;
403
+ disabled?: boolean | undefined;
404
+ } & {
405
+ label?: string | undefined;
406
+ labelPlacement?: "outer" | "inner" | undefined;
407
+ leftHelper?: string | undefined;
408
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
409
+ contentRight?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
410
+ textBefore?: string | undefined;
411
+ textAfter?: string | undefined;
412
+ onSearch?: ((value: string, event?: import("react").KeyboardEvent<HTMLInputElement> | undefined) => void) | undefined;
413
+ } & {
414
+ requiredPlacement?: "right" | "left" | undefined;
415
+ } & {
416
+ optional?: true | undefined;
417
+ required?: false | undefined;
418
+ } & {
419
+ clear?: false | undefined;
420
+ hasDivider?: undefined;
421
+ } & {
422
+ enumerationType: "chip";
423
+ onSearch?: undefined;
424
+ chips?: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[] | undefined;
425
+ onChangeChips?: ((value: import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").TextFieldPrimitiveValue[]) => void) | undefined;
426
+ } & 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">) & import("react").RefAttributes<HTMLInputElement>>;
@@ -15,22 +15,12 @@ export declare const config: {
15
15
  positive: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
16
16
  /**
17
17
  * @deprecated
18
- * Использовать `default`
18
+ * использовать `default`
19
19
  */
20
20
  primary: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
21
21
  warning: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
22
22
  negative: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
23
23
  };
24
- hintView: {
25
- default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
26
- onDark: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
27
- onLight: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
28
- inverse: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
29
- };
30
- hintSize: {
31
- m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
32
- s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
33
- };
34
24
  clear: {
35
25
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
36
26
  };