@salutejs/sdds-cs 0.331.0-canary.2286.18557548158.0 → 0.331.0-canary.2288.18653805742.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Attach/Attach.d.ts +448 -16
- package/components/Select/Select.config.js +2 -4
- package/components/Select/Select.d.ts +0 -12
- package/emotion/cjs/components/Select/Select.config.js +2 -4
- package/emotion/es/components/Select/Select.config.js +2 -4
- package/es/components/Select/Select.config.js +2 -4
- package/package.json +3 -3
|
@@ -14,7 +14,7 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
14
14
|
size: {
|
|
15
15
|
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
|
16
16
|
};
|
|
17
|
-
}> & ((import("react").
|
|
17
|
+
}> & ((import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
18
18
|
text?: string;
|
|
19
19
|
contentLeft?: import("react").ReactNode;
|
|
20
20
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -36,9 +36,183 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
36
36
|
} & {
|
|
37
37
|
value?: string | number;
|
|
38
38
|
contentRight?: never;
|
|
39
|
-
} &
|
|
39
|
+
} & {
|
|
40
|
+
acceptedFileFormats?: string[];
|
|
41
|
+
hideButtonOnAttach?: boolean;
|
|
42
|
+
hasAttachment?: boolean;
|
|
43
|
+
helperText?: string;
|
|
44
|
+
size?: string;
|
|
45
|
+
view?: string;
|
|
46
|
+
helperTextView?: string;
|
|
47
|
+
customIcon?: React.ReactNode;
|
|
48
|
+
onClear?: () => void;
|
|
49
|
+
} & {
|
|
50
|
+
flow?: "horizontal";
|
|
51
|
+
multiple?: boolean;
|
|
52
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
53
|
+
} & {
|
|
54
|
+
buttonType?: "button";
|
|
55
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
56
|
+
text?: string;
|
|
57
|
+
contentLeft?: import("react").ReactNode;
|
|
58
|
+
contentPlacing?: "default" | "relaxed";
|
|
59
|
+
additionalContent?: import("react").ReactNode;
|
|
60
|
+
isLoading?: boolean;
|
|
61
|
+
loader?: import("react").ReactNode;
|
|
62
|
+
stretch?: boolean;
|
|
63
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
64
|
+
square?: boolean;
|
|
65
|
+
focused?: boolean;
|
|
66
|
+
disabled?: boolean;
|
|
67
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
68
|
+
view?: string;
|
|
69
|
+
size?: string;
|
|
70
|
+
outlined?: boolean;
|
|
71
|
+
shiftLeft?: boolean;
|
|
72
|
+
shiftRight?: boolean;
|
|
73
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
74
|
+
} & {
|
|
75
|
+
value?: string | number;
|
|
76
|
+
contentRight?: never;
|
|
77
|
+
} & {
|
|
78
|
+
acceptedFileFormats?: string[];
|
|
79
|
+
hideButtonOnAttach?: boolean;
|
|
80
|
+
hasAttachment?: boolean;
|
|
81
|
+
helperText?: string;
|
|
82
|
+
size?: string;
|
|
83
|
+
view?: string;
|
|
84
|
+
helperTextView?: string;
|
|
85
|
+
customIcon?: React.ReactNode;
|
|
86
|
+
onClear?: () => void;
|
|
87
|
+
} & {
|
|
88
|
+
flow?: "horizontal";
|
|
89
|
+
multiple?: boolean;
|
|
90
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
91
|
+
} & {
|
|
92
|
+
buttonType?: "button";
|
|
93
|
+
} & {
|
|
94
|
+
value?: never;
|
|
95
|
+
contentRight?: import("react").ReactNode;
|
|
96
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
97
|
+
text?: string;
|
|
98
|
+
contentLeft?: import("react").ReactNode;
|
|
99
|
+
contentPlacing?: "default" | "relaxed";
|
|
100
|
+
additionalContent?: import("react").ReactNode;
|
|
101
|
+
isLoading?: boolean;
|
|
102
|
+
loader?: import("react").ReactNode;
|
|
103
|
+
stretch?: boolean;
|
|
104
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
105
|
+
square?: boolean;
|
|
106
|
+
focused?: boolean;
|
|
107
|
+
disabled?: boolean;
|
|
108
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
109
|
+
view?: string;
|
|
110
|
+
size?: string;
|
|
111
|
+
outlined?: boolean;
|
|
112
|
+
shiftLeft?: boolean;
|
|
113
|
+
shiftRight?: boolean;
|
|
114
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
115
|
+
} & {
|
|
116
|
+
value?: string | number;
|
|
117
|
+
contentRight?: never;
|
|
118
|
+
} & {
|
|
119
|
+
acceptedFileFormats?: string[];
|
|
120
|
+
hideButtonOnAttach?: boolean;
|
|
121
|
+
hasAttachment?: boolean;
|
|
122
|
+
helperText?: string;
|
|
123
|
+
size?: string;
|
|
124
|
+
view?: string;
|
|
125
|
+
helperTextView?: string;
|
|
126
|
+
customIcon?: React.ReactNode;
|
|
127
|
+
onClear?: () => void;
|
|
128
|
+
} & {
|
|
129
|
+
flow?: "horizontal";
|
|
130
|
+
multiple?: boolean;
|
|
131
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
132
|
+
} & {
|
|
133
|
+
buttonType?: "iconButton";
|
|
134
|
+
icon?: React.ReactNode;
|
|
135
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
136
|
+
text?: string;
|
|
137
|
+
contentLeft?: import("react").ReactNode;
|
|
138
|
+
contentPlacing?: "default" | "relaxed";
|
|
139
|
+
additionalContent?: import("react").ReactNode;
|
|
140
|
+
isLoading?: boolean;
|
|
141
|
+
loader?: import("react").ReactNode;
|
|
142
|
+
stretch?: boolean;
|
|
143
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
144
|
+
square?: boolean;
|
|
145
|
+
focused?: boolean;
|
|
146
|
+
disabled?: boolean;
|
|
147
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
148
|
+
view?: string;
|
|
149
|
+
size?: string;
|
|
150
|
+
outlined?: boolean;
|
|
151
|
+
shiftLeft?: boolean;
|
|
152
|
+
shiftRight?: boolean;
|
|
153
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
154
|
+
} & {
|
|
155
|
+
value?: string | number;
|
|
156
|
+
contentRight?: never;
|
|
157
|
+
} & {
|
|
158
|
+
acceptedFileFormats?: string[];
|
|
159
|
+
hideButtonOnAttach?: boolean;
|
|
160
|
+
hasAttachment?: boolean;
|
|
161
|
+
helperText?: string;
|
|
162
|
+
size?: string;
|
|
163
|
+
view?: string;
|
|
164
|
+
helperTextView?: string;
|
|
165
|
+
customIcon?: React.ReactNode;
|
|
166
|
+
onClear?: () => void;
|
|
167
|
+
} & {
|
|
168
|
+
flow?: "horizontal";
|
|
169
|
+
multiple?: boolean;
|
|
170
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
171
|
+
} & {
|
|
172
|
+
buttonType?: "iconButton";
|
|
173
|
+
icon?: React.ReactNode;
|
|
174
|
+
} & {
|
|
175
|
+
value?: never;
|
|
176
|
+
contentRight?: import("react").ReactNode;
|
|
177
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
178
|
+
text?: string;
|
|
179
|
+
contentLeft?: import("react").ReactNode;
|
|
180
|
+
contentPlacing?: "default" | "relaxed";
|
|
181
|
+
additionalContent?: import("react").ReactNode;
|
|
182
|
+
isLoading?: boolean;
|
|
183
|
+
loader?: import("react").ReactNode;
|
|
184
|
+
stretch?: boolean;
|
|
185
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
186
|
+
square?: boolean;
|
|
187
|
+
focused?: boolean;
|
|
188
|
+
disabled?: boolean;
|
|
189
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
190
|
+
view?: string;
|
|
191
|
+
size?: string;
|
|
192
|
+
outlined?: boolean;
|
|
193
|
+
shiftLeft?: boolean;
|
|
194
|
+
shiftRight?: boolean;
|
|
195
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
196
|
+
} & {
|
|
197
|
+
value?: string | number;
|
|
198
|
+
contentRight?: never;
|
|
199
|
+
} & {
|
|
200
|
+
acceptedFileFormats?: string[];
|
|
201
|
+
hideButtonOnAttach?: boolean;
|
|
202
|
+
hasAttachment?: boolean;
|
|
203
|
+
helperText?: string;
|
|
204
|
+
size?: string;
|
|
205
|
+
view?: string;
|
|
206
|
+
helperTextView?: string;
|
|
207
|
+
customIcon?: React.ReactNode;
|
|
208
|
+
onClear?: () => void;
|
|
209
|
+
} & {
|
|
210
|
+
flow?: "vertical" | "auto";
|
|
211
|
+
multiple?: boolean;
|
|
212
|
+
dropdownOptions?: never;
|
|
213
|
+
} & {
|
|
40
214
|
buttonType?: "button";
|
|
41
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").
|
|
215
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
42
216
|
text?: string;
|
|
43
217
|
contentLeft?: import("react").ReactNode;
|
|
44
218
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -60,12 +234,65 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
60
234
|
} & {
|
|
61
235
|
value?: string | number;
|
|
62
236
|
contentRight?: never;
|
|
63
|
-
} &
|
|
237
|
+
} & {
|
|
238
|
+
acceptedFileFormats?: string[];
|
|
239
|
+
hideButtonOnAttach?: boolean;
|
|
240
|
+
hasAttachment?: boolean;
|
|
241
|
+
helperText?: string;
|
|
242
|
+
size?: string;
|
|
243
|
+
view?: string;
|
|
244
|
+
helperTextView?: string;
|
|
245
|
+
customIcon?: React.ReactNode;
|
|
246
|
+
onClear?: () => void;
|
|
247
|
+
} & {
|
|
248
|
+
flow?: "vertical" | "auto";
|
|
249
|
+
multiple?: boolean;
|
|
250
|
+
dropdownOptions?: never;
|
|
251
|
+
} & {
|
|
64
252
|
buttonType?: "button";
|
|
65
253
|
} & {
|
|
66
254
|
value?: never;
|
|
67
255
|
contentRight?: import("react").ReactNode;
|
|
68
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").
|
|
256
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
257
|
+
text?: string;
|
|
258
|
+
contentLeft?: import("react").ReactNode;
|
|
259
|
+
contentPlacing?: "default" | "relaxed";
|
|
260
|
+
additionalContent?: import("react").ReactNode;
|
|
261
|
+
isLoading?: boolean;
|
|
262
|
+
loader?: import("react").ReactNode;
|
|
263
|
+
stretch?: boolean;
|
|
264
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
265
|
+
square?: boolean;
|
|
266
|
+
focused?: boolean;
|
|
267
|
+
disabled?: boolean;
|
|
268
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
269
|
+
view?: string;
|
|
270
|
+
size?: string;
|
|
271
|
+
outlined?: boolean;
|
|
272
|
+
shiftLeft?: boolean;
|
|
273
|
+
shiftRight?: boolean;
|
|
274
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
275
|
+
} & {
|
|
276
|
+
value?: string | number;
|
|
277
|
+
contentRight?: never;
|
|
278
|
+
} & {
|
|
279
|
+
acceptedFileFormats?: string[];
|
|
280
|
+
hideButtonOnAttach?: boolean;
|
|
281
|
+
hasAttachment?: boolean;
|
|
282
|
+
helperText?: string;
|
|
283
|
+
size?: string;
|
|
284
|
+
view?: string;
|
|
285
|
+
helperTextView?: string;
|
|
286
|
+
customIcon?: React.ReactNode;
|
|
287
|
+
onClear?: () => void;
|
|
288
|
+
} & {
|
|
289
|
+
flow?: "vertical" | "auto";
|
|
290
|
+
multiple?: boolean;
|
|
291
|
+
dropdownOptions?: never;
|
|
292
|
+
} & {
|
|
293
|
+
buttonType?: "iconButton";
|
|
294
|
+
icon?: React.ReactNode;
|
|
295
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
69
296
|
text?: string;
|
|
70
297
|
contentLeft?: import("react").ReactNode;
|
|
71
298
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -87,10 +314,27 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
87
314
|
} & {
|
|
88
315
|
value?: string | number;
|
|
89
316
|
contentRight?: never;
|
|
90
|
-
} &
|
|
317
|
+
} & {
|
|
318
|
+
acceptedFileFormats?: string[];
|
|
319
|
+
hideButtonOnAttach?: boolean;
|
|
320
|
+
hasAttachment?: boolean;
|
|
321
|
+
helperText?: string;
|
|
322
|
+
size?: string;
|
|
323
|
+
view?: string;
|
|
324
|
+
helperTextView?: string;
|
|
325
|
+
customIcon?: React.ReactNode;
|
|
326
|
+
onClear?: () => void;
|
|
327
|
+
} & {
|
|
328
|
+
flow?: "vertical" | "auto";
|
|
329
|
+
multiple?: boolean;
|
|
330
|
+
dropdownOptions?: never;
|
|
331
|
+
} & {
|
|
91
332
|
buttonType?: "iconButton";
|
|
92
333
|
icon?: React.ReactNode;
|
|
93
|
-
} &
|
|
334
|
+
} & {
|
|
335
|
+
value?: never;
|
|
336
|
+
contentRight?: import("react").ReactNode;
|
|
337
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
94
338
|
text?: string;
|
|
95
339
|
contentLeft?: import("react").ReactNode;
|
|
96
340
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -109,16 +353,148 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
109
353
|
shiftLeft?: boolean;
|
|
110
354
|
shiftRight?: boolean;
|
|
111
355
|
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
356
|
+
} & {
|
|
357
|
+
value?: never;
|
|
358
|
+
contentRight?: import("react").ReactNode;
|
|
359
|
+
} & {
|
|
360
|
+
acceptedFileFormats?: string[];
|
|
361
|
+
hideButtonOnAttach?: boolean;
|
|
362
|
+
hasAttachment?: boolean;
|
|
363
|
+
helperText?: string;
|
|
364
|
+
size?: string;
|
|
365
|
+
view?: string;
|
|
366
|
+
helperTextView?: string;
|
|
367
|
+
customIcon?: React.ReactNode;
|
|
368
|
+
onClear?: () => void;
|
|
369
|
+
} & {
|
|
370
|
+
flow?: "horizontal";
|
|
371
|
+
multiple?: boolean;
|
|
372
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
373
|
+
} & {
|
|
374
|
+
buttonType?: "button";
|
|
112
375
|
} & {
|
|
113
376
|
value?: string | number;
|
|
114
377
|
contentRight?: never;
|
|
115
|
-
} & import("@salutejs/plasma-new-hope/
|
|
378
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
379
|
+
text?: string;
|
|
380
|
+
contentLeft?: import("react").ReactNode;
|
|
381
|
+
contentPlacing?: "default" | "relaxed";
|
|
382
|
+
additionalContent?: import("react").ReactNode;
|
|
383
|
+
isLoading?: boolean;
|
|
384
|
+
loader?: import("react").ReactNode;
|
|
385
|
+
stretch?: boolean;
|
|
386
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
387
|
+
square?: boolean;
|
|
388
|
+
focused?: boolean;
|
|
389
|
+
disabled?: boolean;
|
|
390
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
391
|
+
view?: string;
|
|
392
|
+
size?: string;
|
|
393
|
+
outlined?: boolean;
|
|
394
|
+
shiftLeft?: boolean;
|
|
395
|
+
shiftRight?: boolean;
|
|
396
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
397
|
+
} & {
|
|
398
|
+
value?: never;
|
|
399
|
+
contentRight?: import("react").ReactNode;
|
|
400
|
+
} & {
|
|
401
|
+
acceptedFileFormats?: string[];
|
|
402
|
+
hideButtonOnAttach?: boolean;
|
|
403
|
+
hasAttachment?: boolean;
|
|
404
|
+
helperText?: string;
|
|
405
|
+
size?: string;
|
|
406
|
+
view?: string;
|
|
407
|
+
helperTextView?: string;
|
|
408
|
+
customIcon?: React.ReactNode;
|
|
409
|
+
onClear?: () => void;
|
|
410
|
+
} & {
|
|
411
|
+
flow?: "horizontal";
|
|
412
|
+
multiple?: boolean;
|
|
413
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
414
|
+
} & {
|
|
415
|
+
buttonType?: "button";
|
|
416
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
417
|
+
text?: string;
|
|
418
|
+
contentLeft?: import("react").ReactNode;
|
|
419
|
+
contentPlacing?: "default" | "relaxed";
|
|
420
|
+
additionalContent?: import("react").ReactNode;
|
|
421
|
+
isLoading?: boolean;
|
|
422
|
+
loader?: import("react").ReactNode;
|
|
423
|
+
stretch?: boolean;
|
|
424
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
425
|
+
square?: boolean;
|
|
426
|
+
focused?: boolean;
|
|
427
|
+
disabled?: boolean;
|
|
428
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
429
|
+
view?: string;
|
|
430
|
+
size?: string;
|
|
431
|
+
outlined?: boolean;
|
|
432
|
+
shiftLeft?: boolean;
|
|
433
|
+
shiftRight?: boolean;
|
|
434
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
435
|
+
} & {
|
|
436
|
+
value?: never;
|
|
437
|
+
contentRight?: import("react").ReactNode;
|
|
438
|
+
} & {
|
|
439
|
+
acceptedFileFormats?: string[];
|
|
440
|
+
hideButtonOnAttach?: boolean;
|
|
441
|
+
hasAttachment?: boolean;
|
|
442
|
+
helperText?: string;
|
|
443
|
+
size?: string;
|
|
444
|
+
view?: string;
|
|
445
|
+
helperTextView?: string;
|
|
446
|
+
customIcon?: React.ReactNode;
|
|
447
|
+
onClear?: () => void;
|
|
448
|
+
} & {
|
|
449
|
+
flow?: "horizontal";
|
|
450
|
+
multiple?: boolean;
|
|
451
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
452
|
+
} & {
|
|
116
453
|
buttonType?: "iconButton";
|
|
117
454
|
icon?: React.ReactNode;
|
|
455
|
+
} & {
|
|
456
|
+
value?: string | number;
|
|
457
|
+
contentRight?: never;
|
|
458
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
459
|
+
text?: string;
|
|
460
|
+
contentLeft?: import("react").ReactNode;
|
|
461
|
+
contentPlacing?: "default" | "relaxed";
|
|
462
|
+
additionalContent?: import("react").ReactNode;
|
|
463
|
+
isLoading?: boolean;
|
|
464
|
+
loader?: import("react").ReactNode;
|
|
465
|
+
stretch?: boolean;
|
|
466
|
+
stretching?: "auto" | "filled" | "fixed";
|
|
467
|
+
square?: boolean;
|
|
468
|
+
focused?: boolean;
|
|
469
|
+
disabled?: boolean;
|
|
470
|
+
pin?: import("@salutejs/plasma-new-hope/types/utils/roundness").Pin;
|
|
471
|
+
view?: string;
|
|
472
|
+
size?: string;
|
|
473
|
+
outlined?: boolean;
|
|
474
|
+
shiftLeft?: boolean;
|
|
475
|
+
shiftRight?: boolean;
|
|
476
|
+
blur?: import("@salutejs/plasma-new-hope/styled-components").Blur;
|
|
118
477
|
} & {
|
|
119
478
|
value?: never;
|
|
120
479
|
contentRight?: import("react").ReactNode;
|
|
121
|
-
} &
|
|
480
|
+
} & {
|
|
481
|
+
acceptedFileFormats?: string[];
|
|
482
|
+
hideButtonOnAttach?: boolean;
|
|
483
|
+
hasAttachment?: boolean;
|
|
484
|
+
helperText?: string;
|
|
485
|
+
size?: string;
|
|
486
|
+
view?: string;
|
|
487
|
+
helperTextView?: string;
|
|
488
|
+
customIcon?: React.ReactNode;
|
|
489
|
+
onClear?: () => void;
|
|
490
|
+
} & {
|
|
491
|
+
flow?: "horizontal";
|
|
492
|
+
multiple?: boolean;
|
|
493
|
+
dropdownOptions?: import("@salutejs/plasma-new-hope/types/components/Attach/Attach.types").DropdownOptions;
|
|
494
|
+
} & {
|
|
495
|
+
buttonType?: "iconButton";
|
|
496
|
+
icon?: React.ReactNode;
|
|
497
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
122
498
|
text?: string;
|
|
123
499
|
contentLeft?: import("react").ReactNode;
|
|
124
500
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -140,12 +516,26 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
140
516
|
} & {
|
|
141
517
|
value?: never;
|
|
142
518
|
contentRight?: import("react").ReactNode;
|
|
143
|
-
} &
|
|
519
|
+
} & {
|
|
520
|
+
acceptedFileFormats?: string[];
|
|
521
|
+
hideButtonOnAttach?: boolean;
|
|
522
|
+
hasAttachment?: boolean;
|
|
523
|
+
helperText?: string;
|
|
524
|
+
size?: string;
|
|
525
|
+
view?: string;
|
|
526
|
+
helperTextView?: string;
|
|
527
|
+
customIcon?: React.ReactNode;
|
|
528
|
+
onClear?: () => void;
|
|
529
|
+
} & {
|
|
530
|
+
flow?: "vertical" | "auto";
|
|
531
|
+
multiple?: boolean;
|
|
532
|
+
dropdownOptions?: never;
|
|
533
|
+
} & {
|
|
144
534
|
buttonType?: "button";
|
|
145
535
|
} & {
|
|
146
536
|
value?: string | number;
|
|
147
537
|
contentRight?: never;
|
|
148
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").
|
|
538
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
149
539
|
text?: string;
|
|
150
540
|
contentLeft?: import("react").ReactNode;
|
|
151
541
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -167,9 +557,23 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
167
557
|
} & {
|
|
168
558
|
value?: never;
|
|
169
559
|
contentRight?: import("react").ReactNode;
|
|
170
|
-
} &
|
|
560
|
+
} & {
|
|
561
|
+
acceptedFileFormats?: string[];
|
|
562
|
+
hideButtonOnAttach?: boolean;
|
|
563
|
+
hasAttachment?: boolean;
|
|
564
|
+
helperText?: string;
|
|
565
|
+
size?: string;
|
|
566
|
+
view?: string;
|
|
567
|
+
helperTextView?: string;
|
|
568
|
+
customIcon?: React.ReactNode;
|
|
569
|
+
onClear?: () => void;
|
|
570
|
+
} & {
|
|
571
|
+
flow?: "vertical" | "auto";
|
|
572
|
+
multiple?: boolean;
|
|
573
|
+
dropdownOptions?: never;
|
|
574
|
+
} & {
|
|
171
575
|
buttonType?: "button";
|
|
172
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").
|
|
576
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
173
577
|
text?: string;
|
|
174
578
|
contentLeft?: import("react").ReactNode;
|
|
175
579
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -191,13 +595,27 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
191
595
|
} & {
|
|
192
596
|
value?: never;
|
|
193
597
|
contentRight?: import("react").ReactNode;
|
|
194
|
-
} &
|
|
598
|
+
} & {
|
|
599
|
+
acceptedFileFormats?: string[];
|
|
600
|
+
hideButtonOnAttach?: boolean;
|
|
601
|
+
hasAttachment?: boolean;
|
|
602
|
+
helperText?: string;
|
|
603
|
+
size?: string;
|
|
604
|
+
view?: string;
|
|
605
|
+
helperTextView?: string;
|
|
606
|
+
customIcon?: React.ReactNode;
|
|
607
|
+
onClear?: () => void;
|
|
608
|
+
} & {
|
|
609
|
+
flow?: "vertical" | "auto";
|
|
610
|
+
multiple?: boolean;
|
|
611
|
+
dropdownOptions?: never;
|
|
612
|
+
} & {
|
|
195
613
|
buttonType?: "iconButton";
|
|
196
614
|
icon?: React.ReactNode;
|
|
197
615
|
} & {
|
|
198
616
|
value?: string | number;
|
|
199
617
|
contentRight?: never;
|
|
200
|
-
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").
|
|
618
|
+
} & import("react").RefAttributes<HTMLDivElement>) | (import("react").InputHTMLAttributes<HTMLInputElement> & Omit<import("react").ButtonHTMLAttributes<HTMLElement>, "value"> & Omit<import("react").AnchorHTMLAttributes<HTMLElement>, "type"> & import("@salutejs/plasma-new-hope/styled-components").AsProps & {
|
|
201
619
|
text?: string;
|
|
202
620
|
contentLeft?: import("react").ReactNode;
|
|
203
621
|
contentPlacing?: "default" | "relaxed";
|
|
@@ -219,7 +637,21 @@ export declare const Attach: import("react").FunctionComponent<import("@salutejs
|
|
|
219
637
|
} & {
|
|
220
638
|
value?: never;
|
|
221
639
|
contentRight?: import("react").ReactNode;
|
|
222
|
-
} &
|
|
640
|
+
} & {
|
|
641
|
+
acceptedFileFormats?: string[];
|
|
642
|
+
hideButtonOnAttach?: boolean;
|
|
643
|
+
hasAttachment?: boolean;
|
|
644
|
+
helperText?: string;
|
|
645
|
+
size?: string;
|
|
646
|
+
view?: string;
|
|
647
|
+
helperTextView?: string;
|
|
648
|
+
customIcon?: React.ReactNode;
|
|
649
|
+
onClear?: () => void;
|
|
650
|
+
} & {
|
|
651
|
+
flow?: "vertical" | "auto";
|
|
652
|
+
multiple?: boolean;
|
|
653
|
+
dropdownOptions?: never;
|
|
654
|
+
} & {
|
|
223
655
|
buttonType?: "iconButton";
|
|
224
656
|
icon?: React.ReactNode;
|
|
225
657
|
} & import("react").RefAttributes<HTMLDivElement>))>;
|
|
@@ -174,9 +174,7 @@ function _templateObject2() {
|
|
|
174
174
|
": 0.5rem;\n ",
|
|
175
175
|
": 1.5rem;\n ",
|
|
176
176
|
": 1rem;\n ",
|
|
177
|
-
": 0 0.5rem 0 0;\n ",
|
|
178
|
-
": 0.375rem;\n ",
|
|
179
|
-
": 1.875rem;\n\n ",
|
|
177
|
+
": 0 0.5rem 0 0;\n\n ",
|
|
180
178
|
": 0rem;\n ",
|
|
181
179
|
": 0rem;\n ",
|
|
182
180
|
": 0rem;\n ",
|
|
@@ -299,7 +297,7 @@ var config = {
|
|
|
299
297
|
negative: (0, _styledcomponents.css)(_templateObject1(), _styledcomponents.selectTokens.textFieldColor, _styledcomponents.selectTokens.textFieldPlaceholderColor, _styledcomponents.selectTokens.textFieldBackgroundColor, _styledcomponents.selectTokens.textFieldBackgroundColorFocus, _styledcomponents.selectTokens.textFieldLabelColor, _styledcomponents.selectTokens.textFieldLeftHelperColor, _styledcomponents.selectTokens.textFieldContentSlotColor, _styledcomponents.selectTokens.textFieldBorderColor, _styledcomponents.selectTokens.textFieldBorderColorHover, _styledcomponents.selectTokens.textFieldBorderColorFocus, _styledcomponents.selectTokens.textFieldIndicatorColor, _styledcomponents.selectTokens.textFieldOptionalColor, _styledcomponents.selectTokens.buttonColor, _styledcomponents.selectTokens.buttonColorHover, _styledcomponents.selectTokens.buttonColorActive, _styledcomponents.selectTokens.buttonArrowColor, _styledcomponents.selectTokens.buttonArrowColorHover, _styledcomponents.selectTokens.buttonArrowColorActive, _styledcomponents.selectTokens.buttonBackgroundColor, _styledcomponents.selectTokens.buttonBackgroundColorHover, _styledcomponents.selectTokens.buttonBackgroundColorActive, _styledcomponents.selectTokens.disclosureIconColor, _styledcomponents.selectTokens.disclosureIconColorHover, _styledcomponents.selectTokens.itemBackgroundHover, _styledcomponents.selectTokens.itemDisabledOpacity, _styledcomponents.selectTokens.itemDisabledColor, _styledcomponents.selectTokens.dropdownBorderColor, _styledcomponents.selectTokens.checkboxIconColor, _styledcomponents.selectTokens.dividerColor, _styledcomponents.selectTokens.itemIconColor, _styledcomponents.selectTokens.checkboxFillColor, _styledcomponents.selectTokens.checkboxIconColor, _styledcomponents.selectTokens.checkboxTriggerBorderCheckedColor, _styledcomponents.selectTokens.checkboxTriggerBorderColor)
|
|
300
298
|
},
|
|
301
299
|
size: {
|
|
302
|
-
s: (0, _styledcomponents.css)(_templateObject2(), _styledcomponents.selectTokens.textFieldHeight, _styledcomponents.selectTokens.textFieldPadding, _styledcomponents.selectTokens.textFieldPaddingWithChips, _styledcomponents.selectTokens.textFieldBorderRadius, _styledcomponents.selectTokens.textFieldBorderWidth, _styledcomponents.selectTokens.textFieldLeftContentMargin, _styledcomponents.selectTokens.textFieldRightContentMargin, _styledcomponents.selectTokens.textFieldTextBeforeMargin, _styledcomponents.selectTokens.textFieldTextAfterMargin, _styledcomponents.selectTokens.textFieldFontFamily, _styledcomponents.selectTokens.textFieldFontSize, _styledcomponents.selectTokens.textFieldFontStyle, _styledcomponents.selectTokens.textFieldFontWeight, _styledcomponents.selectTokens.textFieldLetterSpacing, _styledcomponents.selectTokens.textFieldLineHeight, _styledcomponents.selectTokens.textFieldLabelOffset, _styledcomponents.selectTokens.textFieldLabelFontFamily, _styledcomponents.selectTokens.textFieldLabelFontSize, _styledcomponents.selectTokens.textFieldLabelFontStyle, _styledcomponents.selectTokens.textFieldLabelFontWeight, _styledcomponents.selectTokens.textFieldLabelLetterSpacing, _styledcomponents.selectTokens.textFieldLabelLineHeight, _styledcomponents.selectTokens.textFieldLeftHelperOffset, _styledcomponents.selectTokens.textFieldLeftHelperFontFamily, _styledcomponents.selectTokens.textFieldLeftHelperFontSize, _styledcomponents.selectTokens.textFieldLeftHelperFontStyle, _styledcomponents.selectTokens.textFieldLeftHelperFontWeight, _styledcomponents.selectTokens.textFieldLeftHelperLetterSpacing, _styledcomponents.selectTokens.textFieldLeftHelperLineHeight, _styledcomponents.selectTokens.textFieldLabelInnerPadding, _styledcomponents.selectTokens.textFieldContentLabelInnerPadding, _styledcomponents.selectTokens.textFieldIndicatorSizeInner, _styledcomponents.selectTokens.textFieldIndicatorSizeOuter, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementInner, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementOuter, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementInnerRight, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementOuterRight, _styledcomponents.selectTokens.textFieldClearIndicatorLabelPlacementInner, _styledcomponents.selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, _styledcomponents.selectTokens.textFieldClearIndicatorHintInnerRight, _styledcomponents.selectTokens.textFieldChipGap, _styledcomponents.selectTokens.textFieldChipBorderRadius, _styledcomponents.selectTokens.textFieldChipWidth, _styledcomponents.selectTokens.textFieldChipHeight, _styledcomponents.selectTokens.textFieldChipPadding, _styledcomponents.selectTokens.textFieldChipClearContentMarginLeft, _styledcomponents.selectTokens.textFieldChipClearContentMarginRight, _styledcomponents.selectTokens.textFieldChipCloseIconSize, _styledcomponents.selectTokens.textFieldChipFontFamily, _styledcomponents.selectTokens.textFieldChipFontSize, _styledcomponents.selectTokens.textFieldChipFontStyle, _styledcomponents.selectTokens.textFieldChipFontWeight, _styledcomponents.selectTokens.textFieldChipLetterSpacing, _styledcomponents.selectTokens.textFieldChipLineHeight, _styledcomponents.selectTokens.buttonArrowMargin, _styledcomponents.selectTokens.targetHeight, _styledcomponents.selectTokens.buttonPadding, _styledcomponents.selectTokens.padding, _styledcomponents.selectTokens.borderRadius, _styledcomponents.selectTokens.dropdownBorderWidth, _styledcomponents.selectTokens.itemHeight, _styledcomponents.selectTokens.itemPadding, _styledcomponents.selectTokens.itemPaddingTight, _styledcomponents.selectTokens.itemBorderRadius, _styledcomponents.selectTokens.itemIconSize, _styledcomponents.selectTokens.itemIconSizeTight, _styledcomponents.selectTokens.itemIconMargin, _styledcomponents.selectTokens.
|
|
300
|
+
s: (0, _styledcomponents.css)(_templateObject2(), _styledcomponents.selectTokens.textFieldHeight, _styledcomponents.selectTokens.textFieldPadding, _styledcomponents.selectTokens.textFieldPaddingWithChips, _styledcomponents.selectTokens.textFieldBorderRadius, _styledcomponents.selectTokens.textFieldBorderWidth, _styledcomponents.selectTokens.textFieldLeftContentMargin, _styledcomponents.selectTokens.textFieldRightContentMargin, _styledcomponents.selectTokens.textFieldTextBeforeMargin, _styledcomponents.selectTokens.textFieldTextAfterMargin, _styledcomponents.selectTokens.textFieldFontFamily, _styledcomponents.selectTokens.textFieldFontSize, _styledcomponents.selectTokens.textFieldFontStyle, _styledcomponents.selectTokens.textFieldFontWeight, _styledcomponents.selectTokens.textFieldLetterSpacing, _styledcomponents.selectTokens.textFieldLineHeight, _styledcomponents.selectTokens.textFieldLabelOffset, _styledcomponents.selectTokens.textFieldLabelFontFamily, _styledcomponents.selectTokens.textFieldLabelFontSize, _styledcomponents.selectTokens.textFieldLabelFontStyle, _styledcomponents.selectTokens.textFieldLabelFontWeight, _styledcomponents.selectTokens.textFieldLabelLetterSpacing, _styledcomponents.selectTokens.textFieldLabelLineHeight, _styledcomponents.selectTokens.textFieldLeftHelperOffset, _styledcomponents.selectTokens.textFieldLeftHelperFontFamily, _styledcomponents.selectTokens.textFieldLeftHelperFontSize, _styledcomponents.selectTokens.textFieldLeftHelperFontStyle, _styledcomponents.selectTokens.textFieldLeftHelperFontWeight, _styledcomponents.selectTokens.textFieldLeftHelperLetterSpacing, _styledcomponents.selectTokens.textFieldLeftHelperLineHeight, _styledcomponents.selectTokens.textFieldLabelInnerPadding, _styledcomponents.selectTokens.textFieldContentLabelInnerPadding, _styledcomponents.selectTokens.textFieldIndicatorSizeInner, _styledcomponents.selectTokens.textFieldIndicatorSizeOuter, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementInner, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementOuter, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementInnerRight, _styledcomponents.selectTokens.textFieldIndicatorLabelPlacementOuterRight, _styledcomponents.selectTokens.textFieldClearIndicatorLabelPlacementInner, _styledcomponents.selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, _styledcomponents.selectTokens.textFieldClearIndicatorHintInnerRight, _styledcomponents.selectTokens.textFieldChipGap, _styledcomponents.selectTokens.textFieldChipBorderRadius, _styledcomponents.selectTokens.textFieldChipWidth, _styledcomponents.selectTokens.textFieldChipHeight, _styledcomponents.selectTokens.textFieldChipPadding, _styledcomponents.selectTokens.textFieldChipClearContentMarginLeft, _styledcomponents.selectTokens.textFieldChipClearContentMarginRight, _styledcomponents.selectTokens.textFieldChipCloseIconSize, _styledcomponents.selectTokens.textFieldChipFontFamily, _styledcomponents.selectTokens.textFieldChipFontSize, _styledcomponents.selectTokens.textFieldChipFontStyle, _styledcomponents.selectTokens.textFieldChipFontWeight, _styledcomponents.selectTokens.textFieldChipLetterSpacing, _styledcomponents.selectTokens.textFieldChipLineHeight, _styledcomponents.selectTokens.buttonArrowMargin, _styledcomponents.selectTokens.targetHeight, _styledcomponents.selectTokens.buttonPadding, _styledcomponents.selectTokens.padding, _styledcomponents.selectTokens.borderRadius, _styledcomponents.selectTokens.dropdownBorderWidth, _styledcomponents.selectTokens.itemHeight, _styledcomponents.selectTokens.itemPadding, _styledcomponents.selectTokens.itemPaddingTight, _styledcomponents.selectTokens.itemBorderRadius, _styledcomponents.selectTokens.itemIconSize, _styledcomponents.selectTokens.itemIconSizeTight, _styledcomponents.selectTokens.itemIconMargin, _styledcomponents.selectTokens.cellPadding, _styledcomponents.selectTokens.cellPaddingLeftContent, _styledcomponents.selectTokens.cellPaddingContent, _styledcomponents.selectTokens.cellPaddingRightContent, _styledcomponents.selectTokens.cellTextboxGap, _styledcomponents.selectTokens.cellGap, _styledcomponents.selectTokens.cellTitleFontFamily, _styledcomponents.selectTokens.cellTitleFontSize, _styledcomponents.selectTokens.cellTitleFontStyle, _styledcomponents.selectTokens.cellTitleFontWeight, _styledcomponents.selectTokens.cellTitleLetterSpacing, _styledcomponents.selectTokens.cellTitleLineHeight, _styledcomponents.selectTokens.fontFamily, _styledcomponents.selectTokens.fontSize, _styledcomponents.selectTokens.fontStyle, _styledcomponents.selectTokens.fontWeight, _styledcomponents.selectTokens.fontLetterSpacing, _styledcomponents.selectTokens.fontLineHeight, _styledcomponents.selectTokens.checkboxTriggerSize, _styledcomponents.selectTokens.checkboxTriggerSizeTight, _styledcomponents.selectTokens.checkboxTriggerBorderRadius, _styledcomponents.selectTokens.checkboxTriggerBorderRadiusTight, _styledcomponents.selectTokens.checkboxTriggerBorderWidth, _styledcomponents.selectTokens.indicatorSize, _styledcomponents.selectTokens.dividerMarginTop, _styledcomponents.selectTokens.dividerMarginRight, _styledcomponents.selectTokens.dividerMarginBottom, _styledcomponents.selectTokens.dividerMarginLeft, _styledcomponents.selectTokens.dividerMarginTopTight, _styledcomponents.selectTokens.dividerMarginBottomTight)
|
|
303
301
|
},
|
|
304
302
|
labelPlacement: {
|
|
305
303
|
inner: (0, _styledcomponents.css)(_templateObject3(), _styledcomponents.selectTokens.textFieldPlaceholderColor, _styledcomponents.selectTokens.textFieldLabelInnerFontFamily, _styledcomponents.selectTokens.textFieldLabelInnerFontSize, _styledcomponents.selectTokens.textFieldLabelInnerFontStyle, _styledcomponents.selectTokens.textFieldLabelInnerFontWeight, _styledcomponents.selectTokens.textFieldLabelInnerLetterSpacing, _styledcomponents.selectTokens.textFieldLabelInnerLineHeight),
|
|
@@ -52,8 +52,6 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
|
52
52
|
disabled?: boolean;
|
|
53
53
|
readOnly?: boolean;
|
|
54
54
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
|
55
|
-
treeView?: boolean;
|
|
56
|
-
arrowPlacement?: "left" | "right";
|
|
57
55
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
|
58
56
|
children?: never;
|
|
59
57
|
isTargetAmount?: boolean;
|
|
@@ -114,8 +112,6 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
|
114
112
|
disabled?: boolean;
|
|
115
113
|
readOnly?: boolean;
|
|
116
114
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
|
117
|
-
treeView?: boolean;
|
|
118
|
-
arrowPlacement?: "left" | "right";
|
|
119
115
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
|
120
116
|
children?: never;
|
|
121
117
|
isTargetAmount?: boolean;
|
|
@@ -175,8 +171,6 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
|
175
171
|
disabled?: boolean;
|
|
176
172
|
readOnly?: boolean;
|
|
177
173
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
|
178
|
-
treeView?: boolean;
|
|
179
|
-
arrowPlacement?: "left" | "right";
|
|
180
174
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
|
181
175
|
children?: never;
|
|
182
176
|
isTargetAmount?: boolean;
|
|
@@ -237,8 +231,6 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
|
237
231
|
disabled?: boolean;
|
|
238
232
|
readOnly?: boolean;
|
|
239
233
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
|
240
|
-
treeView?: boolean;
|
|
241
|
-
arrowPlacement?: "left" | "right";
|
|
242
234
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
|
243
235
|
children?: never;
|
|
244
236
|
isTargetAmount?: boolean;
|
|
@@ -286,8 +278,6 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
|
286
278
|
disabled?: boolean;
|
|
287
279
|
readOnly?: boolean;
|
|
288
280
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
|
289
|
-
treeView?: boolean;
|
|
290
|
-
arrowPlacement?: "left" | "right";
|
|
291
281
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
|
292
282
|
children?: never;
|
|
293
283
|
isTargetAmount?: boolean;
|
|
@@ -336,8 +326,6 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
|
336
326
|
disabled?: boolean;
|
|
337
327
|
readOnly?: boolean;
|
|
338
328
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
|
339
|
-
treeView?: boolean;
|
|
340
|
-
arrowPlacement?: "left" | "right";
|
|
341
329
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
|
342
330
|
children?: never;
|
|
343
331
|
isTargetAmount?: boolean;
|
|
@@ -174,9 +174,7 @@ function _templateObject2() {
|
|
|
174
174
|
": 0.5rem;\n ",
|
|
175
175
|
": 1.5rem;\n ",
|
|
176
176
|
": 1rem;\n ",
|
|
177
|
-
": 0 0.5rem 0 0;\n ",
|
|
178
|
-
": 0.375rem;\n ",
|
|
179
|
-
": 1.875rem;\n\n ",
|
|
177
|
+
": 0 0.5rem 0 0;\n\n ",
|
|
180
178
|
": 0rem;\n ",
|
|
181
179
|
": 0rem;\n ",
|
|
182
180
|
": 0rem;\n ",
|
|
@@ -299,7 +297,7 @@ var config = {
|
|
|
299
297
|
negative: (0, _emotion.css)(_templateObject1(), _emotion.selectTokens.textFieldColor, _emotion.selectTokens.textFieldPlaceholderColor, _emotion.selectTokens.textFieldBackgroundColor, _emotion.selectTokens.textFieldBackgroundColorFocus, _emotion.selectTokens.textFieldLabelColor, _emotion.selectTokens.textFieldLeftHelperColor, _emotion.selectTokens.textFieldContentSlotColor, _emotion.selectTokens.textFieldBorderColor, _emotion.selectTokens.textFieldBorderColorHover, _emotion.selectTokens.textFieldBorderColorFocus, _emotion.selectTokens.textFieldIndicatorColor, _emotion.selectTokens.textFieldOptionalColor, _emotion.selectTokens.buttonColor, _emotion.selectTokens.buttonColorHover, _emotion.selectTokens.buttonColorActive, _emotion.selectTokens.buttonArrowColor, _emotion.selectTokens.buttonArrowColorHover, _emotion.selectTokens.buttonArrowColorActive, _emotion.selectTokens.buttonBackgroundColor, _emotion.selectTokens.buttonBackgroundColorHover, _emotion.selectTokens.buttonBackgroundColorActive, _emotion.selectTokens.disclosureIconColor, _emotion.selectTokens.disclosureIconColorHover, _emotion.selectTokens.itemBackgroundHover, _emotion.selectTokens.itemDisabledOpacity, _emotion.selectTokens.itemDisabledColor, _emotion.selectTokens.dropdownBorderColor, _emotion.selectTokens.checkboxIconColor, _emotion.selectTokens.dividerColor, _emotion.selectTokens.itemIconColor, _emotion.selectTokens.checkboxFillColor, _emotion.selectTokens.checkboxIconColor, _emotion.selectTokens.checkboxTriggerBorderCheckedColor, _emotion.selectTokens.checkboxTriggerBorderColor)
|
|
300
298
|
},
|
|
301
299
|
size: {
|
|
302
|
-
s: (0, _emotion.css)(_templateObject2(), _emotion.selectTokens.textFieldHeight, _emotion.selectTokens.textFieldPadding, _emotion.selectTokens.textFieldPaddingWithChips, _emotion.selectTokens.textFieldBorderRadius, _emotion.selectTokens.textFieldBorderWidth, _emotion.selectTokens.textFieldLeftContentMargin, _emotion.selectTokens.textFieldRightContentMargin, _emotion.selectTokens.textFieldTextBeforeMargin, _emotion.selectTokens.textFieldTextAfterMargin, _emotion.selectTokens.textFieldFontFamily, _emotion.selectTokens.textFieldFontSize, _emotion.selectTokens.textFieldFontStyle, _emotion.selectTokens.textFieldFontWeight, _emotion.selectTokens.textFieldLetterSpacing, _emotion.selectTokens.textFieldLineHeight, _emotion.selectTokens.textFieldLabelOffset, _emotion.selectTokens.textFieldLabelFontFamily, _emotion.selectTokens.textFieldLabelFontSize, _emotion.selectTokens.textFieldLabelFontStyle, _emotion.selectTokens.textFieldLabelFontWeight, _emotion.selectTokens.textFieldLabelLetterSpacing, _emotion.selectTokens.textFieldLabelLineHeight, _emotion.selectTokens.textFieldLeftHelperOffset, _emotion.selectTokens.textFieldLeftHelperFontFamily, _emotion.selectTokens.textFieldLeftHelperFontSize, _emotion.selectTokens.textFieldLeftHelperFontStyle, _emotion.selectTokens.textFieldLeftHelperFontWeight, _emotion.selectTokens.textFieldLeftHelperLetterSpacing, _emotion.selectTokens.textFieldLeftHelperLineHeight, _emotion.selectTokens.textFieldLabelInnerPadding, _emotion.selectTokens.textFieldContentLabelInnerPadding, _emotion.selectTokens.textFieldIndicatorSizeInner, _emotion.selectTokens.textFieldIndicatorSizeOuter, _emotion.selectTokens.textFieldIndicatorLabelPlacementInner, _emotion.selectTokens.textFieldIndicatorLabelPlacementOuter, _emotion.selectTokens.textFieldIndicatorLabelPlacementInnerRight, _emotion.selectTokens.textFieldIndicatorLabelPlacementOuterRight, _emotion.selectTokens.textFieldClearIndicatorLabelPlacementInner, _emotion.selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, _emotion.selectTokens.textFieldClearIndicatorHintInnerRight, _emotion.selectTokens.textFieldChipGap, _emotion.selectTokens.textFieldChipBorderRadius, _emotion.selectTokens.textFieldChipWidth, _emotion.selectTokens.textFieldChipHeight, _emotion.selectTokens.textFieldChipPadding, _emotion.selectTokens.textFieldChipClearContentMarginLeft, _emotion.selectTokens.textFieldChipClearContentMarginRight, _emotion.selectTokens.textFieldChipCloseIconSize, _emotion.selectTokens.textFieldChipFontFamily, _emotion.selectTokens.textFieldChipFontSize, _emotion.selectTokens.textFieldChipFontStyle, _emotion.selectTokens.textFieldChipFontWeight, _emotion.selectTokens.textFieldChipLetterSpacing, _emotion.selectTokens.textFieldChipLineHeight, _emotion.selectTokens.buttonArrowMargin, _emotion.selectTokens.targetHeight, _emotion.selectTokens.buttonPadding, _emotion.selectTokens.padding, _emotion.selectTokens.borderRadius, _emotion.selectTokens.dropdownBorderWidth, _emotion.selectTokens.itemHeight, _emotion.selectTokens.itemPadding, _emotion.selectTokens.itemPaddingTight, _emotion.selectTokens.itemBorderRadius, _emotion.selectTokens.itemIconSize, _emotion.selectTokens.itemIconSizeTight, _emotion.selectTokens.itemIconMargin, _emotion.selectTokens.
|
|
300
|
+
s: (0, _emotion.css)(_templateObject2(), _emotion.selectTokens.textFieldHeight, _emotion.selectTokens.textFieldPadding, _emotion.selectTokens.textFieldPaddingWithChips, _emotion.selectTokens.textFieldBorderRadius, _emotion.selectTokens.textFieldBorderWidth, _emotion.selectTokens.textFieldLeftContentMargin, _emotion.selectTokens.textFieldRightContentMargin, _emotion.selectTokens.textFieldTextBeforeMargin, _emotion.selectTokens.textFieldTextAfterMargin, _emotion.selectTokens.textFieldFontFamily, _emotion.selectTokens.textFieldFontSize, _emotion.selectTokens.textFieldFontStyle, _emotion.selectTokens.textFieldFontWeight, _emotion.selectTokens.textFieldLetterSpacing, _emotion.selectTokens.textFieldLineHeight, _emotion.selectTokens.textFieldLabelOffset, _emotion.selectTokens.textFieldLabelFontFamily, _emotion.selectTokens.textFieldLabelFontSize, _emotion.selectTokens.textFieldLabelFontStyle, _emotion.selectTokens.textFieldLabelFontWeight, _emotion.selectTokens.textFieldLabelLetterSpacing, _emotion.selectTokens.textFieldLabelLineHeight, _emotion.selectTokens.textFieldLeftHelperOffset, _emotion.selectTokens.textFieldLeftHelperFontFamily, _emotion.selectTokens.textFieldLeftHelperFontSize, _emotion.selectTokens.textFieldLeftHelperFontStyle, _emotion.selectTokens.textFieldLeftHelperFontWeight, _emotion.selectTokens.textFieldLeftHelperLetterSpacing, _emotion.selectTokens.textFieldLeftHelperLineHeight, _emotion.selectTokens.textFieldLabelInnerPadding, _emotion.selectTokens.textFieldContentLabelInnerPadding, _emotion.selectTokens.textFieldIndicatorSizeInner, _emotion.selectTokens.textFieldIndicatorSizeOuter, _emotion.selectTokens.textFieldIndicatorLabelPlacementInner, _emotion.selectTokens.textFieldIndicatorLabelPlacementOuter, _emotion.selectTokens.textFieldIndicatorLabelPlacementInnerRight, _emotion.selectTokens.textFieldIndicatorLabelPlacementOuterRight, _emotion.selectTokens.textFieldClearIndicatorLabelPlacementInner, _emotion.selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, _emotion.selectTokens.textFieldClearIndicatorHintInnerRight, _emotion.selectTokens.textFieldChipGap, _emotion.selectTokens.textFieldChipBorderRadius, _emotion.selectTokens.textFieldChipWidth, _emotion.selectTokens.textFieldChipHeight, _emotion.selectTokens.textFieldChipPadding, _emotion.selectTokens.textFieldChipClearContentMarginLeft, _emotion.selectTokens.textFieldChipClearContentMarginRight, _emotion.selectTokens.textFieldChipCloseIconSize, _emotion.selectTokens.textFieldChipFontFamily, _emotion.selectTokens.textFieldChipFontSize, _emotion.selectTokens.textFieldChipFontStyle, _emotion.selectTokens.textFieldChipFontWeight, _emotion.selectTokens.textFieldChipLetterSpacing, _emotion.selectTokens.textFieldChipLineHeight, _emotion.selectTokens.buttonArrowMargin, _emotion.selectTokens.targetHeight, _emotion.selectTokens.buttonPadding, _emotion.selectTokens.padding, _emotion.selectTokens.borderRadius, _emotion.selectTokens.dropdownBorderWidth, _emotion.selectTokens.itemHeight, _emotion.selectTokens.itemPadding, _emotion.selectTokens.itemPaddingTight, _emotion.selectTokens.itemBorderRadius, _emotion.selectTokens.itemIconSize, _emotion.selectTokens.itemIconSizeTight, _emotion.selectTokens.itemIconMargin, _emotion.selectTokens.cellPadding, _emotion.selectTokens.cellPaddingLeftContent, _emotion.selectTokens.cellPaddingContent, _emotion.selectTokens.cellPaddingRightContent, _emotion.selectTokens.cellTextboxGap, _emotion.selectTokens.cellGap, _emotion.selectTokens.cellTitleFontFamily, _emotion.selectTokens.cellTitleFontSize, _emotion.selectTokens.cellTitleFontStyle, _emotion.selectTokens.cellTitleFontWeight, _emotion.selectTokens.cellTitleLetterSpacing, _emotion.selectTokens.cellTitleLineHeight, _emotion.selectTokens.fontFamily, _emotion.selectTokens.fontSize, _emotion.selectTokens.fontStyle, _emotion.selectTokens.fontWeight, _emotion.selectTokens.fontLetterSpacing, _emotion.selectTokens.fontLineHeight, _emotion.selectTokens.checkboxTriggerSize, _emotion.selectTokens.checkboxTriggerSizeTight, _emotion.selectTokens.checkboxTriggerBorderRadius, _emotion.selectTokens.checkboxTriggerBorderRadiusTight, _emotion.selectTokens.checkboxTriggerBorderWidth, _emotion.selectTokens.indicatorSize, _emotion.selectTokens.dividerMarginTop, _emotion.selectTokens.dividerMarginRight, _emotion.selectTokens.dividerMarginBottom, _emotion.selectTokens.dividerMarginLeft, _emotion.selectTokens.dividerMarginTopTight, _emotion.selectTokens.dividerMarginBottomTight)
|
|
303
301
|
},
|
|
304
302
|
labelPlacement: {
|
|
305
303
|
inner: (0, _emotion.css)(_templateObject3(), _emotion.selectTokens.textFieldPlaceholderColor, _emotion.selectTokens.textFieldLabelInnerFontFamily, _emotion.selectTokens.textFieldLabelInnerFontSize, _emotion.selectTokens.textFieldLabelInnerFontStyle, _emotion.selectTokens.textFieldLabelInnerFontWeight, _emotion.selectTokens.textFieldLabelInnerLetterSpacing, _emotion.selectTokens.textFieldLabelInnerLineHeight),
|
|
@@ -163,9 +163,7 @@ function _templateObject2() {
|
|
|
163
163
|
": 0.5rem;\n ",
|
|
164
164
|
": 1.5rem;\n ",
|
|
165
165
|
": 1rem;\n ",
|
|
166
|
-
": 0 0.5rem 0 0;\n ",
|
|
167
|
-
": 0.375rem;\n ",
|
|
168
|
-
": 1.875rem;\n\n ",
|
|
166
|
+
": 0 0.5rem 0 0;\n\n ",
|
|
169
167
|
": 0rem;\n ",
|
|
170
168
|
": 0rem;\n ",
|
|
171
169
|
": 0rem;\n ",
|
|
@@ -289,7 +287,7 @@ export var config = {
|
|
|
289
287
|
negative: css(_templateObject1(), selectTokens.textFieldColor, selectTokens.textFieldPlaceholderColor, selectTokens.textFieldBackgroundColor, selectTokens.textFieldBackgroundColorFocus, selectTokens.textFieldLabelColor, selectTokens.textFieldLeftHelperColor, selectTokens.textFieldContentSlotColor, selectTokens.textFieldBorderColor, selectTokens.textFieldBorderColorHover, selectTokens.textFieldBorderColorFocus, selectTokens.textFieldIndicatorColor, selectTokens.textFieldOptionalColor, selectTokens.buttonColor, selectTokens.buttonColorHover, selectTokens.buttonColorActive, selectTokens.buttonArrowColor, selectTokens.buttonArrowColorHover, selectTokens.buttonArrowColorActive, selectTokens.buttonBackgroundColor, selectTokens.buttonBackgroundColorHover, selectTokens.buttonBackgroundColorActive, selectTokens.disclosureIconColor, selectTokens.disclosureIconColorHover, selectTokens.itemBackgroundHover, selectTokens.itemDisabledOpacity, selectTokens.itemDisabledColor, selectTokens.dropdownBorderColor, selectTokens.checkboxIconColor, selectTokens.dividerColor, selectTokens.itemIconColor, selectTokens.checkboxFillColor, selectTokens.checkboxIconColor, selectTokens.checkboxTriggerBorderCheckedColor, selectTokens.checkboxTriggerBorderColor)
|
|
290
288
|
},
|
|
291
289
|
size: {
|
|
292
|
-
s: css(_templateObject2(), selectTokens.textFieldHeight, selectTokens.textFieldPadding, selectTokens.textFieldPaddingWithChips, selectTokens.textFieldBorderRadius, selectTokens.textFieldBorderWidth, selectTokens.textFieldLeftContentMargin, selectTokens.textFieldRightContentMargin, selectTokens.textFieldTextBeforeMargin, selectTokens.textFieldTextAfterMargin, selectTokens.textFieldFontFamily, selectTokens.textFieldFontSize, selectTokens.textFieldFontStyle, selectTokens.textFieldFontWeight, selectTokens.textFieldLetterSpacing, selectTokens.textFieldLineHeight, selectTokens.textFieldLabelOffset, selectTokens.textFieldLabelFontFamily, selectTokens.textFieldLabelFontSize, selectTokens.textFieldLabelFontStyle, selectTokens.textFieldLabelFontWeight, selectTokens.textFieldLabelLetterSpacing, selectTokens.textFieldLabelLineHeight, selectTokens.textFieldLeftHelperOffset, selectTokens.textFieldLeftHelperFontFamily, selectTokens.textFieldLeftHelperFontSize, selectTokens.textFieldLeftHelperFontStyle, selectTokens.textFieldLeftHelperFontWeight, selectTokens.textFieldLeftHelperLetterSpacing, selectTokens.textFieldLeftHelperLineHeight, selectTokens.textFieldLabelInnerPadding, selectTokens.textFieldContentLabelInnerPadding, selectTokens.textFieldIndicatorSizeInner, selectTokens.textFieldIndicatorSizeOuter, selectTokens.textFieldIndicatorLabelPlacementInner, selectTokens.textFieldIndicatorLabelPlacementOuter, selectTokens.textFieldIndicatorLabelPlacementInnerRight, selectTokens.textFieldIndicatorLabelPlacementOuterRight, selectTokens.textFieldClearIndicatorLabelPlacementInner, selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, selectTokens.textFieldClearIndicatorHintInnerRight, selectTokens.textFieldChipGap, selectTokens.textFieldChipBorderRadius, selectTokens.textFieldChipWidth, selectTokens.textFieldChipHeight, selectTokens.textFieldChipPadding, selectTokens.textFieldChipClearContentMarginLeft, selectTokens.textFieldChipClearContentMarginRight, selectTokens.textFieldChipCloseIconSize, selectTokens.textFieldChipFontFamily, selectTokens.textFieldChipFontSize, selectTokens.textFieldChipFontStyle, selectTokens.textFieldChipFontWeight, selectTokens.textFieldChipLetterSpacing, selectTokens.textFieldChipLineHeight, selectTokens.buttonArrowMargin, selectTokens.targetHeight, selectTokens.buttonPadding, selectTokens.padding, selectTokens.borderRadius, selectTokens.dropdownBorderWidth, selectTokens.itemHeight, selectTokens.itemPadding, selectTokens.itemPaddingTight, selectTokens.itemBorderRadius, selectTokens.itemIconSize, selectTokens.itemIconSizeTight, selectTokens.itemIconMargin, selectTokens.
|
|
290
|
+
s: css(_templateObject2(), selectTokens.textFieldHeight, selectTokens.textFieldPadding, selectTokens.textFieldPaddingWithChips, selectTokens.textFieldBorderRadius, selectTokens.textFieldBorderWidth, selectTokens.textFieldLeftContentMargin, selectTokens.textFieldRightContentMargin, selectTokens.textFieldTextBeforeMargin, selectTokens.textFieldTextAfterMargin, selectTokens.textFieldFontFamily, selectTokens.textFieldFontSize, selectTokens.textFieldFontStyle, selectTokens.textFieldFontWeight, selectTokens.textFieldLetterSpacing, selectTokens.textFieldLineHeight, selectTokens.textFieldLabelOffset, selectTokens.textFieldLabelFontFamily, selectTokens.textFieldLabelFontSize, selectTokens.textFieldLabelFontStyle, selectTokens.textFieldLabelFontWeight, selectTokens.textFieldLabelLetterSpacing, selectTokens.textFieldLabelLineHeight, selectTokens.textFieldLeftHelperOffset, selectTokens.textFieldLeftHelperFontFamily, selectTokens.textFieldLeftHelperFontSize, selectTokens.textFieldLeftHelperFontStyle, selectTokens.textFieldLeftHelperFontWeight, selectTokens.textFieldLeftHelperLetterSpacing, selectTokens.textFieldLeftHelperLineHeight, selectTokens.textFieldLabelInnerPadding, selectTokens.textFieldContentLabelInnerPadding, selectTokens.textFieldIndicatorSizeInner, selectTokens.textFieldIndicatorSizeOuter, selectTokens.textFieldIndicatorLabelPlacementInner, selectTokens.textFieldIndicatorLabelPlacementOuter, selectTokens.textFieldIndicatorLabelPlacementInnerRight, selectTokens.textFieldIndicatorLabelPlacementOuterRight, selectTokens.textFieldClearIndicatorLabelPlacementInner, selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, selectTokens.textFieldClearIndicatorHintInnerRight, selectTokens.textFieldChipGap, selectTokens.textFieldChipBorderRadius, selectTokens.textFieldChipWidth, selectTokens.textFieldChipHeight, selectTokens.textFieldChipPadding, selectTokens.textFieldChipClearContentMarginLeft, selectTokens.textFieldChipClearContentMarginRight, selectTokens.textFieldChipCloseIconSize, selectTokens.textFieldChipFontFamily, selectTokens.textFieldChipFontSize, selectTokens.textFieldChipFontStyle, selectTokens.textFieldChipFontWeight, selectTokens.textFieldChipLetterSpacing, selectTokens.textFieldChipLineHeight, selectTokens.buttonArrowMargin, selectTokens.targetHeight, selectTokens.buttonPadding, selectTokens.padding, selectTokens.borderRadius, selectTokens.dropdownBorderWidth, selectTokens.itemHeight, selectTokens.itemPadding, selectTokens.itemPaddingTight, selectTokens.itemBorderRadius, selectTokens.itemIconSize, selectTokens.itemIconSizeTight, selectTokens.itemIconMargin, selectTokens.cellPadding, selectTokens.cellPaddingLeftContent, selectTokens.cellPaddingContent, selectTokens.cellPaddingRightContent, selectTokens.cellTextboxGap, selectTokens.cellGap, selectTokens.cellTitleFontFamily, selectTokens.cellTitleFontSize, selectTokens.cellTitleFontStyle, selectTokens.cellTitleFontWeight, selectTokens.cellTitleLetterSpacing, selectTokens.cellTitleLineHeight, selectTokens.fontFamily, selectTokens.fontSize, selectTokens.fontStyle, selectTokens.fontWeight, selectTokens.fontLetterSpacing, selectTokens.fontLineHeight, selectTokens.checkboxTriggerSize, selectTokens.checkboxTriggerSizeTight, selectTokens.checkboxTriggerBorderRadius, selectTokens.checkboxTriggerBorderRadiusTight, selectTokens.checkboxTriggerBorderWidth, selectTokens.indicatorSize, selectTokens.dividerMarginTop, selectTokens.dividerMarginRight, selectTokens.dividerMarginBottom, selectTokens.dividerMarginLeft, selectTokens.dividerMarginTopTight, selectTokens.dividerMarginBottomTight)
|
|
293
291
|
},
|
|
294
292
|
labelPlacement: {
|
|
295
293
|
inner: css(_templateObject3(), selectTokens.textFieldPlaceholderColor, selectTokens.textFieldLabelInnerFontFamily, selectTokens.textFieldLabelInnerFontSize, selectTokens.textFieldLabelInnerFontStyle, selectTokens.textFieldLabelInnerFontWeight, selectTokens.textFieldLabelInnerLetterSpacing, selectTokens.textFieldLabelInnerLineHeight),
|
|
@@ -163,9 +163,7 @@ function _templateObject2() {
|
|
|
163
163
|
": 0.5rem;\n ",
|
|
164
164
|
": 1.5rem;\n ",
|
|
165
165
|
": 1rem;\n ",
|
|
166
|
-
": 0 0.5rem 0 0;\n ",
|
|
167
|
-
": 0.375rem;\n ",
|
|
168
|
-
": 1.875rem;\n\n ",
|
|
166
|
+
": 0 0.5rem 0 0;\n\n ",
|
|
169
167
|
": 0rem;\n ",
|
|
170
168
|
": 0rem;\n ",
|
|
171
169
|
": 0rem;\n ",
|
|
@@ -289,7 +287,7 @@ export var config = {
|
|
|
289
287
|
negative: css(_templateObject1(), selectTokens.textFieldColor, selectTokens.textFieldPlaceholderColor, selectTokens.textFieldBackgroundColor, selectTokens.textFieldBackgroundColorFocus, selectTokens.textFieldLabelColor, selectTokens.textFieldLeftHelperColor, selectTokens.textFieldContentSlotColor, selectTokens.textFieldBorderColor, selectTokens.textFieldBorderColorHover, selectTokens.textFieldBorderColorFocus, selectTokens.textFieldIndicatorColor, selectTokens.textFieldOptionalColor, selectTokens.buttonColor, selectTokens.buttonColorHover, selectTokens.buttonColorActive, selectTokens.buttonArrowColor, selectTokens.buttonArrowColorHover, selectTokens.buttonArrowColorActive, selectTokens.buttonBackgroundColor, selectTokens.buttonBackgroundColorHover, selectTokens.buttonBackgroundColorActive, selectTokens.disclosureIconColor, selectTokens.disclosureIconColorHover, selectTokens.itemBackgroundHover, selectTokens.itemDisabledOpacity, selectTokens.itemDisabledColor, selectTokens.dropdownBorderColor, selectTokens.checkboxIconColor, selectTokens.dividerColor, selectTokens.itemIconColor, selectTokens.checkboxFillColor, selectTokens.checkboxIconColor, selectTokens.checkboxTriggerBorderCheckedColor, selectTokens.checkboxTriggerBorderColor)
|
|
290
288
|
},
|
|
291
289
|
size: {
|
|
292
|
-
s: css(_templateObject2(), selectTokens.textFieldHeight, selectTokens.textFieldPadding, selectTokens.textFieldPaddingWithChips, selectTokens.textFieldBorderRadius, selectTokens.textFieldBorderWidth, selectTokens.textFieldLeftContentMargin, selectTokens.textFieldRightContentMargin, selectTokens.textFieldTextBeforeMargin, selectTokens.textFieldTextAfterMargin, selectTokens.textFieldFontFamily, selectTokens.textFieldFontSize, selectTokens.textFieldFontStyle, selectTokens.textFieldFontWeight, selectTokens.textFieldLetterSpacing, selectTokens.textFieldLineHeight, selectTokens.textFieldLabelOffset, selectTokens.textFieldLabelFontFamily, selectTokens.textFieldLabelFontSize, selectTokens.textFieldLabelFontStyle, selectTokens.textFieldLabelFontWeight, selectTokens.textFieldLabelLetterSpacing, selectTokens.textFieldLabelLineHeight, selectTokens.textFieldLeftHelperOffset, selectTokens.textFieldLeftHelperFontFamily, selectTokens.textFieldLeftHelperFontSize, selectTokens.textFieldLeftHelperFontStyle, selectTokens.textFieldLeftHelperFontWeight, selectTokens.textFieldLeftHelperLetterSpacing, selectTokens.textFieldLeftHelperLineHeight, selectTokens.textFieldLabelInnerPadding, selectTokens.textFieldContentLabelInnerPadding, selectTokens.textFieldIndicatorSizeInner, selectTokens.textFieldIndicatorSizeOuter, selectTokens.textFieldIndicatorLabelPlacementInner, selectTokens.textFieldIndicatorLabelPlacementOuter, selectTokens.textFieldIndicatorLabelPlacementInnerRight, selectTokens.textFieldIndicatorLabelPlacementOuterRight, selectTokens.textFieldClearIndicatorLabelPlacementInner, selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, selectTokens.textFieldClearIndicatorHintInnerRight, selectTokens.textFieldChipGap, selectTokens.textFieldChipBorderRadius, selectTokens.textFieldChipWidth, selectTokens.textFieldChipHeight, selectTokens.textFieldChipPadding, selectTokens.textFieldChipClearContentMarginLeft, selectTokens.textFieldChipClearContentMarginRight, selectTokens.textFieldChipCloseIconSize, selectTokens.textFieldChipFontFamily, selectTokens.textFieldChipFontSize, selectTokens.textFieldChipFontStyle, selectTokens.textFieldChipFontWeight, selectTokens.textFieldChipLetterSpacing, selectTokens.textFieldChipLineHeight, selectTokens.buttonArrowMargin, selectTokens.targetHeight, selectTokens.buttonPadding, selectTokens.padding, selectTokens.borderRadius, selectTokens.dropdownBorderWidth, selectTokens.itemHeight, selectTokens.itemPadding, selectTokens.itemPaddingTight, selectTokens.itemBorderRadius, selectTokens.itemIconSize, selectTokens.itemIconSizeTight, selectTokens.itemIconMargin, selectTokens.
|
|
290
|
+
s: css(_templateObject2(), selectTokens.textFieldHeight, selectTokens.textFieldPadding, selectTokens.textFieldPaddingWithChips, selectTokens.textFieldBorderRadius, selectTokens.textFieldBorderWidth, selectTokens.textFieldLeftContentMargin, selectTokens.textFieldRightContentMargin, selectTokens.textFieldTextBeforeMargin, selectTokens.textFieldTextAfterMargin, selectTokens.textFieldFontFamily, selectTokens.textFieldFontSize, selectTokens.textFieldFontStyle, selectTokens.textFieldFontWeight, selectTokens.textFieldLetterSpacing, selectTokens.textFieldLineHeight, selectTokens.textFieldLabelOffset, selectTokens.textFieldLabelFontFamily, selectTokens.textFieldLabelFontSize, selectTokens.textFieldLabelFontStyle, selectTokens.textFieldLabelFontWeight, selectTokens.textFieldLabelLetterSpacing, selectTokens.textFieldLabelLineHeight, selectTokens.textFieldLeftHelperOffset, selectTokens.textFieldLeftHelperFontFamily, selectTokens.textFieldLeftHelperFontSize, selectTokens.textFieldLeftHelperFontStyle, selectTokens.textFieldLeftHelperFontWeight, selectTokens.textFieldLeftHelperLetterSpacing, selectTokens.textFieldLeftHelperLineHeight, selectTokens.textFieldLabelInnerPadding, selectTokens.textFieldContentLabelInnerPadding, selectTokens.textFieldIndicatorSizeInner, selectTokens.textFieldIndicatorSizeOuter, selectTokens.textFieldIndicatorLabelPlacementInner, selectTokens.textFieldIndicatorLabelPlacementOuter, selectTokens.textFieldIndicatorLabelPlacementInnerRight, selectTokens.textFieldIndicatorLabelPlacementOuterRight, selectTokens.textFieldClearIndicatorLabelPlacementInner, selectTokens.textFieldClearIndicatorLabelPlacementInnerRight, selectTokens.textFieldClearIndicatorHintInnerRight, selectTokens.textFieldChipGap, selectTokens.textFieldChipBorderRadius, selectTokens.textFieldChipWidth, selectTokens.textFieldChipHeight, selectTokens.textFieldChipPadding, selectTokens.textFieldChipClearContentMarginLeft, selectTokens.textFieldChipClearContentMarginRight, selectTokens.textFieldChipCloseIconSize, selectTokens.textFieldChipFontFamily, selectTokens.textFieldChipFontSize, selectTokens.textFieldChipFontStyle, selectTokens.textFieldChipFontWeight, selectTokens.textFieldChipLetterSpacing, selectTokens.textFieldChipLineHeight, selectTokens.buttonArrowMargin, selectTokens.targetHeight, selectTokens.buttonPadding, selectTokens.padding, selectTokens.borderRadius, selectTokens.dropdownBorderWidth, selectTokens.itemHeight, selectTokens.itemPadding, selectTokens.itemPaddingTight, selectTokens.itemBorderRadius, selectTokens.itemIconSize, selectTokens.itemIconSizeTight, selectTokens.itemIconMargin, selectTokens.cellPadding, selectTokens.cellPaddingLeftContent, selectTokens.cellPaddingContent, selectTokens.cellPaddingRightContent, selectTokens.cellTextboxGap, selectTokens.cellGap, selectTokens.cellTitleFontFamily, selectTokens.cellTitleFontSize, selectTokens.cellTitleFontStyle, selectTokens.cellTitleFontWeight, selectTokens.cellTitleLetterSpacing, selectTokens.cellTitleLineHeight, selectTokens.fontFamily, selectTokens.fontSize, selectTokens.fontStyle, selectTokens.fontWeight, selectTokens.fontLetterSpacing, selectTokens.fontLineHeight, selectTokens.checkboxTriggerSize, selectTokens.checkboxTriggerSizeTight, selectTokens.checkboxTriggerBorderRadius, selectTokens.checkboxTriggerBorderRadiusTight, selectTokens.checkboxTriggerBorderWidth, selectTokens.indicatorSize, selectTokens.dividerMarginTop, selectTokens.dividerMarginRight, selectTokens.dividerMarginBottom, selectTokens.dividerMarginLeft, selectTokens.dividerMarginTopTight, selectTokens.dividerMarginBottomTight)
|
|
293
291
|
},
|
|
294
292
|
labelPlacement: {
|
|
295
293
|
inner: css(_templateObject3(), selectTokens.textFieldPlaceholderColor, selectTokens.textFieldLabelInnerFontFamily, selectTokens.textFieldLabelInnerFontSize, selectTokens.textFieldLabelInnerFontStyle, selectTokens.textFieldLabelInnerFontWeight, selectTokens.textFieldLabelInnerLetterSpacing, selectTokens.textFieldLabelInnerLineHeight),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salutejs/sdds-cs",
|
|
3
|
-
"version": "0.331.0-canary.
|
|
3
|
+
"version": "0.331.0-canary.2288.18653805742.0",
|
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS CS web applications",
|
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"directory": "packages/sdds-cs"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@salutejs/plasma-new-hope": "0.339.0-canary.
|
|
34
|
+
"@salutejs/plasma-new-hope": "0.339.0-canary.2288.18653805742.0",
|
|
35
35
|
"@salutejs/sdds-themes": "0.47.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -124,5 +124,5 @@
|
|
|
124
124
|
"Anton Vinogradov"
|
|
125
125
|
],
|
|
126
126
|
"sideEffects": false,
|
|
127
|
-
"gitHead": "
|
|
127
|
+
"gitHead": "c3274fc101f635da522c4e9b3df191d55c920227"
|
|
128
128
|
}
|