nntc-ui 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/components/common/Button/Button.d.ts +3 -2
  2. package/components/common/Button/Button.d.ts.map +1 -1
  3. package/components/common/Checklist/Checklist.d.ts.map +1 -1
  4. package/components/common/ColorPicker/ColorPicker.d.ts +2 -1
  5. package/components/common/ColorPicker/ColorPicker.d.ts.map +1 -1
  6. package/components/common/DateTime/DateTime.d.ts +2 -1
  7. package/components/common/DateTime/DateTime.d.ts.map +1 -1
  8. package/components/common/FieldShell/FieldErrorIcon.d.ts +10 -0
  9. package/components/common/FieldShell/FieldErrorIcon.d.ts.map +1 -0
  10. package/components/common/FieldShell/FieldShell.d.ts +10 -2
  11. package/components/common/FieldShell/FieldShell.d.ts.map +1 -1
  12. package/components/common/FieldShell/index.d.ts +2 -1
  13. package/components/common/FieldShell/index.d.ts.map +1 -1
  14. package/components/common/Input/Input.d.ts +3 -2
  15. package/components/common/Input/Input.d.ts.map +1 -1
  16. package/components/common/MultiSelect/MultiSelect.d.ts +2 -1
  17. package/components/common/MultiSelect/MultiSelect.d.ts.map +1 -1
  18. package/components/common/MultiSelect/ui/SelectPopover/SelectPopover.d.ts +2 -2
  19. package/components/common/MultiSelect/ui/SelectPopover/SelectPopover.d.ts.map +1 -1
  20. package/components/common/SearchInput/SearchInput.d.ts +4 -3
  21. package/components/common/SearchInput/SearchInput.d.ts.map +1 -1
  22. package/components/common/Select/Select.d.ts +2 -1
  23. package/components/common/Select/Select.d.ts.map +1 -1
  24. package/components/common/Select/ui/SelectPopover/SelectPopover.d.ts +2 -2
  25. package/components/common/Select/ui/SelectPopover/SelectPopover.d.ts.map +1 -1
  26. package/components/navigation/Menu/Menu.d.ts +2 -2
  27. package/components/navigation/Menu/Menu.d.ts.map +1 -1
  28. package/components/navigation/Menu/models/Item.d.ts +1 -1
  29. package/components/navigation/Menu/models/Item.d.ts.map +1 -1
  30. package/components/view/Card/Card.d.ts +2 -0
  31. package/components/view/Card/Card.d.ts.map +1 -1
  32. package/components/view/InputChip/InputChip.d.ts +2 -2
  33. package/components/view/InputChip/InputChip.d.ts.map +1 -1
  34. package/components/view/VirtualTable/VirtualTable.d.ts +1 -0
  35. package/components/view/VirtualTable/VirtualTable.d.ts.map +1 -1
  36. package/icons/ErrorOutlineIcon.d.ts +4 -0
  37. package/icons/ErrorOutlineIcon.d.ts.map +1 -0
  38. package/icons/index.d.ts +1 -0
  39. package/icons/index.d.ts.map +1 -1
  40. package/index.css +569 -191
  41. package/index.css.map +1 -1
  42. package/index.js +1 -1
  43. package/index.js.map +1 -1
  44. package/index.mjs +1 -1
  45. package/index.mjs.map +1 -1
  46. package/package.json +1 -1
package/index.css CHANGED
@@ -13,7 +13,6 @@
13
13
  .button-module__state-layer__t1MJf {
14
14
  display: inline-flex;
15
15
  flex-direction: row;
16
- gap: 8px;
17
16
  align-items: center;
18
17
  justify-content: center;
19
18
  width: 100%;
@@ -21,16 +20,16 @@
21
20
  }
22
21
 
23
22
  .button-module__root__gX6OQ:hover > .button-module__state-layer__t1MJf {
24
- background-color: var(--theme-overlay-8);
23
+ background-color: var(--theme-button-state-hover);
25
24
  }
26
25
 
27
- .button-module__root__gX6OQ:focus > .button-module__state-layer__t1MJf {
28
- background-color: var(--theme-overlay-12);
26
+ .button-module__root__gX6OQ:focus-visible > .button-module__state-layer__t1MJf,
27
+ .button-module__root__gX6OQ.button-module__active__hSEWs > .button-module__state-layer__t1MJf {
28
+ background-color: var(--theme-button-state-focus);
29
29
  }
30
30
 
31
- .button-module__root__gX6OQ:active > .button-module__state-layer__t1MJf,
32
- .button-module__root__gX6OQ.button-module__active__hSEWs > .button-module__state-layer__t1MJf {
33
- background-color: var(--theme-overlay-12);
31
+ .button-module__root__gX6OQ:active > .button-module__state-layer__t1MJf {
32
+ background-color: var(--theme-button-state-pressed);
34
33
  }
35
34
 
36
35
  .button-module__filled__D7eAr {
@@ -38,14 +37,48 @@
38
37
  background-color: var(--theme-focus);
39
38
  }
40
39
 
40
+ .button-module__filled__D7eAr:hover > .button-module__state-layer__t1MJf {
41
+ background-color: var(--theme-button-filled-hover-layer);
42
+ }
43
+
44
+ .button-module__filled__D7eAr:focus-visible > .button-module__state-layer__t1MJf,
45
+ .button-module__filled__D7eAr.button-module__active__hSEWs > .button-module__state-layer__t1MJf {
46
+ background-color: var(--theme-button-filled-focus-layer);
47
+ }
48
+
49
+ .button-module__filled__D7eAr:active > .button-module__state-layer__t1MJf {
50
+ background-color: var(--theme-button-filled-pressed-layer);
51
+ }
52
+
53
+ .button-module__filled__D7eAr:focus-visible,
54
+ .button-module__filled__D7eAr.button-module__active__hSEWs {
55
+ background-color: var(--theme-button-filled-focus);
56
+ }
57
+
58
+ .button-module__filled__D7eAr:active {
59
+ background-color: var(--theme-button-filled-pressed);
60
+ }
61
+
62
+ .button-module__filled__D7eAr:hover {
63
+ box-shadow:
64
+ 0 1px 2px 0 rgba(0, 0, 0, 0.3),
65
+ 0 1px 3px 1px rgba(0, 0, 0, 0.15);
66
+ }
67
+
68
+ .button-module__filled__D7eAr:focus-visible:hover,
69
+ .button-module__filled__D7eAr.button-module__active__hSEWs:hover {
70
+ background-color: var(--theme-button-filled-focus);
71
+ }
72
+
41
73
  .button-module__outlined__c_PHO {
42
74
  color: var(--theme-focus);
43
- outline: 1px solid var(--theme-grey-500);
44
75
  background-color: transparent;
76
+ border: 1px solid var(--theme-button-outlined-border);
45
77
  }
46
78
 
47
- .button-module__outlined__c_PHO:focus {
48
- outline-color: var(--theme-focus);
79
+ .button-module__outlined__c_PHO:focus-visible,
80
+ .button-module__outlined__c_PHO.button-module__active__hSEWs {
81
+ border-color: var(--theme-focus);
49
82
  }
50
83
 
51
84
  .button-module__text__rG7nD {
@@ -57,119 +90,213 @@
57
90
  color: var(--theme-focus);
58
91
  background-color: var(--theme-button-elevated);
59
92
  box-shadow:
60
- 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
61
- 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
93
+ 0 1px 2px 0 rgba(0, 0, 0, 0.3),
94
+ 0 1px 3px 1px rgba(0, 0, 0, 0.15);
62
95
  }
63
96
 
64
97
  .button-module__elevated__nAlrD:hover {
65
98
  box-shadow:
66
- 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
67
- 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
99
+ 0 1px 2px 0 rgba(0, 0, 0, 0.3),
100
+ 0 2px 6px 2px rgba(0, 0, 0, 0.15);
68
101
  }
69
102
 
70
- .button-module__tonal__u6w_G {
71
- color: var(--theme-text-button-primary);
72
- background-color: var(--theme-button-tonal);
103
+ .button-module__small__HHNmk.button-module__elevated__nAlrD,
104
+ .button-module__medium__v66y0.button-module__elevated__nAlrD,
105
+ .button-module__large__gt0K2.button-module__elevated__nAlrD {
106
+ background-color: var(--theme-button-elevated-subtle);
73
107
  }
74
108
 
75
- .button-module__tonal__u6w_G:hover {
76
- box-shadow:
77
- 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
78
- 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
109
+ .button-module__extraLarge__ycvek.button-module__elevated__nAlrD {
110
+ background-color: var(--theme-button-elevated);
111
+ background-image: linear-gradient(var(--theme-overlay-8), var(--theme-overlay-8));
79
112
  }
80
113
 
81
- .button-module__link__F_tgW {
82
- color: var(--theme-focus);
83
- background-color: transparent;
114
+ .button-module__tonal__u6w_G {
115
+ color: var(--theme-button-tonal-text);
116
+ background-color: var(--theme-button-tonal-subtle);
84
117
  }
85
118
 
86
- .button-module__link__F_tgW:hover > .button-module__state-layer__t1MJf,
87
- .button-module__link__F_tgW:focus > .button-module__state-layer__t1MJf,
88
- .button-module__link__F_tgW:active > .button-module__state-layer__t1MJf,
89
- .button-module__link__F_tgW.button-module__active__hSEWs > .button-module__state-layer__t1MJf {
90
- background-color: transparent;
119
+ .button-module__extraLarge__ycvek.button-module__tonal__u6w_G {
120
+ background-color: var(--theme-button-tonal);
91
121
  }
92
122
 
93
123
  .button-module__filled__D7eAr > .button-module__state-layer__t1MJf > svg {
94
124
  fill: var(--theme-text-button-invert);
95
125
  }
96
126
 
97
- .button-module__outlined__c_PHO > .button-module__state-layer__t1MJf > svg {
98
- fill: var(--theme-focus);
99
- }
100
-
101
- .button-module__text__rG7nD > .button-module__state-layer__t1MJf > svg {
102
- fill: var(--theme-focus);
103
- }
104
-
127
+ .button-module__outlined__c_PHO > .button-module__state-layer__t1MJf > svg,
128
+ .button-module__text__rG7nD > .button-module__state-layer__t1MJf > svg,
105
129
  .button-module__elevated__nAlrD > .button-module__state-layer__t1MJf > svg {
106
130
  fill: var(--theme-focus);
107
131
  }
108
132
 
109
133
  .button-module__tonal__u6w_G > .button-module__state-layer__t1MJf > svg {
110
- fill: var(--theme-text-button-primary);
134
+ fill: var(--theme-button-tonal-text);
111
135
  }
112
136
 
113
- .button-module__link__F_tgW > .button-module__state-layer__t1MJf > svg {
114
- fill: var(--theme-focus);
137
+ .button-module__small__HHNmk,
138
+ .button-module__small__HHNmk > .button-module__state-layer__t1MJf {
139
+ height: 24px;
115
140
  }
116
141
 
117
142
  .button-module__medium__v66y0,
118
143
  .button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
119
- height: 40px;
144
+ height: 28px;
120
145
  }
121
146
 
122
- .button-module__small__HHNmk,
123
- .button-module__small__HHNmk > .button-module__state-layer__t1MJf {
147
+ .button-module__large__gt0K2,
148
+ .button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
124
149
  height: 32px;
125
150
  }
126
151
 
127
- .button-module__with-icon__C4Cw6.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
128
- padding: 8px 16px;
152
+ .button-module__extraLarge__ycvek,
153
+ .button-module__extraLarge__ycvek > .button-module__state-layer__t1MJf {
154
+ height: 40px;
129
155
  }
130
156
 
131
- .button-module__with-icon__C4Cw6.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
132
- padding: 4px 16px;
157
+ .button-module__small__HHNmk .button-module__state-layer__t1MJf > svg {
158
+ width: 20px;
159
+ height: 20px;
133
160
  }
134
161
 
135
- .button-module__without-icon__GOGFF.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
136
- padding: 8px 24px;
162
+ .button-module__medium__v66y0 .button-module__state-layer__t1MJf > svg {
163
+ width: 20px;
164
+ height: 20px;
165
+ }
166
+
167
+ .button-module__large__gt0K2 .button-module__state-layer__t1MJf > svg,
168
+ .button-module__extraLarge__ycvek .button-module__state-layer__t1MJf > svg {
169
+ width: 24px;
170
+ height: 24px;
137
171
  }
138
172
 
139
173
  .button-module__without-icon__GOGFF.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
140
- padding: 4px 24px;
174
+ padding: 2px 12px;
175
+ }
176
+
177
+ .button-module__without-icon__GOGFF.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
178
+ padding: 4px 16px;
141
179
  }
142
180
 
143
- .button-module__text__rG7nD.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
144
- padding: 8px 12px;
181
+ .button-module__without-icon__GOGFF.button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
182
+ padding: 6px 24px;
145
183
  }
146
184
 
147
- .button-module__text__rG7nD.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
148
- padding: 6px 12px;
185
+ .button-module__without-icon__GOGFF.button-module__extraLarge__ycvek > .button-module__state-layer__t1MJf {
186
+ padding: 10px 24px;
187
+ }
188
+
189
+ .button-module__with-icon__C4Cw6.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
190
+ gap: 4px;
191
+ padding: 2px 12px 2px 8px;
192
+ }
193
+
194
+ .button-module__with-icon__C4Cw6.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
195
+ gap: 4px;
196
+ padding: 4px 16px 4px 12px;
197
+ }
198
+
199
+ .button-module__with-icon__C4Cw6.button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
200
+ gap: 8px;
201
+ padding: 4px 20px 4px 8px;
202
+ }
203
+
204
+ .button-module__with-icon__C4Cw6.button-module__extraLarge__ycvek > .button-module__state-layer__t1MJf {
205
+ gap: 8px;
206
+ padding: 8px 20px 8px 8px;
207
+ }
208
+
209
+ .button-module__only-icon__zOzfl.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
210
+ padding: 2px;
149
211
  }
150
212
 
151
213
  .button-module__only-icon__zOzfl.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
214
+ padding: 4px;
215
+ }
216
+
217
+ .button-module__only-icon__zOzfl.button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
218
+ padding: 4px;
219
+ }
220
+
221
+ .button-module__only-icon__zOzfl.button-module__extraLarge__ycvek > .button-module__state-layer__t1MJf {
152
222
  padding: 8px;
153
223
  }
154
224
 
155
- .button-module__only-icon__zOzfl.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
225
+ .button-module__text__rG7nD.button-module__without-icon__GOGFF.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
226
+ padding: 2px 12px;
227
+ }
228
+
229
+ .button-module__text__rG7nD.button-module__without-icon__GOGFF.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
230
+ padding: 4px 12px;
231
+ }
232
+
233
+ .button-module__text__rG7nD.button-module__without-icon__GOGFF.button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
234
+ padding: 6px 24px;
235
+ }
236
+
237
+ .button-module__text__rG7nD.button-module__without-icon__GOGFF.button-module__extraLarge__ycvek > .button-module__state-layer__t1MJf {
238
+ padding: 10px 24px;
239
+ }
240
+
241
+ .button-module__text__rG7nD.button-module__with-icon__C4Cw6.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
242
+ gap: 4px;
243
+ padding: 2px 12px 2px 8px;
244
+ }
245
+
246
+ .button-module__text__rG7nD.button-module__with-icon__C4Cw6.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
247
+ gap: 4px;
248
+ padding: 4px 12px 4px 8px;
249
+ }
250
+
251
+ .button-module__text__rG7nD.button-module__with-icon__C4Cw6.button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
252
+ gap: 8px;
253
+ padding: 6px 24px 6px 8px;
254
+ }
255
+
256
+ .button-module__text__rG7nD.button-module__with-icon__C4Cw6.button-module__extraLarge__ycvek > .button-module__state-layer__t1MJf {
257
+ gap: 8px;
258
+ padding: 10px 24px 10px 8px;
259
+ }
260
+
261
+ .button-module__text__rG7nD.button-module__only-icon__zOzfl.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
262
+ padding: 2px;
263
+ }
264
+
265
+ .button-module__text__rG7nD.button-module__only-icon__zOzfl.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
156
266
  padding: 4px;
157
267
  }
158
268
 
159
- .button-module__link__F_tgW.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
160
- padding: 0;
269
+ .button-module__text__rG7nD.button-module__only-icon__zOzfl.button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
270
+ padding: 4px;
271
+ }
272
+
273
+ .button-module__text__rG7nD.button-module__only-icon__zOzfl.button-module__extraLarge__ycvek > .button-module__state-layer__t1MJf {
274
+ padding: 8px;
275
+ }
276
+
277
+ .button-module__compact__nfUBM,
278
+ .button-module__compact__nfUBM > .button-module__state-layer__t1MJf {
279
+ height: auto;
161
280
  }
162
281
 
163
- .button-module__link__F_tgW.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
282
+ .button-module__compact__nfUBM > .button-module__state-layer__t1MJf {
283
+ width: auto;
164
284
  padding: 0;
165
285
  }
166
286
 
287
+ .button-module__compact__nfUBM:hover > .button-module__state-layer__t1MJf,
288
+ .button-module__compact__nfUBM:focus-visible > .button-module__state-layer__t1MJf,
289
+ .button-module__compact__nfUBM:active > .button-module__state-layer__t1MJf,
290
+ .button-module__compact__nfUBM.button-module__active__hSEWs > .button-module__state-layer__t1MJf {
291
+ background-color: transparent;
292
+ }
293
+
167
294
  .button-module__text-secondary__jXFdx {
168
295
  color: var(--theme-text-secondary) !important;
169
296
  }
170
297
 
171
298
  .button-module__text-secondary__jXFdx:hover,
172
- .button-module__text-secondary__jXFdx:focus,
299
+ .button-module__text-secondary__jXFdx:focus-visible,
173
300
  .button-module__text-secondary__jXFdx:active,
174
301
  .button-module__text-secondary__jXFdx.button-module__active__hSEWs {
175
302
  color: var(--theme-focus) !important;
@@ -180,7 +307,7 @@
180
307
  }
181
308
 
182
309
  .button-module__text-secondary__jXFdx:hover > span > svg,
183
- .button-module__text-secondary__jXFdx:focus > span > svg,
310
+ .button-module__text-secondary__jXFdx:focus-visible > span > svg,
184
311
  .button-module__text-secondary__jXFdx:active > span > svg,
185
312
  .button-module__text-secondary__jXFdx.button-module__active__hSEWs > span > svg {
186
313
  fill: var(--theme-focus) !important;
@@ -201,6 +328,12 @@
201
328
  .button-module__filled__D7eAr:disabled,
202
329
  .button-module__filled__D7eAr[disabled] {
203
330
  background-color: var(--theme-grey-700);
331
+ box-shadow: none;
332
+ }
333
+
334
+ .button-module__outlined__c_PHO:disabled,
335
+ .button-module__outlined__c_PHO[disabled] {
336
+ border-color: var(--theme-button-outlined-border);
204
337
  }
205
338
 
206
339
  .typography-module__h1__pRuCD {
@@ -414,11 +547,105 @@
414
547
  background-color: var(--theme-selection-selected-pressed);
415
548
  }
416
549
 
550
+ .tooltip-module__trigger__PIfJx {
551
+ display: inline-flex;
552
+ align-items: center;
553
+ height: 100%;
554
+ }
555
+
556
+ .tooltip-module__content__nH6p2 {
557
+ z-index: 999;
558
+ max-width: 280px;
559
+ padding: 6px 8px;
560
+ font-size: var(--text-caption-size);
561
+ font-weight: var(--text-caption-weight);
562
+ line-height: var(--text-caption-height);
563
+ color: var(--theme-alert-default-color);
564
+ text-align: center;
565
+ letter-spacing: var(--text-caption-letter);
566
+ background-color: var(--theme-alert-default-background);
567
+ border-radius: 4px;
568
+ box-shadow:
569
+ 0px 1px 3px 0px rgba(0, 0, 0, 0.2),
570
+ 0px 2px 1px 0px rgba(0, 0, 0, 0.12),
571
+ 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
572
+ }
573
+
574
+ .tooltip-module__content__nH6p2.tooltip-module__success__OXBJT {
575
+ color: var(--theme-alert-success-color);
576
+ background-color: var(--theme-alert-success-background);
577
+ }
578
+
579
+ .tooltip-module__content__nH6p2.tooltip-module__warning__Xb_Wr {
580
+ color: var(--theme-alert-warning-color);
581
+ background-color: var(--theme-alert-warning-background);
582
+ }
583
+
584
+ .tooltip-module__content__nH6p2.tooltip-module__error__XWI8s {
585
+ color: var(--theme-alert-error-color);
586
+ background-color: var(--theme-alert-error-background);
587
+ }
588
+
589
+ .tooltip-module__content__nH6p2.tooltip-module__info__un5n7 {
590
+ color: var(--theme-alert-info-color);
591
+ background-color: var(--theme-alert-info-background);
592
+ }
593
+
594
+ .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP {
595
+ width: 6px;
596
+ height: 6px;
597
+ --arrow-color: var(--theme-alert-default-background);
598
+ }
599
+
600
+ .tooltip-module__content__nH6p2.tooltip-module__success__OXBJT > .tooltip-module__arrow__SONUP {
601
+ --arrow-color: var(--theme-alert-success-background);
602
+ }
603
+
604
+ .tooltip-module__content__nH6p2.tooltip-module__warning__Xb_Wr > .tooltip-module__arrow__SONUP {
605
+ --arrow-color: var(--theme-alert-warning-background);
606
+ }
607
+
608
+ .tooltip-module__content__nH6p2.tooltip-module__error__XWI8s > .tooltip-module__arrow__SONUP {
609
+ --arrow-color: var(--theme-alert-error-background);
610
+ }
611
+
612
+ .tooltip-module__content__nH6p2.tooltip-module__info__un5n7 > .tooltip-module__arrow__SONUP {
613
+ --arrow-color: var(--theme-alert-info-background);
614
+ }
615
+
616
+ .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__top-arrow__UHvch {
617
+ border-top: 6px solid var(--arrow-color);
618
+ border-right: 6px solid transparent;
619
+ border-left: 6px solid transparent;
620
+ transform: translate(0, 6px);
621
+ }
622
+
623
+ .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__bottom-arrow__GdFYs {
624
+ border-right: 6px solid transparent;
625
+ border-bottom: 6px solid var(--arrow-color);
626
+ border-left: 6px solid transparent;
627
+ transform: translate(0, -6px);
628
+ }
629
+
630
+ .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__left-arrow__BFwGV {
631
+ border-top: 6px solid transparent;
632
+ border-bottom: 6px solid transparent;
633
+ border-left: 6px solid var(--arrow-color);
634
+ transform: translate(6px, 0);
635
+ }
636
+
637
+ .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__right-arrow__ZFRBE {
638
+ border-top: 6px solid transparent;
639
+ border-right: 6px solid var(--arrow-color);
640
+ border-bottom: 6px solid transparent;
641
+ transform: translate(-6px, 0);
642
+ }
643
+
417
644
  /*
418
645
  * Общая геометрия и состояния полей ввода (Input, Select, MultiSelect,
419
646
  * DateTime, ColorPicker) по макету «Input and selector Dark Theme».
420
647
  *
421
- * Размеры (small/medium/large): высота 24/28/32, иконки 20/20/24.
648
+ * Размеры (small/medium/large/extraLarge): высота 24/28/32/40, иконки 20/20/24/24.
422
649
  * Компоненты ссылаются на размеры/состояния через data-атрибуты
423
650
  * ([data-size], [data-variant], [data-chips]), т.к. классы CSS-модулей
424
651
  * не видны между файлами. Структурные части селекторов обёрнуты в
@@ -445,18 +672,45 @@
445
672
  gap: 4px;
446
673
  }
447
674
 
448
- .fieldShell-module__root__vQ9PI[data-size='large'] {
449
- gap: 8px;
675
+ .fieldShell-module__root__vQ9PI[data-size='large'],
676
+ .fieldShell-module__root__vQ9PI[data-size='extraLarge'] {
677
+ gap: 4px;
450
678
  }
451
679
 
452
680
  /* Label small из макета: 12/12, без letter-spacing */
453
681
  .fieldShell-module__root__vQ9PI > .fieldShell-module__label__fdgQq {
454
682
  font-size: 12px;
455
683
  line-height: 12px;
456
- color: var(--theme-text-secondary);
684
+ color: var(--theme-input-label);
457
685
  letter-spacing: normal;
458
686
  }
459
687
 
688
+ .fieldShell-module__label-row__bOAYh {
689
+ display: flex;
690
+ gap: 4px;
691
+ align-items: flex-start;
692
+ width: 100%;
693
+ min-width: 0;
694
+ }
695
+
696
+ .fieldShell-module__label-row__bOAYh > .fieldShell-module__label__fdgQq {
697
+ flex: 1;
698
+ min-width: 0;
699
+ overflow: hidden;
700
+ text-overflow: ellipsis;
701
+ white-space: nowrap;
702
+ }
703
+
704
+ .fieldShell-module__error-name__LUg8D {
705
+ flex-shrink: 0;
706
+ overflow: hidden;
707
+ text-overflow: ellipsis;
708
+ font-size: 12px;
709
+ line-height: 12px;
710
+ color: var(--theme-error);
711
+ white-space: nowrap;
712
+ }
713
+
460
714
  .fieldShell-module__wrapper__OLPGQ {
461
715
  position: relative;
462
716
  width: 100%;
@@ -474,6 +728,10 @@
474
728
  height: 32px;
475
729
  }
476
730
 
731
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge']) > .fieldShell-module__wrapper__OLPGQ {
732
+ height: 40px;
733
+ }
734
+
477
735
  .fieldShell-module__input__mpHQB {
478
736
  position: relative;
479
737
  z-index: 1;
@@ -509,6 +767,13 @@
509
767
  line-height: 20px;
510
768
  }
511
769
 
770
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ) > .fieldShell-module__input__mpHQB {
771
+ height: 40px;
772
+ padding: 0 8px;
773
+ font-weight: 300;
774
+ line-height: 24px;
775
+ }
776
+
512
777
  :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__input__mpHQB {
513
778
  padding-left: 30px;
514
779
  }
@@ -517,7 +782,8 @@
517
782
  padding-left: 32px;
518
783
  }
519
784
 
520
- :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__input__mpHQB {
785
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__input__mpHQB,
786
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__input__mpHQB {
521
787
  padding-left: 36px;
522
788
  }
523
789
 
@@ -529,10 +795,37 @@
529
795
  padding-right: 32px;
530
796
  }
531
797
 
532
- :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-end-icon]) > .fieldShell-module__input__mpHQB {
798
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-end-icon]) > .fieldShell-module__input__mpHQB,
799
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-end-icon]) > .fieldShell-module__input__mpHQB {
533
800
  padding-right: 36px;
534
801
  }
535
802
 
803
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) > .fieldShell-module__input__mpHQB {
804
+ padding-right: 54px;
805
+ }
806
+
807
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) > .fieldShell-module__input__mpHQB {
808
+ padding-right: 56px;
809
+ }
810
+
811
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) > .fieldShell-module__input__mpHQB,
812
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) > .fieldShell-module__input__mpHQB {
813
+ padding-right: 64px;
814
+ }
815
+
816
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) .fieldShell-module__end-icon__ajeP3:not(.fieldShell-module__error-icon__Nyh0h) {
817
+ right: 30px;
818
+ }
819
+
820
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) .fieldShell-module__end-icon__ajeP3:not(.fieldShell-module__error-icon__Nyh0h) {
821
+ right: 32px;
822
+ }
823
+
824
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) .fieldShell-module__end-icon__ajeP3:not(.fieldShell-module__error-icon__Nyh0h),
825
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-dual-end-icon]) .fieldShell-module__end-icon__ajeP3:not(.fieldShell-module__error-icon__Nyh0h) {
826
+ right: 32px;
827
+ }
828
+
536
829
  :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB {
537
830
  padding-right: 26px;
538
831
  }
@@ -541,10 +834,37 @@
541
834
  padding-right: 32px;
542
835
  }
543
836
 
544
- :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB {
837
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB,
838
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB {
545
839
  padding-right: 36px;
546
840
  }
547
841
 
842
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) > .fieldShell-module__input__mpHQB {
843
+ padding-right: 50px;
844
+ }
845
+
846
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) > .fieldShell-module__input__mpHQB {
847
+ padding-right: 56px;
848
+ }
849
+
850
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) > .fieldShell-module__input__mpHQB,
851
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) > .fieldShell-module__input__mpHQB {
852
+ padding-right: 64px;
853
+ }
854
+
855
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-chips][data-arrow][data-error-icon]) > .fieldShell-module__chips__Eyi_K {
856
+ padding-right: 50px;
857
+ }
858
+
859
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-chips][data-arrow][data-error-icon]) > .fieldShell-module__chips__Eyi_K {
860
+ padding-right: 56px;
861
+ }
862
+
863
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-chips][data-arrow][data-error-icon]) > .fieldShell-module__chips__Eyi_K,
864
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-chips][data-arrow][data-error-icon]) > .fieldShell-module__chips__Eyi_K {
865
+ padding-right: 64px;
866
+ }
867
+
548
868
  :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filled']) > .fieldShell-module__input__mpHQB {
549
869
  background-color: var(--theme-input-filled);
550
870
  }
@@ -556,7 +876,39 @@
556
876
  :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filled']) > .fieldShell-module__input__mpHQB:focus {
557
877
  outline: 2px solid var(--theme-focus);
558
878
  outline-offset: -2px;
559
- background-color: var(--theme-input-filled-hover);
879
+ background-color: var(--theme-input-filled-focus);
880
+ }
881
+
882
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filledBlack']) > .fieldShell-module__input__mpHQB {
883
+ outline: 1px solid var(--theme-input-filled-black-border);
884
+ outline-offset: -1px;
885
+ background-color: var(--theme-input-filled-black);
886
+ }
887
+
888
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filledBlack']:hover) > .fieldShell-module__input__mpHQB:not(:disabled):not(:focus) {
889
+ outline-color: var(--theme-input-filled-black-border-hover);
890
+ }
891
+
892
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filledBlack']) > .fieldShell-module__input__mpHQB:focus {
893
+ outline: 2px solid var(--theme-focus);
894
+ outline-offset: -2px;
895
+ }
896
+
897
+ :where(.fieldShell-module__wrapper__OLPGQ[data-error]) > .fieldShell-module__input__mpHQB {
898
+ outline: 1px solid var(--theme-error) !important;
899
+ outline-offset: -1px;
900
+ }
901
+
902
+ :where(.fieldShell-module__wrapper__OLPGQ[data-error]) > .fieldShell-module__input__mpHQB:focus {
903
+ outline: 2px solid var(--theme-error) !important;
904
+ outline-offset: -2px;
905
+ }
906
+
907
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filledBlack'][data-error]) > .fieldShell-module__input__mpHQB {
908
+ background-image: linear-gradient(
909
+ var(--theme-input-filled-black-error-overlay),
910
+ var(--theme-input-filled-black-error-overlay)
911
+ );
560
912
  }
561
913
 
562
914
  :where(.fieldShell-module__wrapper__OLPGQ[data-variant='outlined']) > .fieldShell-module__input__mpHQB {
@@ -604,6 +956,14 @@
604
956
  fill: var(--theme-icon-primary);
605
957
  }
606
958
 
959
+ .fieldShell-module__error-icon__Nyh0h {
960
+ cursor: default;
961
+ }
962
+
963
+ .fieldShell-module__error-icon__Nyh0h > svg {
964
+ fill: var(--theme-error);
965
+ }
966
+
607
967
  :where(.fieldShell-module__root__vQ9PI[data-size='small']) .fieldShell-module__start-icon__FNrDk {
608
968
  left: 6px;
609
969
  }
@@ -612,7 +972,8 @@
612
972
  left: 8px;
613
973
  }
614
974
 
615
- :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__start-icon__FNrDk {
975
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__start-icon__FNrDk,
976
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge']) .fieldShell-module__start-icon__FNrDk {
616
977
  left: 4px;
617
978
  width: 24px;
618
979
  height: 24px;
@@ -626,7 +987,8 @@
626
987
  right: 8px;
627
988
  }
628
989
 
629
- :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__end-icon__ajeP3 {
990
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__end-icon__ajeP3,
991
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge']) .fieldShell-module__end-icon__ajeP3 {
630
992
  right: 4px;
631
993
  width: 24px;
632
994
  height: 24px;
@@ -640,12 +1002,26 @@
640
1002
  right: 8px;
641
1003
  }
642
1004
 
643
- :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__arrow__dXtPp {
1005
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__arrow__dXtPp,
1006
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge']) .fieldShell-module__arrow__dXtPp {
644
1007
  right: 4px;
645
1008
  width: 24px;
646
1009
  height: 24px;
647
1010
  }
648
1011
 
1012
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) .fieldShell-module__arrow__dXtPp {
1013
+ right: 30px;
1014
+ }
1015
+
1016
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) .fieldShell-module__arrow__dXtPp {
1017
+ right: 32px;
1018
+ }
1019
+
1020
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) .fieldShell-module__arrow__dXtPp,
1021
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-arrow][data-error-icon]) .fieldShell-module__arrow__dXtPp {
1022
+ right: 32px;
1023
+ }
1024
+
649
1025
  .fieldShell-module__wrapper__OLPGQ[data-chips] {
650
1026
  display: flex;
651
1027
  height: auto;
@@ -666,6 +1042,11 @@
666
1042
  min-height: 32px;
667
1043
  }
668
1044
 
1045
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge']) > .fieldShell-module__wrapper__OLPGQ[data-chips] {
1046
+ height: auto;
1047
+ min-height: 40px;
1048
+ }
1049
+
669
1050
  :where(.fieldShell-module__root__vQ9PI[data-size] .fieldShell-module__wrapper__OLPGQ[data-chips]) > .fieldShell-module__input__mpHQB {
670
1051
  position: absolute;
671
1052
  inset: 0;
@@ -700,6 +1081,10 @@
700
1081
  padding: 4px 36px 4px 4px;
701
1082
  }
702
1083
 
1084
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge']) .fieldShell-module__chips__Eyi_K {
1085
+ padding: 4px 36px 4px 8px;
1086
+ }
1087
+
703
1088
  :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__chips__Eyi_K {
704
1089
  padding-left: 30px;
705
1090
  }
@@ -708,7 +1093,8 @@
708
1093
  padding-left: 32px;
709
1094
  }
710
1095
 
711
- :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__chips__Eyi_K {
1096
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__chips__Eyi_K,
1097
+ :where(.fieldShell-module__root__vQ9PI[data-size='extraLarge'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__chips__Eyi_K {
712
1098
  padding-left: 36px;
713
1099
  }
714
1100
 
@@ -765,34 +1151,40 @@
765
1151
  }
766
1152
 
767
1153
  .inputChip-module__medium__VruGz,
768
- .inputChip-module__large__PPvr0 {
1154
+ .inputChip-module__large__PPvr0,
1155
+ .inputChip-module__extraLarge__s_SFd {
769
1156
  height: 28px;
770
1157
  padding-top: 4px;
771
1158
  padding-bottom: 4px;
772
1159
  }
773
1160
 
774
1161
  .inputChip-module__medium__VruGz.inputChip-module__with-icon__DZMe4,
775
- .inputChip-module__large__PPvr0.inputChip-module__with-icon__DZMe4 {
1162
+ .inputChip-module__large__PPvr0.inputChip-module__with-icon__DZMe4,
1163
+ .inputChip-module__extraLarge__s_SFd.inputChip-module__with-icon__DZMe4 {
776
1164
  padding-left: 4px;
777
1165
  }
778
1166
 
779
1167
  .inputChip-module__medium__VruGz:not(.inputChip-module__with-icon__DZMe4),
780
- .inputChip-module__large__PPvr0:not(.inputChip-module__with-icon__DZMe4) {
1168
+ .inputChip-module__large__PPvr0:not(.inputChip-module__with-icon__DZMe4),
1169
+ .inputChip-module__extraLarge__s_SFd:not(.inputChip-module__with-icon__DZMe4) {
781
1170
  padding-left: 12px;
782
1171
  }
783
1172
 
784
1173
  .inputChip-module__medium__VruGz:has(.inputChip-module__remove__Z6QBd),
785
- .inputChip-module__large__PPvr0:has(.inputChip-module__remove__Z6QBd) {
1174
+ .inputChip-module__large__PPvr0:has(.inputChip-module__remove__Z6QBd),
1175
+ .inputChip-module__extraLarge__s_SFd:has(.inputChip-module__remove__Z6QBd) {
786
1176
  padding-right: 6px;
787
1177
  }
788
1178
 
789
1179
  .inputChip-module__medium__VruGz:not(:has(.inputChip-module__remove__Z6QBd)),
790
- .inputChip-module__large__PPvr0:not(:has(.inputChip-module__remove__Z6QBd)) {
1180
+ .inputChip-module__large__PPvr0:not(:has(.inputChip-module__remove__Z6QBd)),
1181
+ .inputChip-module__extraLarge__s_SFd:not(:has(.inputChip-module__remove__Z6QBd)) {
791
1182
  padding-right: 12px;
792
1183
  }
793
1184
 
794
1185
  .inputChip-module__medium__VruGz.inputChip-module__with-icon__DZMe4:not(:has(.inputChip-module__remove__Z6QBd)),
795
- .inputChip-module__large__PPvr0.inputChip-module__with-icon__DZMe4:not(:has(.inputChip-module__remove__Z6QBd)) {
1186
+ .inputChip-module__large__PPvr0.inputChip-module__with-icon__DZMe4:not(:has(.inputChip-module__remove__Z6QBd)),
1187
+ .inputChip-module__extraLarge__s_SFd.inputChip-module__with-icon__DZMe4:not(:has(.inputChip-module__remove__Z6QBd)) {
796
1188
  padding-right: 6px;
797
1189
  }
798
1190
 
@@ -952,7 +1344,9 @@
952
1344
  }
953
1345
 
954
1346
  [data-size='large'] .select-module__icon__eKwKi,
955
- [data-size='large'] .select-module__item-icon__qWzAS {
1347
+ [data-size='large'] .select-module__item-icon__qWzAS,
1348
+ [data-size='extraLarge'] .select-module__icon__eKwKi,
1349
+ [data-size='extraLarge'] .select-module__item-icon__qWzAS {
956
1350
  left: 4px;
957
1351
  width: 24px;
958
1352
  height: 24px;
@@ -966,7 +1360,8 @@
966
1360
  left: 32px;
967
1361
  }
968
1362
 
969
- [data-size='large'] .select-module__icon__eKwKi + .select-module__item-icon__qWzAS {
1363
+ [data-size='large'] .select-module__icon__eKwKi + .select-module__item-icon__qWzAS,
1364
+ [data-size='extraLarge'] .select-module__icon__eKwKi + .select-module__item-icon__qWzAS {
970
1365
  left: 36px;
971
1366
  }
972
1367
 
@@ -985,7 +1380,8 @@
985
1380
  padding-left: 56px;
986
1381
  }
987
1382
 
988
- [data-size='large'] .select-module__with-icon__sdr2r.select-module__with-item-icon__j4VL9 > .select-module__input__ajhdt {
1383
+ [data-size='large'] .select-module__with-icon__sdr2r.select-module__with-item-icon__j4VL9 > .select-module__input__ajhdt,
1384
+ [data-size='extraLarge'] .select-module__with-icon__sdr2r.select-module__with-item-icon__j4VL9 > .select-module__input__ajhdt {
989
1385
  padding-left: 64px;
990
1386
  }
991
1387
 
@@ -1047,11 +1443,11 @@
1047
1443
  .menu-module__item__DO2AJ {
1048
1444
  width: 100%;
1049
1445
  padding: 0;
1050
- font-size: var(--text-subtitle2-size);
1051
- font-weight: var(--text-subtitle2-weight);
1052
- line-height: var(--text-subtitle2-height);
1446
+ font-size: var(--text-caption-size);
1447
+ font-weight: var(--text-caption-weight);
1448
+ line-height: var(--text-caption-height);
1053
1449
  text-align: left;
1054
- letter-spacing: var(--text-subtitle2-letter);
1450
+ letter-spacing: var(--text-caption-letter);
1055
1451
  cursor: pointer;
1056
1452
  outline: none;
1057
1453
  background-color: transparent;
@@ -1062,21 +1458,32 @@
1062
1458
  .menu-module__state-layer__m8uMf {
1063
1459
  display: inline-flex;
1064
1460
  flex-direction: row;
1065
- gap: 12px;
1066
1461
  align-items: center;
1067
1462
  width: 100%;
1068
1463
  color: var(--theme-text-secondary);
1069
1464
  background-color: transparent;
1070
1465
  }
1071
1466
 
1072
- .menu-module__medium__Jev6c .menu-module__state-layer__m8uMf {
1467
+ .menu-module__extraLarge__RIQUR .menu-module__state-layer__m8uMf {
1468
+ gap: 12px;
1073
1469
  padding: 12px 16px;
1074
1470
  }
1075
1471
 
1076
- .menu-module__small__uGqFV .menu-module__state-layer__m8uMf {
1472
+ .menu-module__large__jYm_Q .menu-module__state-layer__m8uMf {
1473
+ gap: 12px;
1474
+ padding: 12px 16px;
1475
+ }
1476
+
1477
+ .menu-module__medium__Jev6c .menu-module__state-layer__m8uMf {
1478
+ gap: 8px;
1077
1479
  padding: 8px 16px;
1078
1480
  }
1079
1481
 
1482
+ .menu-module__small__uGqFV .menu-module__state-layer__m8uMf {
1483
+ gap: 4px;
1484
+ padding: 4px 8px;
1485
+ }
1486
+
1080
1487
  .menu-module__item__DO2AJ:not(.menu-module__item-disabled__E7Z4s):hover > .menu-module__state-layer__m8uMf {
1081
1488
  color: var(--theme-text-primary);
1082
1489
  background-color: var(--theme-overlay-8);
@@ -1485,7 +1892,8 @@
1485
1892
  height: 16px;
1486
1893
  }
1487
1894
 
1488
- [data-size='large'] .colorPicker-module__swatch__MvnQ3 {
1895
+ [data-size='large'] .colorPicker-module__swatch__MvnQ3,
1896
+ [data-size='extraLarge'] .colorPicker-module__swatch__MvnQ3 {
1489
1897
  left: 6px;
1490
1898
  width: 20px;
1491
1899
  height: 20px;
@@ -1499,7 +1907,8 @@
1499
1907
  padding-left: 28px;
1500
1908
  }
1501
1909
 
1502
- [data-size='large'] .colorPicker-module__input__gaesN {
1910
+ [data-size='large'] .colorPicker-module__input__gaesN,
1911
+ [data-size='extraLarge'] .colorPicker-module__input__gaesN {
1503
1912
  padding-left: 34px;
1504
1913
  }
1505
1914
 
@@ -1608,10 +2017,24 @@
1608
2017
  padding-right: 56px;
1609
2018
  }
1610
2019
 
1611
- [data-size='large'] .multiSelect-module__input__Hk3TU {
2020
+ [data-size='large'] .multiSelect-module__input__Hk3TU,
2021
+ [data-size='extraLarge'] .multiSelect-module__input__Hk3TU {
1612
2022
  padding-right: 64px;
1613
2023
  }
1614
2024
 
2025
+ [data-size='small'] [data-error-icon][data-clear] > .multiSelect-module__input__Hk3TU {
2026
+ padding-right: 74px;
2027
+ }
2028
+
2029
+ [data-size='medium'] [data-error-icon][data-clear] > .multiSelect-module__input__Hk3TU {
2030
+ padding-right: 80px;
2031
+ }
2032
+
2033
+ [data-size='large'] [data-error-icon][data-clear] > .multiSelect-module__input__Hk3TU,
2034
+ [data-size='extraLarge'] [data-error-icon][data-clear] > .multiSelect-module__input__Hk3TU {
2035
+ padding-right: 88px;
2036
+ }
2037
+
1615
2038
  [data-size='small'] .multiSelect-module__chips__CUViE {
1616
2039
  padding-right: 50px;
1617
2040
  }
@@ -1620,10 +2043,37 @@
1620
2043
  padding-right: 56px;
1621
2044
  }
1622
2045
 
1623
- [data-size='large'] .multiSelect-module__chips__CUViE {
2046
+ [data-size='large'] .multiSelect-module__chips__CUViE,
2047
+ [data-size='extraLarge'] .multiSelect-module__chips__CUViE {
1624
2048
  padding-right: 64px;
1625
2049
  }
1626
2050
 
2051
+ [data-size='small'] [data-error-icon][data-clear] > .multiSelect-module__chips__CUViE {
2052
+ padding-right: 74px;
2053
+ }
2054
+
2055
+ [data-size='medium'] [data-error-icon][data-clear] > .multiSelect-module__chips__CUViE {
2056
+ padding-right: 80px;
2057
+ }
2058
+
2059
+ [data-size='large'] [data-error-icon][data-clear] > .multiSelect-module__chips__CUViE,
2060
+ [data-size='extraLarge'] [data-error-icon][data-clear] > .multiSelect-module__chips__CUViE {
2061
+ padding-right: 88px;
2062
+ }
2063
+
2064
+ [data-size='small'] [data-error-icon][data-clear] > .multiSelect-module__clear__CwQiH {
2065
+ right: 54px;
2066
+ }
2067
+
2068
+ [data-size='medium'] [data-error-icon][data-clear] > .multiSelect-module__clear__CwQiH {
2069
+ right: 56px;
2070
+ }
2071
+
2072
+ [data-size='large'] [data-error-icon][data-clear] > .multiSelect-module__clear__CwQiH,
2073
+ [data-size='extraLarge'] [data-error-icon][data-clear] > .multiSelect-module__clear__CwQiH {
2074
+ right: 60px;
2075
+ }
2076
+
1627
2077
  /* Кастомная иконка в левом слоте */
1628
2078
  .multiSelect-module__icon__TnLPX {
1629
2079
  position: absolute;
@@ -1646,7 +2096,8 @@
1646
2096
  left: 8px;
1647
2097
  }
1648
2098
 
1649
- [data-size='large'] .multiSelect-module__icon__TnLPX {
2099
+ [data-size='large'] .multiSelect-module__icon__TnLPX,
2100
+ [data-size='extraLarge'] .multiSelect-module__icon__TnLPX {
1650
2101
  left: 4px;
1651
2102
  width: 24px;
1652
2103
  height: 24px;
@@ -1691,13 +2142,15 @@
1691
2142
  right: 32px;
1692
2143
  }
1693
2144
 
1694
- [data-size='large'] .multiSelect-module__clear__CwQiH {
2145
+ [data-size='large'] .multiSelect-module__clear__CwQiH,
2146
+ [data-size='extraLarge'] .multiSelect-module__clear__CwQiH {
1695
2147
  right: 32px;
1696
2148
  width: 24px;
1697
2149
  height: 24px;
1698
2150
  }
1699
2151
 
1700
- [data-size='large'] .multiSelect-module__clear__CwQiH > svg {
2152
+ [data-size='large'] .multiSelect-module__clear__CwQiH > svg,
2153
+ [data-size='extraLarge'] .multiSelect-module__clear__CwQiH > svg {
1701
2154
  width: 20px;
1702
2155
  height: 20px;
1703
2156
  }
@@ -1911,100 +2364,6 @@
1911
2364
  padding: 66px 8px 8px 8px;
1912
2365
  }
1913
2366
 
1914
- .tooltip-module__trigger__PIfJx {
1915
- display: inline-flex;
1916
- align-items: center;
1917
- height: 100%;
1918
- }
1919
-
1920
- .tooltip-module__content__nH6p2 {
1921
- z-index: 999;
1922
- max-width: 280px;
1923
- padding: 6px 8px;
1924
- font-size: var(--text-caption-size);
1925
- font-weight: var(--text-caption-weight);
1926
- line-height: var(--text-caption-height);
1927
- color: var(--theme-alert-default-color);
1928
- text-align: center;
1929
- letter-spacing: var(--text-caption-letter);
1930
- background-color: var(--theme-alert-default-background);
1931
- border-radius: 4px;
1932
- box-shadow:
1933
- 0px 1px 3px 0px rgba(0, 0, 0, 0.2),
1934
- 0px 2px 1px 0px rgba(0, 0, 0, 0.12),
1935
- 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
1936
- }
1937
-
1938
- .tooltip-module__content__nH6p2.tooltip-module__success__OXBJT {
1939
- color: var(--theme-alert-success-color);
1940
- background-color: var(--theme-alert-success-background);
1941
- }
1942
-
1943
- .tooltip-module__content__nH6p2.tooltip-module__warning__Xb_Wr {
1944
- color: var(--theme-alert-warning-color);
1945
- background-color: var(--theme-alert-warning-background);
1946
- }
1947
-
1948
- .tooltip-module__content__nH6p2.tooltip-module__error__XWI8s {
1949
- color: var(--theme-alert-error-color);
1950
- background-color: var(--theme-alert-error-background);
1951
- }
1952
-
1953
- .tooltip-module__content__nH6p2.tooltip-module__info__un5n7 {
1954
- color: var(--theme-alert-info-color);
1955
- background-color: var(--theme-alert-info-background);
1956
- }
1957
-
1958
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP {
1959
- width: 6px;
1960
- height: 6px;
1961
- --arrow-color: var(--theme-alert-default-background);
1962
- }
1963
-
1964
- .tooltip-module__content__nH6p2.tooltip-module__success__OXBJT > .tooltip-module__arrow__SONUP {
1965
- --arrow-color: var(--theme-alert-success-background);
1966
- }
1967
-
1968
- .tooltip-module__content__nH6p2.tooltip-module__warning__Xb_Wr > .tooltip-module__arrow__SONUP {
1969
- --arrow-color: var(--theme-alert-warning-background);
1970
- }
1971
-
1972
- .tooltip-module__content__nH6p2.tooltip-module__error__XWI8s > .tooltip-module__arrow__SONUP {
1973
- --arrow-color: var(--theme-alert-error-background);
1974
- }
1975
-
1976
- .tooltip-module__content__nH6p2.tooltip-module__info__un5n7 > .tooltip-module__arrow__SONUP {
1977
- --arrow-color: var(--theme-alert-info-background);
1978
- }
1979
-
1980
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__top-arrow__UHvch {
1981
- border-top: 6px solid var(--arrow-color);
1982
- border-right: 6px solid transparent;
1983
- border-left: 6px solid transparent;
1984
- transform: translate(0, 6px);
1985
- }
1986
-
1987
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__bottom-arrow__GdFYs {
1988
- border-right: 6px solid transparent;
1989
- border-bottom: 6px solid var(--arrow-color);
1990
- border-left: 6px solid transparent;
1991
- transform: translate(0, -6px);
1992
- }
1993
-
1994
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__left-arrow__BFwGV {
1995
- border-top: 6px solid transparent;
1996
- border-bottom: 6px solid transparent;
1997
- border-left: 6px solid var(--arrow-color);
1998
- transform: translate(6px, 0);
1999
- }
2000
-
2001
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__right-arrow__ZFRBE {
2002
- border-top: 6px solid transparent;
2003
- border-right: 6px solid var(--arrow-color);
2004
- border-bottom: 6px solid transparent;
2005
- transform: translate(-6px, 0);
2006
- }
2007
-
2008
2367
  .tabs-module__root__m7YiQ {
2009
2368
  display: flex;
2010
2369
  flex-direction: row;
@@ -2662,7 +3021,10 @@
2662
3021
  gap: 16px;
2663
3022
  align-items: center;
2664
3023
  justify-content: space-between;
2665
- padding: 16px;
3024
+ padding: 16px 16px 8px 16px;
3025
+ }
3026
+
3027
+ .card-module__header-overlay__VpVTO {
2666
3028
  background-color: var(--theme-overlay-4);
2667
3029
  }
2668
3030
 
@@ -2676,10 +3038,26 @@
2676
3038
  align-items: center;
2677
3039
  }
2678
3040
 
2679
- .card-module__body__P4SYk {
3041
+ .card-module__body-full-size__oalrd {
2680
3042
  padding: 0;
2681
3043
  }
2682
3044
 
3045
+ .card-module__root__uGlLT.card-module__medium__TpRzi .card-module__body-padded__xaBA8 {
3046
+ padding: 8px 16px 16px 16px;
3047
+ }
3048
+
3049
+ .card-module__root__uGlLT.card-module__small__liJkd .card-module__body-padded__xaBA8 {
3050
+ padding: 4px 8px 8px 8px;
3051
+ }
3052
+
3053
+ .card-module__root__uGlLT.card-module__medium__TpRzi .card-module__body-padded-no-header__RBxi1 {
3054
+ padding: 16px;
3055
+ }
3056
+
3057
+ .card-module__root__uGlLT.card-module__small__liJkd .card-module__body-padded-no-header__RBxi1 {
3058
+ padding: 8px;
3059
+ }
3060
+
2683
3061
  .chip-module__root__QN7P0 {
2684
3062
  display: inline-flex;
2685
3063
  flex-shrink: 0;