nntc-ui 0.1.6 → 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 (40) 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 +9 -1
  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 +3 -2
  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/icons/ErrorOutlineIcon.d.ts +4 -0
  31. package/icons/ErrorOutlineIcon.d.ts.map +1 -0
  32. package/icons/index.d.ts +1 -0
  33. package/icons/index.d.ts.map +1 -1
  34. package/index.css +478 -164
  35. package/index.css.map +1 -1
  36. package/index.js +1 -1
  37. package/index.js.map +1 -1
  38. package/index.mjs +1 -1
  39. package/index.mjs.map +1 -1
  40. 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;
141
175
  }
142
176
 
143
- .button-module__text__rG7nD.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
144
- padding: 8px 12px;
177
+ .button-module__without-icon__GOGFF.button-module__medium__v66y0 > .button-module__state-layer__t1MJf {
178
+ padding: 4px 16px;
145
179
  }
146
180
 
147
- .button-module__text__rG7nD.button-module__small__HHNmk > .button-module__state-layer__t1MJf {
148
- padding: 6px 12px;
181
+ .button-module__without-icon__GOGFF.button-module__large__gt0K2 > .button-module__state-layer__t1MJf {
182
+ padding: 6px 24px;
183
+ }
184
+
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,6 +547,100 @@
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».
@@ -447,17 +674,43 @@
447
674
 
448
675
  .fieldShell-module__root__vQ9PI[data-size='large'],
449
676
  .fieldShell-module__root__vQ9PI[data-size='extraLarge'] {
450
- gap: 8px;
677
+ gap: 4px;
451
678
  }
452
679
 
453
680
  /* Label small из макета: 12/12, без letter-spacing */
454
681
  .fieldShell-module__root__vQ9PI > .fieldShell-module__label__fdgQq {
455
682
  font-size: 12px;
456
683
  line-height: 12px;
457
- color: var(--theme-text-secondary);
684
+ color: var(--theme-input-label);
458
685
  letter-spacing: normal;
459
686
  }
460
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
+
461
714
  .fieldShell-module__wrapper__OLPGQ {
462
715
  position: relative;
463
716
  width: 100%;
@@ -547,6 +800,32 @@
547
800
  padding-right: 36px;
548
801
  }
549
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
+
550
829
  :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB {
551
830
  padding-right: 26px;
552
831
  }
@@ -560,6 +839,32 @@
560
839
  padding-right: 36px;
561
840
  }
562
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
+
563
868
  :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filled']) > .fieldShell-module__input__mpHQB {
564
869
  background-color: var(--theme-input-filled);
565
870
  }
@@ -571,7 +876,39 @@
571
876
  :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filled']) > .fieldShell-module__input__mpHQB:focus {
572
877
  outline: 2px solid var(--theme-focus);
573
878
  outline-offset: -2px;
574
- 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
+ );
575
912
  }
576
913
 
577
914
  :where(.fieldShell-module__wrapper__OLPGQ[data-variant='outlined']) > .fieldShell-module__input__mpHQB {
@@ -619,6 +956,14 @@
619
956
  fill: var(--theme-icon-primary);
620
957
  }
621
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
+
622
967
  :where(.fieldShell-module__root__vQ9PI[data-size='small']) .fieldShell-module__start-icon__FNrDk {
623
968
  left: 6px;
624
969
  }
@@ -664,6 +1009,19 @@
664
1009
  height: 24px;
665
1010
  }
666
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
+
667
1025
  .fieldShell-module__wrapper__OLPGQ[data-chips] {
668
1026
  display: flex;
669
1027
  height: auto;
@@ -1085,11 +1443,11 @@
1085
1443
  .menu-module__item__DO2AJ {
1086
1444
  width: 100%;
1087
1445
  padding: 0;
1088
- font-size: var(--text-subtitle2-size);
1089
- font-weight: var(--text-subtitle2-weight);
1090
- 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);
1091
1449
  text-align: left;
1092
- letter-spacing: var(--text-subtitle2-letter);
1450
+ letter-spacing: var(--text-caption-letter);
1093
1451
  cursor: pointer;
1094
1452
  outline: none;
1095
1453
  background-color: transparent;
@@ -1100,21 +1458,32 @@
1100
1458
  .menu-module__state-layer__m8uMf {
1101
1459
  display: inline-flex;
1102
1460
  flex-direction: row;
1103
- gap: 12px;
1104
1461
  align-items: center;
1105
1462
  width: 100%;
1106
1463
  color: var(--theme-text-secondary);
1107
1464
  background-color: transparent;
1108
1465
  }
1109
1466
 
1110
- .menu-module__medium__Jev6c .menu-module__state-layer__m8uMf {
1467
+ .menu-module__extraLarge__RIQUR .menu-module__state-layer__m8uMf {
1468
+ gap: 12px;
1111
1469
  padding: 12px 16px;
1112
1470
  }
1113
1471
 
1114
- .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;
1115
1479
  padding: 8px 16px;
1116
1480
  }
1117
1481
 
1482
+ .menu-module__small__uGqFV .menu-module__state-layer__m8uMf {
1483
+ gap: 4px;
1484
+ padding: 4px 8px;
1485
+ }
1486
+
1118
1487
  .menu-module__item__DO2AJ:not(.menu-module__item-disabled__E7Z4s):hover > .menu-module__state-layer__m8uMf {
1119
1488
  color: var(--theme-text-primary);
1120
1489
  background-color: var(--theme-overlay-8);
@@ -1653,6 +2022,19 @@
1653
2022
  padding-right: 64px;
1654
2023
  }
1655
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
+
1656
2038
  [data-size='small'] .multiSelect-module__chips__CUViE {
1657
2039
  padding-right: 50px;
1658
2040
  }
@@ -1666,6 +2048,32 @@
1666
2048
  padding-right: 64px;
1667
2049
  }
1668
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
+
1669
2077
  /* Кастомная иконка в левом слоте */
1670
2078
  .multiSelect-module__icon__TnLPX {
1671
2079
  position: absolute;
@@ -1956,100 +2364,6 @@
1956
2364
  padding: 66px 8px 8px 8px;
1957
2365
  }
1958
2366
 
1959
- .tooltip-module__trigger__PIfJx {
1960
- display: inline-flex;
1961
- align-items: center;
1962
- height: 100%;
1963
- }
1964
-
1965
- .tooltip-module__content__nH6p2 {
1966
- z-index: 999;
1967
- max-width: 280px;
1968
- padding: 6px 8px;
1969
- font-size: var(--text-caption-size);
1970
- font-weight: var(--text-caption-weight);
1971
- line-height: var(--text-caption-height);
1972
- color: var(--theme-alert-default-color);
1973
- text-align: center;
1974
- letter-spacing: var(--text-caption-letter);
1975
- background-color: var(--theme-alert-default-background);
1976
- border-radius: 4px;
1977
- box-shadow:
1978
- 0px 1px 3px 0px rgba(0, 0, 0, 0.2),
1979
- 0px 2px 1px 0px rgba(0, 0, 0, 0.12),
1980
- 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
1981
- }
1982
-
1983
- .tooltip-module__content__nH6p2.tooltip-module__success__OXBJT {
1984
- color: var(--theme-alert-success-color);
1985
- background-color: var(--theme-alert-success-background);
1986
- }
1987
-
1988
- .tooltip-module__content__nH6p2.tooltip-module__warning__Xb_Wr {
1989
- color: var(--theme-alert-warning-color);
1990
- background-color: var(--theme-alert-warning-background);
1991
- }
1992
-
1993
- .tooltip-module__content__nH6p2.tooltip-module__error__XWI8s {
1994
- color: var(--theme-alert-error-color);
1995
- background-color: var(--theme-alert-error-background);
1996
- }
1997
-
1998
- .tooltip-module__content__nH6p2.tooltip-module__info__un5n7 {
1999
- color: var(--theme-alert-info-color);
2000
- background-color: var(--theme-alert-info-background);
2001
- }
2002
-
2003
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP {
2004
- width: 6px;
2005
- height: 6px;
2006
- --arrow-color: var(--theme-alert-default-background);
2007
- }
2008
-
2009
- .tooltip-module__content__nH6p2.tooltip-module__success__OXBJT > .tooltip-module__arrow__SONUP {
2010
- --arrow-color: var(--theme-alert-success-background);
2011
- }
2012
-
2013
- .tooltip-module__content__nH6p2.tooltip-module__warning__Xb_Wr > .tooltip-module__arrow__SONUP {
2014
- --arrow-color: var(--theme-alert-warning-background);
2015
- }
2016
-
2017
- .tooltip-module__content__nH6p2.tooltip-module__error__XWI8s > .tooltip-module__arrow__SONUP {
2018
- --arrow-color: var(--theme-alert-error-background);
2019
- }
2020
-
2021
- .tooltip-module__content__nH6p2.tooltip-module__info__un5n7 > .tooltip-module__arrow__SONUP {
2022
- --arrow-color: var(--theme-alert-info-background);
2023
- }
2024
-
2025
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__top-arrow__UHvch {
2026
- border-top: 6px solid var(--arrow-color);
2027
- border-right: 6px solid transparent;
2028
- border-left: 6px solid transparent;
2029
- transform: translate(0, 6px);
2030
- }
2031
-
2032
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__bottom-arrow__GdFYs {
2033
- border-right: 6px solid transparent;
2034
- border-bottom: 6px solid var(--arrow-color);
2035
- border-left: 6px solid transparent;
2036
- transform: translate(0, -6px);
2037
- }
2038
-
2039
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__left-arrow__BFwGV {
2040
- border-top: 6px solid transparent;
2041
- border-bottom: 6px solid transparent;
2042
- border-left: 6px solid var(--arrow-color);
2043
- transform: translate(6px, 0);
2044
- }
2045
-
2046
- .tooltip-module__content__nH6p2 > .tooltip-module__arrow__SONUP.tooltip-module__right-arrow__ZFRBE {
2047
- border-top: 6px solid transparent;
2048
- border-right: 6px solid var(--arrow-color);
2049
- border-bottom: 6px solid transparent;
2050
- transform: translate(-6px, 0);
2051
- }
2052
-
2053
2367
  .tabs-module__root__m7YiQ {
2054
2368
  display: flex;
2055
2369
  flex-direction: row;