indicator-ui 0.0.15 → 0.0.17

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 (58) hide show
  1. package/dist/index.css +458 -7
  2. package/dist/index.css.map +1 -1
  3. package/dist/index.js +308 -0
  4. package/dist/index.js.map +1 -1
  5. package/dist/scss/styles/mixins/modify-svg.scss +5 -1
  6. package/dist/scss/test/global.scss +2 -0
  7. package/dist/scss/ui/Buttons/styles/mixins/baseButton.scss +1 -1
  8. package/dist/scss/ui/Buttons/styles/mixins/button.scss +1 -1
  9. package/dist/scss/ui/Buttons/styles/mixins/properties/large.scss +1 -1
  10. package/dist/scss/ui/Buttons/styles/mixins/properties/link-black.scss +1 -1
  11. package/dist/scss/ui/Buttons/styles/mixins/properties/link-color.scss +1 -1
  12. package/dist/scss/ui/Buttons/styles/mixins/properties/link-gray.scss +1 -1
  13. package/dist/scss/ui/Buttons/styles/mixins/properties/medium.scss +1 -1
  14. package/dist/scss/ui/Buttons/styles/mixins/properties/primary.scss +1 -1
  15. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-color.scss +1 -1
  16. package/dist/scss/ui/Buttons/styles/mixins/properties/secondary-gray.scss +1 -1
  17. package/dist/scss/ui/Buttons/styles/mixins/properties/small.scss +1 -1
  18. package/dist/scss/ui/Buttons/styles/mixins/properties/tab-active.scss +1 -1
  19. package/dist/scss/ui/Buttons/styles/mixins/properties/tab.scss +1 -1
  20. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-color.scss +1 -1
  21. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-gray.scss +1 -0
  22. package/dist/scss/ui/Buttons/styles/mixins/properties/tertiary-white.scss +1 -1
  23. package/dist/scss/ui/Buttons/styles/mixins/properties/ultra.scss +1 -1
  24. package/dist/scss/ui/CheckboxMark/index.scss +1 -0
  25. package/dist/scss/ui/CheckboxMark/styles/index.scss +1 -0
  26. package/dist/scss/ui/CheckboxMark/styles/mixins/base.scss +26 -0
  27. package/dist/scss/ui/CheckboxMark/styles/mixins/checkbox-mark.scss +92 -0
  28. package/dist/scss/ui/CheckboxMark/styles/mixins/index.scss +3 -0
  29. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/checkbox.scss +3 -0
  30. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/checked.scss +20 -0
  31. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/correct.scss +41 -0
  32. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/disabled.scss +27 -0
  33. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/error.scss +22 -0
  34. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/incorrect.scss +41 -0
  35. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/indeterminate.scss +17 -0
  36. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/index.scss +8 -0
  37. package/dist/scss/ui/CheckboxMark/styles/mixins/properties/radio.scss +15 -0
  38. package/dist/scss/ui/MicroButton/styles/mixins/base-button.scss +1 -1
  39. package/dist/scss/ui/MicroButton/styles/mixins/index.scss +2 -1
  40. package/dist/scss/ui/MicroButton/styles/mixins/micro-button.scss +1 -1
  41. package/dist/scss/ui/index.scss +2 -1
  42. package/dist/types/src/test/pages/CheckboxMarkPage.d.ts +1 -0
  43. package/dist/types/src/test/pages/CheckboxPage.d.ts +1 -0
  44. package/dist/types/src/test/pages/index.d.ts +3 -0
  45. package/dist/types/src/ui/Checkbox/index.d.ts +2 -0
  46. package/dist/types/src/ui/Checkbox/styles/index.d.ts +1 -0
  47. package/dist/types/src/ui/Checkbox/types/CheckboxTypes.d.ts +33 -0
  48. package/dist/types/src/ui/Checkbox/types/index.d.ts +1 -0
  49. package/dist/types/src/ui/Checkbox/ui/Checkbox.d.ts +2 -0
  50. package/dist/types/src/ui/Checkbox/ui/index.d.ts +1 -0
  51. package/dist/types/src/ui/CheckboxMark/index.d.ts +2 -0
  52. package/dist/types/src/ui/CheckboxMark/styles/index.d.ts +1 -0
  53. package/dist/types/src/ui/CheckboxMark/types/CheckboxMarkTypes.d.ts +43 -0
  54. package/dist/types/src/ui/CheckboxMark/types/index.d.ts +1 -0
  55. package/dist/types/src/ui/CheckboxMark/ui/CheckboxMark.d.ts +3 -0
  56. package/dist/types/src/ui/CheckboxMark/ui/index.d.ts +1 -0
  57. package/dist/types/src/ui/index.d.ts +2 -0
  58. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -147,7 +147,6 @@
147
147
  font-size: 14px;
148
148
  line-height: 16px;
149
149
  line-height: 16px;
150
- font-weight: 500;
151
150
  font-family: "Golos UI", sans-serif;
152
151
  font-stretch: normal;
153
152
  font-style: normal;
@@ -168,7 +167,6 @@
168
167
  font-size: 14px;
169
168
  line-height: 20px;
170
169
  line-height: 20px;
171
- font-weight: 500;
172
170
  font-family: "Golos UI", sans-serif;
173
171
  font-stretch: normal;
174
172
  font-style: normal;
@@ -189,7 +187,6 @@
189
187
  font-size: 14px;
190
188
  line-height: 20px;
191
189
  line-height: 20px;
192
- font-weight: 500;
193
190
  font-family: "Golos UI", sans-serif;
194
191
  font-stretch: normal;
195
192
  font-style: normal;
@@ -210,7 +207,6 @@
210
207
  font-size: 18px;
211
208
  line-height: 24px;
212
209
  line-height: 24px;
213
- font-weight: 500;
214
210
  font-family: "Golos UI", sans-serif;
215
211
  font-stretch: normal;
216
212
  font-style: normal;
@@ -225,7 +221,12 @@
225
221
  stroke: var(--base-white);
226
222
  }
227
223
  .Buttons-module__button___I3yLe.Buttons-module__primary____crHN .Buttons-module__text___htxqX {
224
+ font-weight: 500;
228
225
  color: var(--base-white);
226
+ font-family: "Golos UI", sans-serif;
227
+ font-stretch: normal;
228
+ font-style: normal;
229
+ font-variant: normal;
229
230
  }
230
231
  .Buttons-module__button___I3yLe.Buttons-module__primary____crHN:hover {
231
232
  background-color: var(--blue-dark-600);
@@ -246,7 +247,12 @@
246
247
  stroke: var(--blue-dark-500);
247
248
  }
248
249
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ .Buttons-module__text___htxqX {
250
+ font-weight: 500;
249
251
  color: var(--blue-dark-500);
252
+ font-family: "Golos UI", sans-serif;
253
+ font-stretch: normal;
254
+ font-style: normal;
255
+ font-variant: normal;
250
256
  }
251
257
  .Buttons-module__button___I3yLe.Buttons-module__secondaryColor___GONLZ:hover {
252
258
  background-color: var(--blue-dark-50);
@@ -267,7 +273,12 @@
267
273
  stroke: var(--gray-700);
268
274
  }
269
275
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne .Buttons-module__text___htxqX {
276
+ font-weight: 500;
270
277
  color: var(--gray-700);
278
+ font-family: "Golos UI", sans-serif;
279
+ font-stretch: normal;
280
+ font-style: normal;
281
+ font-variant: normal;
271
282
  }
272
283
  .Buttons-module__button___I3yLe.Buttons-module__secondaryGray___yu1Ne:hover {
273
284
  background-color: var(--gray-50);
@@ -286,7 +297,12 @@
286
297
  stroke: var(--blue-dark-100);
287
298
  }
288
299
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq .Buttons-module__text___htxqX {
300
+ font-weight: 400;
289
301
  color: var(--blue-dark-100);
302
+ font-family: "Golos UI", sans-serif;
303
+ font-stretch: normal;
304
+ font-style: normal;
305
+ font-variant: normal;
290
306
  }
291
307
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryWhite___QIZOq:hover .Buttons-module__text___htxqX {
292
308
  color: var(--base-white);
@@ -304,7 +320,12 @@
304
320
  color: var(--blue-dark-500);
305
321
  }
306
322
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:hover .Buttons-module__text___htxqX {
323
+ font-weight: 400;
307
324
  color: var(--blue-dark-700);
325
+ font-family: "Golos UI", sans-serif;
326
+ font-stretch: normal;
327
+ font-style: normal;
328
+ font-variant: normal;
308
329
  }
309
330
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryColor___DwXbw:hover .Buttons-module__icon___U2AOU svg * {
310
331
  stroke: var(--blue-dark-700);
@@ -318,6 +339,14 @@
318
339
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__text___htxqX {
319
340
  color: var(--gray-700);
320
341
  }
342
+ .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu .Buttons-module__text___htxqX {
343
+ font-weight: 400;
344
+ color: var(--gray-400);
345
+ font-family: "Golos UI", sans-serif;
346
+ font-stretch: normal;
347
+ font-style: normal;
348
+ font-variant: normal;
349
+ }
321
350
  .Buttons-module__button___I3yLe.Buttons-module__tertiaryGray___y75cu:hover .Buttons-module__text___htxqX {
322
351
  color: var(--gray-900);
323
352
  }
@@ -335,9 +364,16 @@
335
364
  stroke: var(--blue-dark-500);
336
365
  }
337
366
  .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__text___htxqX {
338
- color: var(--blue-dark-500);
339
367
  padding: 0 !important;
340
368
  }
369
+ .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN .Buttons-module__text___htxqX {
370
+ font-weight: 400;
371
+ color: var(--blue-dark-500);
372
+ font-family: "Golos UI", sans-serif;
373
+ font-stretch: normal;
374
+ font-style: normal;
375
+ font-variant: normal;
376
+ }
341
377
  .Buttons-module__button___I3yLe.Buttons-module__linkColor___Kg7EN:hover .Buttons-module__text___htxqX {
342
378
  color: var(--blue-dark-700);
343
379
  }
@@ -355,9 +391,16 @@
355
391
  stroke: var(--gray-700);
356
392
  }
357
393
  .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__text___htxqX {
358
- color: var(--gray-700);
359
394
  padding: 0 !important;
360
395
  }
396
+ .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t .Buttons-module__text___htxqX {
397
+ font-weight: 400;
398
+ color: var(--gray-700);
399
+ font-family: "Golos UI", sans-serif;
400
+ font-stretch: normal;
401
+ font-style: normal;
402
+ font-variant: normal;
403
+ }
361
404
  .Buttons-module__button___I3yLe.Buttons-module__linkBlack___WfA7t:hover .Buttons-module__text___htxqX {
362
405
  color: var(--gray-900);
363
406
  }
@@ -375,9 +418,16 @@
375
418
  stroke: var(--gray-400);
376
419
  }
377
420
  .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__text___htxqX {
378
- color: var(--gray-400);
379
421
  padding: 0 !important;
380
422
  }
423
+ .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd .Buttons-module__text___htxqX {
424
+ font-weight: 400;
425
+ color: var(--gray-400);
426
+ font-family: "Golos UI", sans-serif;
427
+ font-stretch: normal;
428
+ font-style: normal;
429
+ font-variant: normal;
430
+ }
381
431
  .Buttons-module__button___I3yLe.Buttons-module__linkGray___CQYUd:hover .Buttons-module__text___htxqX {
382
432
  color: var(--gray-500);
383
433
  }
@@ -396,7 +446,12 @@
396
446
  stroke: var(--gray-700);
397
447
  }
398
448
  .Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq .Buttons-module__text___htxqX {
449
+ font-weight: 500;
399
450
  color: var(--gray-700);
451
+ font-family: "Golos UI", sans-serif;
452
+ font-stretch: normal;
453
+ font-style: normal;
454
+ font-variant: normal;
400
455
  }
401
456
  .Buttons-module__button___I3yLe.Buttons-module__tabActive___chlqq:hover .Buttons-module__icon___U2AOU svg * {
402
457
  stroke: var(--gray-900);
@@ -416,7 +471,12 @@
416
471
  stroke: var(--gray-500);
417
472
  }
418
473
  .Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo .Buttons-module__text___htxqX {
474
+ font-weight: 500;
419
475
  color: var(--gray-500);
476
+ font-family: "Golos UI", sans-serif;
477
+ font-stretch: normal;
478
+ font-style: normal;
479
+ font-variant: normal;
420
480
  }
421
481
  .Buttons-module__button___I3yLe.Buttons-module__tab___yBTjo:hover {
422
482
  background-color: var(--gray-200);
@@ -2429,5 +2489,396 @@
2429
2489
  .InputField-module__textareaField___iuYg7.InputField-module__isError___x2fXo:focus {
2430
2490
  box-shadow: 0 0 0 4px #FEE4E2, 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922);
2431
2491
  }
2492
+ /*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
2493
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/CheckboxMark/styles/CheckboxMark.module.scss ***!
2494
+ \*****************************************************************************************************************************************************************************************************************************************************************************/
2495
+ @font-face {
2496
+ font-family: "Golos UI";
2497
+ src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
2498
+ font-weight: 400;
2499
+ font-style: normal;
2500
+ }
2501
+ @font-face {
2502
+ font-family: "Golos UI";
2503
+ src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
2504
+ font-weight: 500;
2505
+ font-style: normal;
2506
+ }
2507
+ @font-face {
2508
+ font-family: "Golos UI";
2509
+ src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
2510
+ font-weight: 600;
2511
+ font-style: normal;
2512
+ }
2513
+ .CheckboxMark-module__checkboxMark___QsRbu {
2514
+ width: 20px;
2515
+ height: 20px;
2516
+ background-color: var(--base-white);
2517
+ box-shadow: 0 0 0 1px var(--gray-300);
2518
+ cursor: pointer;
2519
+ overflow: hidden;
2520
+ display: flex;
2521
+ align-items: center;
2522
+ justify-content: center;
2523
+ }
2524
+ .CheckboxMark-module__checkboxMark___QsRbu svg * {
2525
+ stroke-width: 4;
2526
+ }
2527
+ .CheckboxMark-module__checkboxMark___QsRbu svg {
2528
+ width: 14px;
2529
+ height: 14px;
2530
+ flex: none;
2531
+ }
2532
+ .CheckboxMark-module__checkboxMark___QsRbu:hover {
2533
+ background-color: var(--blue-dark-50);
2534
+ box-shadow: 0 0 0 1px var(--blue-dark-200);
2535
+ }
2536
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checkbox___hYxxO {
2537
+ border-radius: 6px;
2538
+ }
2539
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__radio___rCtRc {
2540
+ border-radius: 50%;
2541
+ }
2542
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__radio___rCtRc:after {
2543
+ display: none;
2544
+ flex: none;
2545
+ content: "";
2546
+ width: 8px;
2547
+ height: 8px;
2548
+ border-radius: 50%;
2549
+ background-color: var(--blue-dark-500);
2550
+ }
2551
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX {
2552
+ background-color: var(--blue-dark-50);
2553
+ box-shadow: 0 0 0 1px var(--blue-dark-200);
2554
+ }
2555
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX svg * {
2556
+ stroke: var(--blue-dark-500);
2557
+ }
2558
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX:after {
2559
+ display: block;
2560
+ }
2561
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__checked___gV7SX:hover {
2562
+ box-shadow: 0 0 0 1px var(--blue-dark-400);
2563
+ }
2564
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC {
2565
+ background-color: var(--blue-dark-50);
2566
+ box-shadow: 0 0 0 1px var(--blue-dark-200);
2567
+ }
2568
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC svg * {
2569
+ stroke: var(--blue-dark-500);
2570
+ }
2571
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC {
2572
+ font-size: 14px;
2573
+ line-height: 14px;
2574
+ color: var(--blue-dark-500);
2575
+ font-weight: 500;
2576
+ font-family: "Golos UI", sans-serif;
2577
+ font-stretch: normal;
2578
+ font-style: normal;
2579
+ font-variant: normal;
2580
+ }
2581
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__indeterminate___ZR_YC:hover {
2582
+ box-shadow: 0 0 0 1px var(--blue-dark-400);
2583
+ }
2584
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__error___NJKGd {
2585
+ background-color: var(--error-50);
2586
+ box-shadow: 0 0 0 1px var(--error-200);
2587
+ }
2588
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__error___NJKGd svg * {
2589
+ stroke: var(--error-500);
2590
+ }
2591
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__error___NJKGd {
2592
+ color: var(--error-500);
2593
+ font-family: "Golos UI", sans-serif;
2594
+ font-stretch: normal;
2595
+ font-style: normal;
2596
+ font-variant: normal;
2597
+ }
2598
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__error___NJKGd:after {
2599
+ background-color: var(--error-500);
2600
+ }
2601
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__error___NJKGd:hover {
2602
+ background-color: var(--error-50);
2603
+ box-shadow: 0 0 0 1px var(--error-400);
2604
+ }
2605
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__disabled___Ab4Hh {
2606
+ cursor: default;
2607
+ background-color: var(--gray-100);
2608
+ box-shadow: 0 0 0 1px var(--gray-300);
2609
+ }
2610
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__disabled___Ab4Hh:after {
2611
+ background-color: var(--gray-300);
2612
+ }
2613
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__disabled___Ab4Hh svg * {
2614
+ stroke: var(--gray-300);
2615
+ }
2616
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__disabled___Ab4Hh {
2617
+ color: var(--gray-300);
2618
+ font-family: "Golos UI", sans-serif;
2619
+ font-stretch: normal;
2620
+ font-style: normal;
2621
+ font-variant: normal;
2622
+ }
2623
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__disabled___Ab4Hh:hover {
2624
+ background-color: var(--gray-100);
2625
+ box-shadow: 0 0 0 1px var(--gray-300);
2626
+ }
2627
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__disabled___Ab4Hh:hover svg * {
2628
+ stroke: var(--gray-300);
2629
+ }
2630
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__disabled___Ab4Hh:hover {
2631
+ color: var(--gray-300);
2632
+ font-family: "Golos UI", sans-serif;
2633
+ font-stretch: normal;
2634
+ font-style: normal;
2635
+ font-variant: normal;
2636
+ }
2637
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX {
2638
+ background-color: var(--blue-dark-500);
2639
+ box-shadow: none;
2640
+ }
2641
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX {
2642
+ font-size: 14px;
2643
+ line-height: 14px;
2644
+ color: var(--base-white);
2645
+ font-weight: 500;
2646
+ font-family: "Golos UI", sans-serif;
2647
+ font-stretch: normal;
2648
+ font-style: normal;
2649
+ font-variant: normal;
2650
+ }
2651
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX svg * {
2652
+ stroke: var(--base-white);
2653
+ }
2654
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX:after {
2655
+ display: none;
2656
+ }
2657
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX:hover {
2658
+ background-color: var(--blue-dark-600);
2659
+ box-shadow: none;
2660
+ }
2661
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh {
2662
+ background-color: var(--gray-300);
2663
+ box-shadow: none;
2664
+ }
2665
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh {
2666
+ font-size: 14px;
2667
+ line-height: 14px;
2668
+ color: var(--base-white);
2669
+ font-weight: 500;
2670
+ font-family: "Golos UI", sans-serif;
2671
+ font-stretch: normal;
2672
+ font-style: normal;
2673
+ font-variant: normal;
2674
+ }
2675
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh svg * {
2676
+ stroke: var(--base-white);
2677
+ }
2678
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh:after {
2679
+ display: none;
2680
+ }
2681
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh:hover {
2682
+ background-color: var(--gray-300);
2683
+ box-shadow: none;
2684
+ }
2685
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX {
2686
+ background-color: var(--error-500);
2687
+ box-shadow: none;
2688
+ }
2689
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX {
2690
+ font-size: 14px;
2691
+ line-height: 14px;
2692
+ color: var(--base-white);
2693
+ font-weight: 500;
2694
+ font-family: "Golos UI", sans-serif;
2695
+ font-stretch: normal;
2696
+ font-style: normal;
2697
+ font-variant: normal;
2698
+ }
2699
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX svg * {
2700
+ stroke: var(--base-white);
2701
+ }
2702
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX:after {
2703
+ display: none;
2704
+ }
2705
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX:hover {
2706
+ background-color: var(--error-600);
2707
+ box-shadow: none;
2708
+ }
2709
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh {
2710
+ background-color: var(--gray-300);
2711
+ box-shadow: none;
2712
+ }
2713
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh {
2714
+ font-size: 14px;
2715
+ line-height: 14px;
2716
+ color: var(--base-white);
2717
+ font-weight: 500;
2718
+ font-family: "Golos UI", sans-serif;
2719
+ font-stretch: normal;
2720
+ font-style: normal;
2721
+ font-variant: normal;
2722
+ }
2723
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh svg * {
2724
+ stroke: var(--base-white);
2725
+ }
2726
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh:after {
2727
+ display: none;
2728
+ }
2729
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh:hover {
2730
+ background-color: var(--gray-300);
2731
+ box-shadow: none;
2732
+ }
2733
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19 {
2734
+ background-color: var(--blue-dark-50);
2735
+ box-shadow: 0 0 0 1px var(--blue-dark-200);
2736
+ }
2737
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__checked___gV7SX {
2738
+ box-shadow: 0 0 0 1px var(--blue-dark-400);
2739
+ }
2740
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__indeterminate___ZR_YC {
2741
+ box-shadow: 0 0 0 1px var(--blue-dark-400);
2742
+ }
2743
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__error___NJKGd {
2744
+ background-color: var(--error-50);
2745
+ box-shadow: 0 0 0 1px var(--error-400);
2746
+ }
2747
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__disabled___Ab4Hh {
2748
+ background-color: var(--gray-100);
2749
+ box-shadow: 0 0 0 1px var(--gray-300);
2750
+ }
2751
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__disabled___Ab4Hh svg * {
2752
+ stroke: var(--gray-300);
2753
+ }
2754
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__disabled___Ab4Hh {
2755
+ color: var(--gray-300);
2756
+ font-family: "Golos UI", sans-serif;
2757
+ font-stretch: normal;
2758
+ font-style: normal;
2759
+ font-variant: normal;
2760
+ }
2761
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX {
2762
+ background-color: var(--blue-dark-600);
2763
+ box-shadow: none;
2764
+ }
2765
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__correct___MLR9N.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh {
2766
+ background-color: var(--gray-300);
2767
+ box-shadow: none;
2768
+ }
2769
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX {
2770
+ background-color: var(--error-600);
2771
+ box-shadow: none;
2772
+ }
2773
+ .CheckboxMark-module__checkboxMark___QsRbu.CheckboxMark-module__hover___FWh19.CheckboxMark-module__incorrect___Y4rMI.CheckboxMark-module__checked___gV7SX.CheckboxMark-module__disabled___Ab4Hh {
2774
+ background-color: var(--gray-300);
2775
+ box-shadow: none;
2776
+ }
2777
+ /*!*********************************************************************************************************************************************************************************************************************************************************************!*\
2778
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/ui/Checkbox/styles/Checkbox.module.scss ***!
2779
+ \*********************************************************************************************************************************************************************************************************************************************************************/
2780
+ @font-face {
2781
+ font-family: "Golos UI";
2782
+ src: local("Golos UI"), url(fonts/golos-ui_regular.28e502dbcc83c91565af.ttf) format("truetype"), url(fonts/golos-ui_regular.a1c96bd6133294a21f27.woff2) format("woff2"), url(fonts/golos-ui_regular.144142fba245a224ac28.woff) format("woff");
2783
+ font-weight: 400;
2784
+ font-style: normal;
2785
+ }
2786
+ @font-face {
2787
+ font-family: "Golos UI";
2788
+ src: local("Golos UI"), url(fonts/golos-ui_medium.727b1fef51a9bac82009.ttf) format("truetype"), url(fonts/golos-ui_medium.6f7a20790ad518369eb2.woff2) format("woff2"), url(fonts/golos-ui_medium.f9db984fc119d6aeca90.woff) format("woff");
2789
+ font-weight: 500;
2790
+ font-style: normal;
2791
+ }
2792
+ @font-face {
2793
+ font-family: "Golos UI";
2794
+ src: local("Golos UI"), url(fonts/golos-ui_bold.c0e021db79bdbbdeefad.ttf) format("truetype"), url(fonts/golos-ui_bold.80c1c59de9219ce1f9c5.woff2) format("woff2"), url(fonts/golos-ui_bold.e1122033a14151d7ea54.woff) format("woff");
2795
+ font-weight: 600;
2796
+ font-style: normal;
2797
+ }
2798
+ .Checkbox-module__checkbox___GSei6 {
2799
+ width: 100%;
2800
+ height: fit-content;
2801
+ display: flex;
2802
+ gap: 8px;
2803
+ align-items: start;
2804
+ }
2805
+ .Checkbox-module__checkbox___GSei6 .Checkbox-module__textBlock___lgsN_ {
2806
+ flex: 1;
2807
+ gap: 2px;
2808
+ align-items: start;
2809
+ }
2810
+ .Checkbox-module__checkbox___GSei6 .Checkbox-module__textBlock___lgsN_ {
2811
+ display: flex;
2812
+ flex-direction: column;
2813
+ }
2814
+ .Checkbox-module__checkbox___GSei6 .Checkbox-module__textBlock___lgsN_ .Checkbox-module__text___bgxrk {
2815
+ text-align: start;
2816
+ }
2817
+ .Checkbox-module__checkbox___GSei6 .Checkbox-module__textBlock___lgsN_ .Checkbox-module__text___bgxrk {
2818
+ font-size: 16px;
2819
+ line-height: 20px;
2820
+ color: var(--gray-700);
2821
+ font-weight: 400;
2822
+ font-family: "Golos UI", sans-serif;
2823
+ font-stretch: normal;
2824
+ font-style: normal;
2825
+ font-variant: normal;
2826
+ }
2827
+ .Checkbox-module__checkbox___GSei6 .Checkbox-module__textBlock___lgsN_ .Checkbox-module__text___bgxrk.Checkbox-module__indeterminate___rVkUe {
2828
+ font-weight: 600;
2829
+ font-family: "Golos UI", sans-serif;
2830
+ font-stretch: normal;
2831
+ font-style: normal;
2832
+ font-variant: normal;
2833
+ }
2834
+ .Checkbox-module__checkbox___GSei6 .Checkbox-module__textBlock___lgsN_ .Checkbox-module__supportingText___BR8D6 {
2835
+ text-align: start;
2836
+ }
2837
+ .Checkbox-module__checkbox___GSei6 .Checkbox-module__textBlock___lgsN_ .Checkbox-module__supportingText___BR8D6 {
2838
+ font-size: 14px;
2839
+ line-height: 20px;
2840
+ color: var(--gray-500);
2841
+ font-weight: 400;
2842
+ font-family: "Golos UI", sans-serif;
2843
+ font-stretch: normal;
2844
+ font-style: normal;
2845
+ font-variant: normal;
2846
+ }
2847
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__disabled___haSYz {
2848
+ cursor: default;
2849
+ }
2850
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__disabled___haSYz .Checkbox-module__textBlock___lgsN_ .Checkbox-module__text___bgxrk {
2851
+ color: var(--gray-500);
2852
+ font-family: "Golos UI", sans-serif;
2853
+ font-stretch: normal;
2854
+ font-style: normal;
2855
+ font-variant: normal;
2856
+ }
2857
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__disabled___haSYz .Checkbox-module__textBlock___lgsN_ .Checkbox-module__supportingText___BR8D6 {
2858
+ color: var(--gray-400);
2859
+ font-family: "Golos UI", sans-serif;
2860
+ font-stretch: normal;
2861
+ font-style: normal;
2862
+ font-variant: normal;
2863
+ }
2864
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__error___YOn5a .Checkbox-module__textBlock___lgsN_ .Checkbox-module__supportingText___BR8D6 {
2865
+ color: var(--error-400);
2866
+ font-family: "Golos UI", sans-serif;
2867
+ font-stretch: normal;
2868
+ font-style: normal;
2869
+ font-variant: normal;
2870
+ }
2871
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__widthFill___EHcfi {
2872
+ width: 100%;
2873
+ }
2874
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__heightFill___uqjBX {
2875
+ height: 100%;
2876
+ }
2877
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__widthHug___N5weH {
2878
+ width: fit-content;
2879
+ }
2880
+ .Checkbox-module__checkbox___GSei6.Checkbox-module__heightHug___SK_mI {
2881
+ height: fit-content;
2882
+ }
2432
2883
 
2433
2884
  /*# sourceMappingURL=index.css.map*/