nntc-ui 0.1.1 → 0.1.4

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 (47) hide show
  1. package/components/common/ColorPicker/ColorPicker.d.ts +3 -4
  2. package/components/common/ColorPicker/ColorPicker.d.ts.map +1 -1
  3. package/components/common/DateTime/DateTime.d.ts +3 -2
  4. package/components/common/DateTime/DateTime.d.ts.map +1 -1
  5. package/components/common/FieldShell/FieldShell.d.ts +27 -0
  6. package/components/common/FieldShell/FieldShell.d.ts.map +1 -0
  7. package/components/common/FieldShell/index.d.ts +3 -0
  8. package/components/common/FieldShell/index.d.ts.map +1 -0
  9. package/components/common/Input/Input.d.ts +6 -5
  10. package/components/common/Input/Input.d.ts.map +1 -1
  11. package/components/common/MultiSelect/MultiSelect.d.ts +3 -4
  12. package/components/common/MultiSelect/MultiSelect.d.ts.map +1 -1
  13. package/components/common/MultiSelect/models/TitleVariant.d.ts +1 -1
  14. package/components/common/MultiSelect/models/TitleVariant.d.ts.map +1 -1
  15. package/components/common/MultiSelect/utils/getTitle.d.ts.map +1 -1
  16. package/components/common/SearchInput/SearchInput.d.ts +5 -1
  17. package/components/common/SearchInput/SearchInput.d.ts.map +1 -1
  18. package/components/common/Select/Select.d.ts +4 -4
  19. package/components/common/Select/Select.d.ts.map +1 -1
  20. package/components/view/Card/Card.d.ts +2 -0
  21. package/components/view/Card/Card.d.ts.map +1 -1
  22. package/components/view/Chip/Chip.d.ts.map +1 -1
  23. package/components/view/InputChip/InputChip.d.ts +15 -0
  24. package/components/view/InputChip/InputChip.d.ts.map +1 -0
  25. package/components/view/InputChip/index.d.ts +2 -0
  26. package/components/view/InputChip/index.d.ts.map +1 -0
  27. package/components/view/Popover/Popover.d.ts +1 -0
  28. package/components/view/Popover/Popover.d.ts.map +1 -1
  29. package/components/view/Popover/ui/PopoverProvider/hooks/usePopover.d.ts +1 -1
  30. package/components/view/Popover/ui/PopoverProvider/hooks/usePopover.d.ts.map +1 -1
  31. package/components/view/Popover/ui/PopoverProvider/models/PopoverOptions.d.ts +1 -0
  32. package/components/view/Popover/ui/PopoverProvider/models/PopoverOptions.d.ts.map +1 -1
  33. package/components/view/VirtualTable/models/TableCell.d.ts +5 -0
  34. package/components/view/VirtualTable/models/TableCell.d.ts.map +1 -1
  35. package/components/view/VirtualTable/models/TableColumn.d.ts +22 -0
  36. package/components/view/VirtualTable/models/TableColumn.d.ts.map +1 -1
  37. package/components/view/VirtualTable/models/TableRow.d.ts +1 -0
  38. package/components/view/VirtualTable/models/TableRow.d.ts.map +1 -1
  39. package/index.css +690 -755
  40. package/index.css.map +1 -1
  41. package/index.d.ts +1 -0
  42. package/index.d.ts.map +1 -1
  43. package/index.js +1 -1
  44. package/index.js.map +1 -1
  45. package/index.mjs +1 -1
  46. package/index.mjs.map +1 -1
  47. package/package.json +1 -1
package/index.css CHANGED
@@ -414,204 +414,581 @@
414
414
  background-color: var(--theme-selection-selected-pressed);
415
415
  }
416
416
 
417
- .popover-module__trigger__hYNqD {
418
- display: inline-flex;
419
- align-items: center;
420
- height: 100%;
421
- }
422
-
423
- .popover-module__content__cXVJ_ {
424
- z-index: 999;
425
- min-width: 200px;
426
- max-width: 380px;
427
- padding: 0;
428
- font-size: var(--text-caption-size);
429
- font-weight: var(--text-caption-weight);
430
- line-height: var(--text-caption-height);
431
- color: var(--theme-alert-default-color);
432
- letter-spacing: var(--text-caption-letter);
433
- background-color: var(--theme-surface-dropdown);
434
- border-radius: 4px;
435
- box-shadow:
436
- 0px 2px 4px 0px #00000033,
437
- 0px 1px 10px 0px #0000001f,
438
- 0px 4px 5px 0px #00000024;
439
- }
440
-
441
- .select-module__root__OCHpB {
417
+ /*
418
+ * Общая геометрия и состояния полей ввода (Input, Select, MultiSelect,
419
+ * DateTime, ColorPicker) по макету «Input and selector Dark Theme».
420
+ *
421
+ * Размеры (small/medium/large): высота 24/28/32, иконки 20/20/24.
422
+ * Компоненты ссылаются на размеры/состояния через data-атрибуты
423
+ * ([data-size], [data-variant], [data-chips]), т.к. классы CSS-модулей
424
+ * не видны между файлами. Структурные части селекторов обёрнуты в
425
+ * :where(), чтобы компоненты могли переопределять правила селекторами
426
+ * с обычной специфичностью.
427
+ */
428
+
429
+ .fieldShell-module__root__vQ9PI {
442
430
  display: flex;
443
431
  flex-direction: column;
444
432
  width: 100%;
445
433
  max-width: 320px;
446
434
  }
447
435
 
448
- .select-module__medium__thAU2 {
449
- gap: 8px;
436
+ .fieldShell-module__full-width__bYt_Z {
437
+ max-width: 100%;
438
+ }
439
+
440
+ .fieldShell-module__root__vQ9PI[data-size='small'] {
441
+ gap: 2px;
450
442
  }
451
443
 
452
- .select-module__small__Fc860 {
444
+ .fieldShell-module__root__vQ9PI[data-size='medium'] {
453
445
  gap: 4px;
454
446
  }
455
447
 
456
- .select-module__label__b95oB {
448
+ .fieldShell-module__root__vQ9PI[data-size='large'] {
449
+ gap: 8px;
450
+ }
451
+
452
+ /* Label small из макета: 12/12, без letter-spacing */
453
+ .fieldShell-module__root__vQ9PI > .fieldShell-module__label__fdgQq {
454
+ font-size: 12px;
455
+ line-height: 12px;
457
456
  color: var(--theme-text-secondary);
457
+ letter-spacing: normal;
458
458
  }
459
459
 
460
- .select-module__wrapper__wHn5r {
460
+ .fieldShell-module__wrapper__OLPGQ {
461
461
  position: relative;
462
462
  width: 100%;
463
463
  }
464
464
 
465
- .select-module__medium__thAU2 > .select-module__wrapper__wHn5r {
466
- height: 40px;
465
+ :where(.fieldShell-module__root__vQ9PI[data-size='small']) > .fieldShell-module__wrapper__OLPGQ {
466
+ height: 24px;
467
467
  }
468
468
 
469
- .select-module__small__Fc860 > .select-module__wrapper__wHn5r {
469
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium']) > .fieldShell-module__wrapper__OLPGQ {
470
+ height: 28px;
471
+ }
472
+
473
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) > .fieldShell-module__wrapper__OLPGQ {
470
474
  height: 32px;
471
475
  }
472
476
 
473
- .select-module__input__ajhdt {
477
+ .fieldShell-module__input__mpHQB {
474
478
  position: relative;
475
479
  z-index: 1;
476
480
  width: 100%;
477
- font-size: var(--text-subtitle2-size);
478
- font-weight: var(--text-subtitle2-weight);
479
- line-height: var(--text-subtitle2-height);
481
+ overflow: hidden;
482
+ text-overflow: ellipsis;
483
+ font-size: 12px;
484
+ font-weight: 400;
485
+ line-height: 16px;
480
486
  color: var(--theme-text-primary);
481
- letter-spacing: var(--text-subtitle2-letter);
482
- cursor: pointer;
487
+ letter-spacing: normal;
488
+ white-space: nowrap;
483
489
  outline: none;
490
+ background-color: transparent;
484
491
  border: none;
485
492
  border-radius: 4px;
486
493
  }
487
494
 
488
- .select-module__input__ajhdt:disabled {
489
- color: var(--theme-text-inactive);
495
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ) > .fieldShell-module__input__mpHQB {
496
+ height: 24px;
497
+ padding: 0 6px;
490
498
  }
491
499
 
492
- .select-module__medium__thAU2 > .select-module__wrapper__wHn5r > .select-module__input__ajhdt {
493
- height: 40px;
494
- padding: 8px 48px 8px 16px;
500
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ) > .fieldShell-module__input__mpHQB {
501
+ height: 28px;
502
+ padding: 0 8px;
495
503
  }
496
504
 
497
- .select-module__small__Fc860 > .select-module__wrapper__wHn5r > .select-module__input__ajhdt {
505
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ) > .fieldShell-module__input__mpHQB {
498
506
  height: 32px;
499
- padding: 4px 48px 4px 16px;
507
+ padding: 0 4px;
508
+ font-weight: 300;
509
+ line-height: 20px;
510
+ }
511
+
512
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__input__mpHQB {
513
+ padding-left: 30px;
514
+ }
515
+
516
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__input__mpHQB {
517
+ padding-left: 32px;
518
+ }
519
+
520
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__input__mpHQB {
521
+ padding-left: 36px;
522
+ }
523
+
524
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-end-icon]) > .fieldShell-module__input__mpHQB {
525
+ padding-right: 30px;
526
+ }
527
+
528
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-end-icon]) > .fieldShell-module__input__mpHQB {
529
+ padding-right: 32px;
530
+ }
531
+
532
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-end-icon]) > .fieldShell-module__input__mpHQB {
533
+ padding-right: 36px;
534
+ }
535
+
536
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB {
537
+ padding-right: 26px;
538
+ }
539
+
540
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB {
541
+ padding-right: 32px;
542
+ }
543
+
544
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-arrow]) > .fieldShell-module__input__mpHQB {
545
+ padding-right: 36px;
546
+ }
547
+
548
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filled']) > .fieldShell-module__input__mpHQB {
549
+ background-color: var(--theme-input-filled);
500
550
  }
501
551
 
502
- .select-module__with-icon__sdr2r > .select-module__wrapper__wHn5r > .select-module__input__ajhdt {
503
- padding-left: 48px;
552
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filled']:hover) > .fieldShell-module__input__mpHQB:not(:disabled):not(:focus) {
553
+ background-color: var(--theme-input-filled-hover);
554
+ }
555
+
556
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='filled']) > .fieldShell-module__input__mpHQB:focus {
557
+ outline: 2px solid var(--theme-focus);
558
+ outline-offset: -2px;
559
+ background-color: var(--theme-input-filled-hover);
560
+ }
561
+
562
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='outlined']) > .fieldShell-module__input__mpHQB {
563
+ outline: 1px solid var(--theme-input-border);
564
+ outline-offset: -1px;
565
+ }
566
+
567
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='outlined']:hover) > .fieldShell-module__input__mpHQB:not(:disabled):not(:focus) {
568
+ outline-color: var(--theme-input-border-hover);
504
569
  }
505
570
 
506
- .select-module__with-item-icon__j4VL9 > .select-module__wrapper__wHn5r > .select-module__input__ajhdt {
507
- padding-left: 48px;
571
+ :where(.fieldShell-module__wrapper__OLPGQ[data-variant='outlined']) > .fieldShell-module__input__mpHQB:focus {
572
+ outline: 2px solid var(--theme-focus);
573
+ outline-offset: -2px;
508
574
  }
509
575
 
510
- .select-module__with-icon__sdr2r.select-module__with-item-icon__j4VL9 > .select-module__wrapper__wHn5r > .select-module__input__ajhdt {
511
- padding-left: 80px;
576
+ .fieldShell-module__wrapper__OLPGQ:has(> .fieldShell-module__input__mpHQB:disabled) {
577
+ opacity: 0.4;
512
578
  }
513
579
 
514
- .select-module__icon__eKwKi {
580
+ .fieldShell-module__start-icon__FNrDk,
581
+ .fieldShell-module__end-icon__ajeP3,
582
+ .fieldShell-module__arrow__dXtPp {
515
583
  position: absolute;
516
- left: 16px;
584
+ top: 50%;
517
585
  z-index: 2;
518
586
  display: flex;
519
587
  align-items: center;
520
588
  justify-content: center;
589
+ width: 20px;
590
+ height: 20px;
591
+ color: var(--theme-icon-primary);
592
+ transform: translateY(-50%);
593
+ }
594
+
595
+ .fieldShell-module__arrow__dXtPp {
596
+ cursor: pointer;
597
+ }
598
+
599
+ .fieldShell-module__start-icon__FNrDk > svg,
600
+ .fieldShell-module__end-icon__ajeP3 > svg,
601
+ .fieldShell-module__arrow__dXtPp > svg {
602
+ width: 100%;
603
+ height: 100%;
604
+ fill: var(--theme-icon-primary);
605
+ }
606
+
607
+ :where(.fieldShell-module__root__vQ9PI[data-size='small']) .fieldShell-module__start-icon__FNrDk {
608
+ left: 6px;
609
+ }
610
+
611
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium']) .fieldShell-module__start-icon__FNrDk {
612
+ left: 8px;
613
+ }
614
+
615
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__start-icon__FNrDk {
616
+ left: 4px;
521
617
  width: 24px;
522
618
  height: 24px;
523
- cursor: pointer;
524
619
  }
525
620
 
526
- .select-module__medium__thAU2 > .select-module__wrapper__wHn5r > .select-module__icon__eKwKi {
527
- top: 8px;
621
+ :where(.fieldShell-module__root__vQ9PI[data-size='small']) .fieldShell-module__end-icon__ajeP3 {
622
+ right: 6px;
528
623
  }
529
624
 
530
- .select-module__small__Fc860 > .select-module__wrapper__wHn5r > .select-module__icon__eKwKi {
531
- top: 4px;
625
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium']) .fieldShell-module__end-icon__ajeP3 {
626
+ right: 8px;
532
627
  }
533
628
 
534
- .select-module__icon__eKwKi > svg {
535
- fill: var(--theme-icon-primary);
629
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__end-icon__ajeP3 {
630
+ right: 4px;
631
+ width: 24px;
632
+ height: 24px;
536
633
  }
537
634
 
538
- .select-module__item-icon__qWzAS {
635
+ :where(.fieldShell-module__root__vQ9PI[data-size='small']) .fieldShell-module__arrow__dXtPp {
636
+ right: 2px;
637
+ }
638
+
639
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium']) .fieldShell-module__arrow__dXtPp {
640
+ right: 8px;
641
+ }
642
+
643
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__arrow__dXtPp {
644
+ right: 4px;
645
+ width: 24px;
646
+ height: 24px;
647
+ }
648
+
649
+ .fieldShell-module__wrapper__OLPGQ[data-chips] {
650
+ display: flex;
651
+ height: auto;
652
+ }
653
+
654
+ :where(.fieldShell-module__root__vQ9PI[data-size='small']) > .fieldShell-module__wrapper__OLPGQ[data-chips] {
655
+ height: auto;
656
+ min-height: 24px;
657
+ }
658
+
659
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium']) > .fieldShell-module__wrapper__OLPGQ[data-chips] {
660
+ height: auto;
661
+ min-height: 28px;
662
+ }
663
+
664
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) > .fieldShell-module__wrapper__OLPGQ[data-chips] {
665
+ height: auto;
666
+ min-height: 32px;
667
+ }
668
+
669
+ :where(.fieldShell-module__root__vQ9PI[data-size] .fieldShell-module__wrapper__OLPGQ[data-chips]) > .fieldShell-module__input__mpHQB {
539
670
  position: absolute;
540
- left: 16px;
671
+ inset: 0;
672
+ height: 100%;
673
+ }
674
+
675
+ .fieldShell-module__chips__Eyi_K {
676
+ position: relative;
541
677
  z-index: 2;
542
678
  display: flex;
679
+ flex: 1;
680
+ flex-wrap: wrap;
681
+ gap: 4px;
543
682
  align-items: center;
544
- justify-content: center;
545
- width: 24px;
546
- height: 24px;
547
- cursor: pointer;
683
+ min-width: 0;
684
+ pointer-events: none;
548
685
  }
549
686
 
550
- .select-module__icon__eKwKi + .select-module__item-icon__qWzAS {
551
- left: 48px;
687
+ .fieldShell-module__chips__Eyi_K > * {
688
+ pointer-events: auto;
552
689
  }
553
690
 
554
- .select-module__medium__thAU2 > .select-module__wrapper__wHn5r > .select-module__item-icon__qWzAS {
555
- top: 8px;
691
+ :where(.fieldShell-module__root__vQ9PI[data-size='small']) .fieldShell-module__chips__Eyi_K {
692
+ padding: 4px 26px 4px 6px;
556
693
  }
557
694
 
558
- .select-module__small__Fc860 > .select-module__wrapper__wHn5r > .select-module__item-icon__qWzAS {
559
- top: 4px;
695
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium']) .fieldShell-module__chips__Eyi_K {
696
+ padding: 4px 32px 4px 8px;
560
697
  }
561
698
 
562
- .select-module__item-icon__qWzAS > svg {
563
- fill: var(--theme-icon-primary);
699
+ :where(.fieldShell-module__root__vQ9PI[data-size='large']) .fieldShell-module__chips__Eyi_K {
700
+ padding: 4px 36px 4px 4px;
564
701
  }
565
702
 
566
- .select-module__filled__HCXVQ > .select-module__input__ajhdt {
567
- background-color: var(--theme-input-filled);
703
+ :where(.fieldShell-module__root__vQ9PI[data-size='small'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__chips__Eyi_K {
704
+ padding-left: 30px;
568
705
  }
569
706
 
570
- .select-module__filled__HCXVQ:hover > .select-module__input__ajhdt {
571
- background-color: var(--theme-input-filled-hover);
707
+ :where(.fieldShell-module__root__vQ9PI[data-size='medium'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__chips__Eyi_K {
708
+ padding-left: 32px;
572
709
  }
573
710
 
574
- .select-module__filled__HCXVQ > .select-module__input__ajhdt:focus {
575
- background-color: var(--theme-input-filled-hover);
711
+ :where(.fieldShell-module__root__vQ9PI[data-size='large'] .fieldShell-module__wrapper__OLPGQ[data-start-icon]) > .fieldShell-module__chips__Eyi_K {
712
+ padding-left: 36px;
576
713
  }
577
714
 
578
- .select-module__outlined__rTvhS > .select-module__input__ajhdt {
715
+ .inputChip-module__root__DWnVf {
716
+ display: inline-flex;
717
+ flex-shrink: 0;
718
+ gap: 6px;
719
+ align-items: center;
720
+ min-width: 0;
721
+ max-width: 100%;
722
+ overflow: hidden;
723
+ font-size: 12px;
724
+ font-weight: 300;
725
+ line-height: 20px;
726
+ color: var(--theme-text-primary);
727
+ letter-spacing: normal;
728
+ -webkit-user-select: none;
729
+ user-select: none;
730
+ border-radius: 16px;
731
+ }
732
+
733
+ .inputChip-module__filled__mSiU7 {
734
+ background-color: var(--theme-input-chip-bg);
735
+ }
736
+
737
+ .inputChip-module__outlined__j4EHe {
579
738
  outline: 1px solid var(--theme-input-border);
739
+ outline-offset: -1px;
580
740
  background-color: transparent;
581
741
  }
582
742
 
583
- .select-module__outlined__rTvhS:hover > .select-module__input__ajhdt:not(:disabled):not(:focus) {
743
+ .inputChip-module__small__XrLEF {
744
+ height: 20px;
745
+ }
746
+
747
+ .inputChip-module__small__XrLEF.inputChip-module__with-icon__DZMe4 {
748
+ padding-left: 0;
749
+ }
750
+
751
+ .inputChip-module__small__XrLEF:not(.inputChip-module__with-icon__DZMe4) {
752
+ padding-left: 8px;
753
+ }
754
+
755
+ .inputChip-module__small__XrLEF:has(.inputChip-module__remove__Z6QBd) {
756
+ padding-right: 1px;
757
+ }
758
+
759
+ .inputChip-module__small__XrLEF:not(:has(.inputChip-module__remove__Z6QBd)) {
760
+ padding-right: 8px;
761
+ }
762
+
763
+ .inputChip-module__small__XrLEF.inputChip-module__with-icon__DZMe4:not(:has(.inputChip-module__remove__Z6QBd)) {
764
+ padding-right: 6px;
765
+ }
766
+
767
+ .inputChip-module__medium__VruGz,
768
+ .inputChip-module__large__PPvr0 {
769
+ height: 28px;
770
+ padding-top: 4px;
771
+ padding-bottom: 4px;
772
+ }
773
+
774
+ .inputChip-module__medium__VruGz.inputChip-module__with-icon__DZMe4,
775
+ .inputChip-module__large__PPvr0.inputChip-module__with-icon__DZMe4 {
776
+ padding-left: 4px;
777
+ }
778
+
779
+ .inputChip-module__medium__VruGz:not(.inputChip-module__with-icon__DZMe4),
780
+ .inputChip-module__large__PPvr0:not(.inputChip-module__with-icon__DZMe4) {
781
+ padding-left: 12px;
782
+ }
783
+
784
+ .inputChip-module__medium__VruGz:has(.inputChip-module__remove__Z6QBd),
785
+ .inputChip-module__large__PPvr0:has(.inputChip-module__remove__Z6QBd) {
786
+ padding-right: 6px;
787
+ }
788
+
789
+ .inputChip-module__medium__VruGz:not(:has(.inputChip-module__remove__Z6QBd)),
790
+ .inputChip-module__large__PPvr0:not(:has(.inputChip-module__remove__Z6QBd)) {
791
+ padding-right: 12px;
792
+ }
793
+
794
+ .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)) {
796
+ padding-right: 6px;
797
+ }
798
+
799
+ .inputChip-module__clickable__XZjD7 {
800
+ cursor: pointer;
801
+ }
802
+
803
+ .inputChip-module__clickable__XZjD7.inputChip-module__filled__mSiU7:hover:not(.inputChip-module__disabled__Zk_O4) {
804
+ background-color: var(--theme-input-chip-hover);
805
+ }
806
+
807
+ .inputChip-module__clickable__XZjD7.inputChip-module__filled__mSiU7:focus-visible:not(.inputChip-module__disabled__Zk_O4) {
808
+ outline: none;
809
+ background-color: var(--theme-input-chip-focus);
810
+ }
811
+
812
+ .inputChip-module__clickable__XZjD7.inputChip-module__outlined__j4EHe:hover:not(.inputChip-module__disabled__Zk_O4) {
584
813
  outline-color: var(--theme-input-border-hover);
814
+ background-color: var(--theme-selection-hover);
585
815
  }
586
816
 
587
- .select-module__outlined__rTvhS > .select-module__input__ajhdt:focus {
588
- outline-color: var(--theme-focus);
817
+ .inputChip-module__clickable__XZjD7.inputChip-module__outlined__j4EHe:focus-visible:not(.inputChip-module__disabled__Zk_O4) {
818
+ outline: 2px solid var(--theme-focus);
819
+ outline-offset: -2px;
589
820
  }
590
821
 
591
- .select-module__arrow__hlIMs {
822
+ .inputChip-module__disabled__Zk_O4.inputChip-module__filled__mSiU7 {
823
+ background-color: var(--theme-input-chip-disabled-bg);
824
+ }
825
+
826
+ .inputChip-module__disabled__Zk_O4 {
827
+ color: var(--theme-text-inactive);
828
+ pointer-events: none;
829
+ }
830
+
831
+ .inputChip-module__text__dhqTV {
832
+ flex: 1 1 auto;
833
+ min-width: 0;
834
+ overflow: hidden;
835
+ text-overflow: ellipsis;
836
+ white-space: nowrap;
837
+ }
838
+
839
+ .inputChip-module__icon__phvLA {
840
+ display: inline-flex;
841
+ flex-shrink: 0;
842
+ align-items: center;
843
+ justify-content: center;
844
+ width: 20px;
845
+ height: 20px;
846
+ color: var(--theme-icon-primary);
847
+ }
848
+
849
+ .inputChip-module__icon__phvLA > svg {
850
+ width: 100%;
851
+ height: 100%;
852
+ fill: var(--theme-icon-primary);
853
+ }
854
+
855
+ .inputChip-module__disabled__Zk_O4 .inputChip-module__icon__phvLA > svg {
856
+ fill: var(--theme-text-inactive);
857
+ }
858
+
859
+ .inputChip-module__remove__Z6QBd {
860
+ display: inline-flex;
861
+ flex-shrink: 0;
862
+ align-items: center;
863
+ justify-content: center;
864
+ width: 18px;
865
+ height: 18px;
866
+ padding: 0;
867
+ margin: 0 0 0 auto;
868
+ color: var(--theme-icon-primary);
869
+ cursor: pointer;
870
+ outline: none;
871
+ background: none;
872
+ border: none;
873
+ border-radius: 50%;
874
+ }
875
+
876
+ .inputChip-module__remove__Z6QBd > svg {
877
+ width: 100%;
878
+ height: 100%;
879
+ fill: var(--theme-icon-primary);
880
+ }
881
+
882
+ .inputChip-module__remove__Z6QBd:hover:not(:disabled) {
883
+ background-color: var(--theme-icon-hover);
884
+ }
885
+
886
+ .inputChip-module__remove__Z6QBd:hover:not(:disabled) > svg {
887
+ fill: var(--theme-text-primary);
888
+ }
889
+
890
+ .inputChip-module__remove__Z6QBd:disabled {
891
+ cursor: default;
892
+ }
893
+
894
+ .inputChip-module__disabled__Zk_O4 .inputChip-module__remove__Z6QBd > svg {
895
+ fill: var(--theme-text-inactive);
896
+ }
897
+
898
+ .popover-module__trigger__hYNqD {
899
+ display: inline-flex;
900
+ align-items: center;
901
+ height: 100%;
902
+ }
903
+
904
+ .popover-module__content__cXVJ_ {
905
+ z-index: 999;
906
+ min-width: 200px;
907
+ max-width: 380px;
908
+ padding: 0;
909
+ font-size: var(--text-caption-size);
910
+ font-weight: var(--text-caption-weight);
911
+ line-height: var(--text-caption-height);
912
+ color: var(--theme-alert-default-color);
913
+ letter-spacing: var(--text-caption-letter);
914
+ background-color: var(--theme-surface-dropdown);
915
+ border-radius: 4px;
916
+ box-shadow:
917
+ 0px 2px 4px 0px #00000033,
918
+ 0px 1px 10px 0px #0000001f,
919
+ 0px 4px 5px 0px #00000024;
920
+ }
921
+
922
+ .select-module__input__ajhdt {
923
+ cursor: pointer;
924
+ }
925
+
926
+ .select-module__input__ajhdt:disabled {
927
+ cursor: default;
928
+ }
929
+
930
+ .select-module__icon__eKwKi,
931
+ .select-module__item-icon__qWzAS {
592
932
  position: absolute;
593
- right: 16px;
933
+ top: 50%;
594
934
  z-index: 2;
595
935
  display: flex;
596
936
  align-items: center;
597
937
  justify-content: center;
938
+ width: 20px;
939
+ height: 20px;
940
+ cursor: pointer;
941
+ transform: translateY(-50%);
942
+ }
943
+
944
+ [data-size='small'] .select-module__icon__eKwKi,
945
+ [data-size='small'] .select-module__item-icon__qWzAS {
946
+ left: 6px;
947
+ }
948
+
949
+ [data-size='medium'] .select-module__icon__eKwKi,
950
+ [data-size='medium'] .select-module__item-icon__qWzAS {
951
+ left: 8px;
952
+ }
953
+
954
+ [data-size='large'] .select-module__icon__eKwKi,
955
+ [data-size='large'] .select-module__item-icon__qWzAS {
956
+ left: 4px;
598
957
  width: 24px;
599
958
  height: 24px;
600
- cursor: pointer;
601
959
  }
602
960
 
603
- .select-module__medium__thAU2 > .select-module__wrapper__wHn5r > .select-module__arrow__hlIMs {
604
- top: 8px;
961
+ [data-size='small'] .select-module__icon__eKwKi + .select-module__item-icon__qWzAS {
962
+ left: 30px;
605
963
  }
606
964
 
607
- .select-module__small__Fc860 > .select-module__wrapper__wHn5r > .select-module__arrow__hlIMs {
608
- top: 4px;
965
+ [data-size='medium'] .select-module__icon__eKwKi + .select-module__item-icon__qWzAS {
966
+ left: 32px;
609
967
  }
610
968
 
611
- .select-module__arrow__hlIMs > svg {
969
+ [data-size='large'] .select-module__icon__eKwKi + .select-module__item-icon__qWzAS {
970
+ left: 36px;
971
+ }
972
+
973
+ .select-module__icon__eKwKi > svg,
974
+ .select-module__item-icon__qWzAS > svg {
975
+ width: 100%;
976
+ height: 100%;
612
977
  fill: var(--theme-icon-primary);
613
978
  }
614
979
 
980
+ [data-size='small'] .select-module__with-icon__sdr2r.select-module__with-item-icon__j4VL9 > .select-module__input__ajhdt {
981
+ padding-left: 54px;
982
+ }
983
+
984
+ [data-size='medium'] .select-module__with-icon__sdr2r.select-module__with-item-icon__j4VL9 > .select-module__input__ajhdt {
985
+ padding-left: 56px;
986
+ }
987
+
988
+ [data-size='large'] .select-module__with-icon__sdr2r.select-module__with-item-icon__j4VL9 > .select-module__input__ajhdt {
989
+ padding-left: 64px;
990
+ }
991
+
615
992
  .select-module__popover-target__utEyc {
616
993
  position: absolute;
617
994
  bottom: 0;
@@ -773,131 +1150,29 @@
773
1150
  white-space: nowrap;
774
1151
  }
775
1152
 
776
- .menu-module__item-actions__ecU8y {
777
- display: flex;
778
- flex: 0 0 auto;
779
- align-items: center;
780
- }
781
-
782
- .menu-module__divider__kik9c {
783
- margin: 8px 12px;
784
- font-size: var(--text-overline-size);
785
- font-weight: var(--text-overline-weight);
786
- line-height: var(--text-overline-height);
787
- color: var(--theme-text-inactive);
788
- text-transform: uppercase;
789
- letter-spacing: var(--text-overline-letter);
790
- border-bottom: 1px solid var(--theme-divider);
791
- }
792
-
793
- .dateTime-module__root___CULh {
794
- display: flex;
795
- flex-direction: column;
796
- width: 100%;
797
- max-width: 320px;
798
- }
799
-
800
- .dateTime-module__full-width__x5Snf {
801
- max-width: 100%;
802
- }
803
-
804
- .dateTime-module__medium__btb_E {
805
- gap: 8px;
806
- }
807
-
808
- .dateTime-module__small__bywih {
809
- gap: 4px;
810
- }
811
-
812
- .dateTime-module__label__FnrxJ {
813
- color: var(--theme-text-secondary);
814
- }
815
-
816
- .dateTime-module__wrapper__zlOEC {
817
- position: relative;
818
- width: 100%;
819
- }
820
-
821
- .dateTime-module__medium__btb_E > .dateTime-module__wrapper__zlOEC {
822
- height: 40px;
823
- }
824
-
825
- .dateTime-module__small__bywih > .dateTime-module__wrapper__zlOEC {
826
- height: 32px;
827
- }
828
-
829
- .dateTime-module__input__p1lxx {
830
- position: relative;
831
- z-index: 1;
832
- width: 100%;
833
- font-size: var(--text-subtitle2-size);
834
- font-weight: var(--text-subtitle2-weight);
835
- line-height: var(--text-subtitle2-height);
836
- color: var(--theme-text-primary);
837
- letter-spacing: var(--text-subtitle2-letter);
838
- cursor: pointer;
839
- outline: none;
840
- border: none;
841
- border-radius: 4px;
842
- }
843
-
844
- .dateTime-module__medium__btb_E > .dateTime-module__wrapper__zlOEC > .dateTime-module__input__p1lxx {
845
- height: 40px;
846
- padding: 8px 48px 8px 16px;
847
- }
848
-
849
- .dateTime-module__small__bywih > .dateTime-module__wrapper__zlOEC > .dateTime-module__input__p1lxx {
850
- height: 32px;
851
- padding: 4px 48px 4px 16px;
852
- }
853
-
854
- .dateTime-module__filled__nA6CU > .dateTime-module__input__p1lxx {
855
- background-color: var(--theme-input-filled);
856
- }
857
-
858
- .dateTime-module__filled__nA6CU:hover > .dateTime-module__input__p1lxx {
859
- background-color: var(--theme-input-filled-hover);
860
- }
861
-
862
- .dateTime-module__filled__nA6CU > .dateTime-module__input__p1lxx:focus {
863
- background-color: var(--theme-input-filled-hover);
864
- }
865
-
866
- .dateTime-module__outlined__MCqbp > .dateTime-module__input__p1lxx {
867
- outline: 1px solid var(--theme-input-border);
868
- background-color: transparent;
869
- }
870
-
871
- .dateTime-module__outlined__MCqbp:hover > .dateTime-module__input__p1lxx {
872
- outline-color: var(--theme-input-border-hover);
873
- }
874
-
875
- .dateTime-module__outlined__MCqbp > .dateTime-module__input__p1lxx:focus {
876
- outline-color: var(--theme-focus);
877
- }
878
-
879
- .dateTime-module__icon__H9gzS {
880
- position: absolute;
881
- right: 16px;
882
- z-index: 2;
1153
+ .menu-module__item-actions__ecU8y {
883
1154
  display: flex;
1155
+ flex: 0 0 auto;
884
1156
  align-items: center;
885
- justify-content: center;
886
- width: 24px;
887
- height: 24px;
888
- cursor: pointer;
889
1157
  }
890
1158
 
891
- .dateTime-module__medium__btb_E > .dateTime-module__wrapper__zlOEC > .dateTime-module__icon__H9gzS {
892
- top: 8px;
1159
+ .menu-module__divider__kik9c {
1160
+ margin: 8px 12px;
1161
+ font-size: var(--text-overline-size);
1162
+ font-weight: var(--text-overline-weight);
1163
+ line-height: var(--text-overline-height);
1164
+ color: var(--theme-text-inactive);
1165
+ text-transform: uppercase;
1166
+ letter-spacing: var(--text-overline-letter);
1167
+ border-bottom: 1px solid var(--theme-divider);
893
1168
  }
894
1169
 
895
- .dateTime-module__small__bywih > .dateTime-module__wrapper__zlOEC > .dateTime-module__icon__H9gzS {
896
- top: 4px;
1170
+ .dateTime-module__input__p1lxx {
1171
+ cursor: pointer;
897
1172
  }
898
1173
 
899
- .dateTime-module__icon__H9gzS > svg {
900
- fill: var(--theme-icon-primary);
1174
+ .dateTime-module__input__p1lxx:disabled {
1175
+ cursor: default;
901
1176
  }
902
1177
 
903
1178
  .dateTime-module__popover-target__PS8vx {
@@ -1178,122 +1453,54 @@
1178
1453
  }
1179
1454
 
1180
1455
  .colorPicker-module__root__yWPxF {
1181
- display: flex;
1182
- flex-direction: column;
1183
- width: 100%;
1184
1456
  min-width: 162px;
1185
- max-width: 320px;
1186
- }
1187
-
1188
- .colorPicker-module__medium__zOCNs {
1189
- gap: 8px;
1190
- }
1191
-
1192
- .colorPicker-module__small___yzV2 {
1193
- gap: 4px;
1194
- }
1195
-
1196
- .colorPicker-module__label__PknU4 {
1197
- color: var(--theme-text-secondary);
1198
- }
1199
-
1200
- .colorPicker-module__wrapper__xpXkA {
1201
- position: relative;
1202
- width: 100%;
1203
- }
1204
-
1205
- .colorPicker-module__medium__zOCNs > .colorPicker-module__wrapper__xpXkA {
1206
- height: 40px;
1207
- }
1208
-
1209
- .colorPicker-module__small___yzV2 > .colorPicker-module__wrapper__xpXkA {
1210
- height: 32px;
1211
1457
  }
1212
1458
 
1213
1459
  .colorPicker-module__input__gaesN {
1214
- position: relative;
1215
- z-index: 1;
1216
- width: 100%;
1217
- font-size: var(--text-subtitle2-size);
1218
- font-weight: var(--text-subtitle2-weight);
1219
- line-height: var(--text-subtitle2-height);
1220
- color: var(--theme-text-primary);
1221
- letter-spacing: var(--text-subtitle2-letter);
1222
1460
  cursor: pointer;
1223
- outline: none;
1224
- border: none;
1225
- border-radius: 4px;
1226
- }
1227
-
1228
- .colorPicker-module__medium__zOCNs > .colorPicker-module__wrapper__xpXkA > .colorPicker-module__input__gaesN {
1229
- height: 40px;
1230
- padding: 8px 48px 8px 48px;
1231
1461
  }
1232
1462
 
1233
- .colorPicker-module__small___yzV2 > .colorPicker-module__wrapper__xpXkA > .colorPicker-module__input__gaesN {
1234
- height: 32px;
1235
- padding: 4px 48px 4px 48px;
1463
+ .colorPicker-module__input__gaesN:disabled {
1464
+ cursor: default;
1236
1465
  }
1237
1466
 
1238
- .colorPicker-module__icon__IIYmw {
1467
+ .colorPicker-module__swatch__MvnQ3 {
1239
1468
  position: absolute;
1240
- left: 16px;
1469
+ top: 50%;
1241
1470
  z-index: 2;
1242
- display: flex;
1243
- align-items: center;
1244
- justify-content: center;
1245
- width: 24px;
1246
- height: 24px;
1471
+ width: 14px;
1472
+ height: 14px;
1247
1473
  cursor: pointer;
1474
+ border-radius: 2px;
1475
+ transform: translateY(-50%);
1248
1476
  }
1249
1477
 
1250
- .colorPicker-module__medium__zOCNs > .colorPicker-module__wrapper__xpXkA > .colorPicker-module__icon__IIYmw {
1251
- top: 8px;
1252
- }
1253
-
1254
- .colorPicker-module__small___yzV2 > .colorPicker-module__wrapper__xpXkA > .colorPicker-module__icon__IIYmw {
1255
- top: 4px;
1256
- }
1257
-
1258
- .colorPicker-module__icon__IIYmw > svg {
1259
- fill: var(--theme-icon-primary);
1260
- }
1261
-
1262
- .colorPicker-module__outlined__Itbqh > .colorPicker-module__input__gaesN {
1263
- outline: 1px solid var(--theme-input-border);
1264
- background-color: transparent;
1265
- }
1266
-
1267
- .colorPicker-module__outlined__Itbqh:hover > .colorPicker-module__input__gaesN {
1268
- outline-color: var(--theme-input-border-hover);
1478
+ [data-size='small'] .colorPicker-module__swatch__MvnQ3 {
1479
+ left: 6px;
1269
1480
  }
1270
1481
 
1271
- .colorPicker-module__outlined__Itbqh > .colorPicker-module__input__gaesN:focus {
1272
- outline-color: var(--theme-focus);
1482
+ [data-size='medium'] .colorPicker-module__swatch__MvnQ3 {
1483
+ left: 8px;
1484
+ width: 16px;
1485
+ height: 16px;
1273
1486
  }
1274
1487
 
1275
- .colorPicker-module__arrow__iVl5d {
1276
- position: absolute;
1277
- right: 16px;
1278
- z-index: 2;
1279
- display: flex;
1280
- align-items: center;
1281
- justify-content: center;
1282
- width: 24px;
1283
- height: 24px;
1284
- cursor: pointer;
1488
+ [data-size='large'] .colorPicker-module__swatch__MvnQ3 {
1489
+ left: 6px;
1490
+ width: 20px;
1491
+ height: 20px;
1285
1492
  }
1286
1493
 
1287
- .colorPicker-module__medium__zOCNs > .colorPicker-module__wrapper__xpXkA > .colorPicker-module__arrow__iVl5d {
1288
- top: 8px;
1494
+ [data-size='small'] .colorPicker-module__input__gaesN {
1495
+ padding-left: 24px;
1289
1496
  }
1290
1497
 
1291
- .colorPicker-module__small___yzV2 > .colorPicker-module__wrapper__xpXkA > .colorPicker-module__arrow__iVl5d {
1292
- top: 4px;
1498
+ [data-size='medium'] .colorPicker-module__input__gaesN {
1499
+ padding-left: 28px;
1293
1500
  }
1294
1501
 
1295
- .colorPicker-module__arrow__iVl5d > svg {
1296
- fill: var(--theme-icon-primary);
1502
+ [data-size='large'] .colorPicker-module__input__gaesN {
1503
+ padding-left: 34px;
1297
1504
  }
1298
1505
 
1299
1506
  .colorPicker-module__popover-target__M5buG {
@@ -1307,233 +1514,56 @@
1307
1514
 
1308
1515
  .colorPicker-module__popover-content__lql7r {
1309
1516
  max-height: 250px;
1310
- overflow: auto scroll;
1311
- }
1312
-
1313
- .input-module__root__QfKhR {
1314
- display: flex;
1315
- flex-direction: column;
1316
- width: 100%;
1317
- max-width: 320px;
1318
- }
1319
-
1320
- .input-module__full-width__qXDHU {
1321
- max-width: 100%;
1322
- }
1323
-
1324
- .input-module__medium__TdcNA {
1325
- gap: 8px;
1326
- }
1327
-
1328
- .input-module__small__kXkJz {
1329
- gap: 4px;
1330
- }
1331
-
1332
- .input-module__label__RV8d4 {
1333
- color: var(--theme-text-secondary);
1334
- }
1335
-
1336
- .input-module__wrapper__acqQv {
1337
- position: relative;
1338
- width: 100%;
1339
- }
1340
-
1341
- .input-module__medium__TdcNA > .input-module__wrapper__acqQv {
1342
- height: 40px;
1343
- }
1344
-
1345
- .input-module__small__kXkJz > .input-module__wrapper__acqQv {
1346
- height: 32px;
1347
- }
1348
-
1349
- .input-module__input__Xce3x {
1350
- position: relative;
1351
- z-index: 1;
1352
- width: 100%;
1353
- font-size: var(--text-subtitle2-size);
1354
- font-weight: var(--text-subtitle2-weight);
1355
- line-height: var(--text-subtitle2-height);
1356
- color: var(--theme-text-primary);
1357
- letter-spacing: var(--text-subtitle2-letter);
1358
- outline: none;
1359
- border: none;
1360
- border-radius: 4px;
1361
- }
1362
-
1363
- .input-module__input__Xce3x:disabled {
1364
- color: var(--theme-text-inactive);
1365
- }
1366
-
1367
- .input-module__input__Xce3x[type='number'] {
1368
- -moz-appearance: textfield;
1369
- appearance: textfield;
1370
- }
1371
-
1372
- .input-module__input__Xce3x[type='number']::-webkit-inner-spin-button,
1373
- .input-module__input__Xce3x[type='number']::-webkit-outer-spin-button {
1374
- margin: 0;
1375
- -webkit-appearance: none;
1376
- }
1377
-
1378
- .input-module__medium__TdcNA > .input-module__wrapper__acqQv > .input-module__input__Xce3x {
1379
- height: 40px;
1380
- padding: 8px 16px 8px 16px;
1381
- }
1382
-
1383
- .input-module__small__kXkJz > .input-module__wrapper__acqQv > .input-module__input__Xce3x {
1384
- height: 32px;
1385
- padding: 4px 16px 4px 16px;
1386
- }
1387
-
1388
- .input-module__filled___69P0 > .input-module__input__Xce3x {
1389
- background-color: var(--theme-input-filled);
1390
- }
1391
-
1392
- .input-module__filled___69P0:hover > .input-module__input__Xce3x:not(:disabled):not(:focus) {
1393
- background-color: var(--theme-input-filled-hover);
1394
- }
1395
-
1396
- .input-module__filled___69P0 > .input-module__input__Xce3x:focus {
1397
- background-color: var(--theme-input-filled-hover);
1398
- }
1399
-
1400
- .input-module__outlined___LdLU > .input-module__input__Xce3x {
1401
- outline: 1px solid var(--theme-input-border);
1402
- background-color: transparent;
1403
- }
1404
-
1405
- .input-module__outlined___LdLU:hover > .input-module__input__Xce3x:not(:disabled):not(:focus) {
1406
- outline-color: var(--theme-input-border-hover);
1407
- }
1408
-
1409
- .input-module__outlined___LdLU > .input-module__input__Xce3x:focus {
1410
- outline-color: var(--theme-focus);
1411
- }
1412
-
1413
- .input-module__file-input__Hj1fC {
1414
- position: absolute;
1415
- width: 0;
1416
- height: 0;
1417
- pointer-events: none;
1418
- opacity: 0;
1419
- }
1420
-
1421
- .input-module__file-display__GKw0F {
1422
- box-sizing: border-box;
1423
- display: flex;
1424
- align-items: center;
1425
- cursor: pointer;
1426
- -webkit-user-select: none;
1427
- user-select: none;
1428
- }
1429
-
1430
- .input-module__file-name__AVwRH {
1431
- flex: 1;
1432
- overflow: hidden;
1433
- text-overflow: ellipsis;
1434
- color: var(--theme-text-primary);
1435
- white-space: nowrap;
1436
- }
1437
-
1438
- .input-module__file-name__AVwRH.input-module__placeholder__QpTXt {
1439
- color: var(--theme-text-inactive);
1440
- }
1441
-
1442
- .input-module__file-display__GKw0F > .input-module__attach-icon__W3URr {
1443
- flex-shrink: 0;
1444
- margin-left: 8px;
1445
- color: var(--theme-text-secondary);
1446
- }
1447
-
1448
- .searchInput-module__root__WAhkl {
1449
- position: relative;
1450
- width: 100%;
1451
- max-width: 320px;
1452
- }
1453
-
1454
- .searchInput-module__medium__ypAHh {
1455
- height: 40px;
1456
- }
1457
-
1458
- .searchInput-module__small__JmU0u {
1459
- height: 32px;
1460
- }
1461
-
1462
- .searchInput-module__input__gX5Td {
1463
- position: relative;
1464
- z-index: 1;
1465
- width: 100%;
1466
- font-size: var(--text-subtitle2-size);
1467
- font-weight: var(--text-subtitle2-weight);
1468
- line-height: var(--text-subtitle2-height);
1469
- color: var(--theme-text-primary);
1470
- letter-spacing: var(--text-subtitle2-letter);
1471
- outline: none;
1472
- border: none;
1473
- border-radius: 4px;
1474
- }
1475
-
1476
- .searchInput-module__medium__ypAHh > .searchInput-module__input__gX5Td {
1477
- height: 40px;
1478
- padding: 8px 16px;
1479
- }
1480
-
1481
- .searchInput-module__small__JmU0u > .searchInput-module__input__gX5Td {
1482
- height: 32px;
1483
- padding: 4px 16px;
1484
- }
1485
-
1486
- .searchInput-module__with-icon__fx4_g > .searchInput-module__input__gX5Td {
1487
- padding-left: 48px;
1488
- }
1489
-
1490
- .searchInput-module__icon__zHTol {
1491
- position: absolute;
1492
- left: 16px;
1493
- z-index: 2;
1494
- display: flex;
1495
- align-items: center;
1496
- justify-content: center;
1497
- width: 24px;
1498
- height: 24px;
1499
- cursor: text;
1500
- }
1501
-
1502
- .searchInput-module__medium__ypAHh > .searchInput-module__icon__zHTol {
1503
- top: 8px;
1504
1517
  }
1505
1518
 
1506
- .searchInput-module__small__JmU0u > .searchInput-module__icon__zHTol {
1507
- top: 4px;
1519
+ .input-module__input__Xce3x[type='number'] {
1520
+ -moz-appearance: textfield;
1521
+ appearance: textfield;
1508
1522
  }
1509
1523
 
1510
- .searchInput-module__icon__zHTol > svg {
1511
- fill: var(--theme-icon-primary);
1524
+ .input-module__input__Xce3x[type='number']::-webkit-inner-spin-button,
1525
+ .input-module__input__Xce3x[type='number']::-webkit-outer-spin-button {
1526
+ margin: 0;
1527
+ -webkit-appearance: none;
1512
1528
  }
1513
1529
 
1514
- .searchInput-module__filled__bFEEy > .searchInput-module__input__gX5Td {
1515
- background-color: var(--theme-input-filled);
1530
+ .input-module__field-icon__OVtdo {
1531
+ cursor: text;
1516
1532
  }
1517
1533
 
1518
- .searchInput-module__filled__bFEEy:hover > .searchInput-module__input__gX5Td {
1519
- background-color: var(--theme-input-filled-hover);
1534
+ .input-module__file-input__Hj1fC {
1535
+ position: absolute;
1536
+ width: 0;
1537
+ height: 0;
1538
+ pointer-events: none;
1539
+ opacity: 0;
1520
1540
  }
1521
1541
 
1522
- .searchInput-module__filled__bFEEy > .searchInput-module__input__gX5Td:focus {
1523
- background-color: var(--theme-input-filled-hover);
1542
+ .input-module__file-display__GKw0F {
1543
+ box-sizing: border-box;
1544
+ display: flex;
1545
+ align-items: center;
1546
+ cursor: pointer;
1547
+ -webkit-user-select: none;
1548
+ user-select: none;
1524
1549
  }
1525
1550
 
1526
- .searchInput-module__outlined__x5bUA > .searchInput-module__input__gX5Td {
1527
- outline: 1px solid var(--theme-input-border);
1528
- background-color: transparent;
1551
+ .input-module__file-name__AVwRH {
1552
+ flex: 1;
1553
+ overflow: hidden;
1554
+ text-overflow: ellipsis;
1555
+ color: var(--theme-text-primary);
1556
+ white-space: nowrap;
1529
1557
  }
1530
1558
 
1531
- .searchInput-module__outlined__x5bUA:hover > .searchInput-module__input__gX5Td {
1532
- outline-color: var(--theme-input-border-hover);
1559
+ .input-module__file-name__AVwRH.input-module__placeholder__QpTXt {
1560
+ color: var(--theme-text-inactive);
1533
1561
  }
1534
1562
 
1535
- .searchInput-module__outlined__x5bUA > .searchInput-module__input__gX5Td:focus {
1536
- outline-color: var(--theme-focus);
1563
+ .input-module__file-display__GKw0F > .input-module__attach-icon__W3URr {
1564
+ flex-shrink: 0;
1565
+ margin-left: 8px;
1566
+ color: var(--theme-text-secondary);
1537
1567
  }
1538
1568
 
1539
1569
  .wrapForLabel-module__root__qo0J8 {
@@ -1551,242 +1581,132 @@
1551
1581
  margin-top: 20px;
1552
1582
  }
1553
1583
 
1554
- .multiSelect-module__root__J3jt6 {
1555
- display: flex;
1556
- flex-direction: column;
1557
- width: 100%;
1558
- max-width: 320px;
1559
- }
1560
-
1561
- .multiSelect-module__full-width__LexBp {
1562
- max-width: 100%;
1563
- }
1564
-
1565
- .multiSelect-module__medium__BTgaQ {
1566
- gap: 8px;
1567
- }
1568
-
1569
- .multiSelect-module__small__l60qu {
1570
- gap: 4px;
1571
- }
1572
-
1573
- .multiSelect-module__label__hATiI {
1574
- color: var(--theme-text-secondary);
1575
- }
1584
+ /* Специфика MultiSelect: кнопка очистки, кастомная иконка слева, попап с чеклистом.
1585
+ Общая геометрия и состояния — в FieldShell. */
1576
1586
 
1577
1587
  .multiSelect-module__label-selected-count__gCPqL {
1578
1588
  color: var(--theme-text-secondary);
1579
1589
  }
1580
1590
 
1581
- .multiSelect-module__wrapper__lHCC4 {
1582
- position: relative;
1583
- width: 100%;
1584
- }
1585
-
1586
- .multiSelect-module__medium__BTgaQ > .multiSelect-module__wrapper__lHCC4 {
1587
- height: 40px;
1591
+ .multiSelect-module__input__Hk3TU {
1592
+ cursor: pointer;
1588
1593
  }
1589
1594
 
1590
- .multiSelect-module__small__l60qu > .multiSelect-module__wrapper__lHCC4 {
1591
- height: 32px;
1595
+ .multiSelect-module__input__Hk3TU:disabled {
1596
+ pointer-events: none;
1597
+ cursor: default;
1598
+ -webkit-user-select: none;
1599
+ user-select: none;
1592
1600
  }
1593
1601
 
1594
- .multiSelect-module__input__Hk3TU {
1595
- position: relative;
1596
- z-index: 1;
1597
- width: 100%;
1598
- overflow: hidden;
1599
- text-overflow: ellipsis;
1600
- font-size: var(--text-subtitle2-size);
1601
- font-weight: var(--text-subtitle2-weight);
1602
- line-height: var(--text-subtitle2-height);
1603
- color: var(--theme-text-primary);
1604
- letter-spacing: var(--text-subtitle2-letter);
1605
- white-space: nowrap;
1606
- cursor: pointer;
1607
- outline: none;
1608
- border: none;
1609
- border-radius: 4px;
1602
+ /* Справа два элемента (очистка + стрелка) — расширяем отступ поля и чипсов */
1603
+ [data-size='small'] .multiSelect-module__input__Hk3TU {
1604
+ padding-right: 50px;
1610
1605
  }
1611
1606
 
1612
- .multiSelect-module__medium__BTgaQ > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__input__Hk3TU {
1613
- height: 40px;
1614
- padding: 8px 70px 8px 16px;
1607
+ [data-size='medium'] .multiSelect-module__input__Hk3TU {
1608
+ padding-right: 56px;
1615
1609
  }
1616
1610
 
1617
- .multiSelect-module__small__l60qu > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__input__Hk3TU {
1618
- height: 32px;
1619
- padding: 4px 70px 4px 16px;
1611
+ [data-size='large'] .multiSelect-module__input__Hk3TU {
1612
+ padding-right: 64px;
1620
1613
  }
1621
1614
 
1622
- .multiSelect-module__with-icon__eaSrD > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__input__Hk3TU {
1623
- padding-left: 48px;
1615
+ [data-size='small'] .multiSelect-module__chips__CUViE {
1616
+ padding-right: 50px;
1624
1617
  }
1625
1618
 
1626
- .multiSelect-module__with-item-icon__LfhcF > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__input__Hk3TU {
1627
- padding-left: 48px;
1619
+ [data-size='medium'] .multiSelect-module__chips__CUViE {
1620
+ padding-right: 56px;
1628
1621
  }
1629
1622
 
1630
- .multiSelect-module__with-icon__eaSrD.multiSelect-module__with-item-icon__LfhcF > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__input__Hk3TU {
1631
- padding-left: 80px;
1623
+ [data-size='large'] .multiSelect-module__chips__CUViE {
1624
+ padding-right: 64px;
1632
1625
  }
1633
1626
 
1627
+ /* Кастомная иконка в левом слоте */
1634
1628
  .multiSelect-module__icon__TnLPX {
1635
1629
  position: absolute;
1636
- left: 16px;
1630
+ top: 50%;
1637
1631
  z-index: 2;
1638
1632
  display: flex;
1639
1633
  align-items: center;
1640
1634
  justify-content: center;
1641
- width: 24px;
1642
- height: 24px;
1635
+ width: 20px;
1636
+ height: 20px;
1643
1637
  cursor: pointer;
1638
+ transform: translateY(-50%);
1644
1639
  }
1645
1640
 
1646
- .multiSelect-module__medium__BTgaQ > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__icon__TnLPX {
1647
- top: 8px;
1648
- }
1649
-
1650
- .multiSelect-module__small__l60qu > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__icon__TnLPX {
1651
- top: 4px;
1641
+ [data-size='small'] .multiSelect-module__icon__TnLPX {
1642
+ left: 6px;
1652
1643
  }
1653
1644
 
1654
- .multiSelect-module__icon__TnLPX > svg {
1655
- fill: var(--theme-icon-primary);
1645
+ [data-size='medium'] .multiSelect-module__icon__TnLPX {
1646
+ left: 8px;
1656
1647
  }
1657
1648
 
1658
- .multiSelect-module__item-icon__TRHVT {
1659
- position: absolute;
1660
- left: 16px;
1661
- z-index: 2;
1662
- display: flex;
1663
- align-items: center;
1664
- justify-content: center;
1649
+ [data-size='large'] .multiSelect-module__icon__TnLPX {
1650
+ left: 4px;
1665
1651
  width: 24px;
1666
1652
  height: 24px;
1667
- cursor: pointer;
1668
- }
1669
-
1670
- .multiSelect-module__icon__TnLPX + .multiSelect-module__item-icon__TRHVT {
1671
- left: 48px;
1672
- }
1673
-
1674
- .multiSelect-module__medium__BTgaQ > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__item-icon__TRHVT {
1675
- top: 8px;
1676
- }
1677
-
1678
- .multiSelect-module__small__l60qu > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__item-icon__TRHVT {
1679
- top: 4px;
1680
1653
  }
1681
1654
 
1682
- .multiSelect-module__item-icon__TRHVT > svg {
1655
+ .multiSelect-module__icon__TnLPX > svg {
1656
+ width: 100%;
1657
+ height: 100%;
1683
1658
  fill: var(--theme-icon-primary);
1684
1659
  }
1685
1660
 
1686
- .multiSelect-module__filled__Hz9me > .multiSelect-module__input__Hk3TU {
1687
- background-color: var(--theme-input-filled);
1688
- }
1689
-
1690
- .multiSelect-module__filled__Hz9me:hover > .multiSelect-module__input__Hk3TU {
1691
- background-color: var(--theme-input-filled-hover);
1692
- }
1693
-
1694
- .multiSelect-module__filled__Hz9me > .multiSelect-module__input__Hk3TU:focus {
1695
- background-color: var(--theme-input-filled-hover);
1696
- }
1697
-
1698
- .multiSelect-module__outlined__PSPU8 > .multiSelect-module__input__Hk3TU {
1699
- outline: 1px solid var(--theme-input-border);
1700
- background-color: transparent;
1701
- }
1702
-
1703
- .multiSelect-module__outlined__PSPU8:hover > .multiSelect-module__input__Hk3TU {
1704
- outline-color: var(--theme-input-border-hover);
1705
- }
1706
-
1707
- .multiSelect-module__outlined__PSPU8 > .multiSelect-module__input__Hk3TU:focus {
1708
- outline-color: var(--theme-focus);
1709
- }
1710
-
1661
+ /* Кнопка очистки выбранного */
1711
1662
  .multiSelect-module__clear__CwQiH {
1712
1663
  position: absolute;
1713
- right: 40px;
1664
+ top: 50%;
1714
1665
  z-index: 2;
1715
1666
  display: flex;
1716
1667
  align-items: center;
1717
1668
  justify-content: center;
1718
- width: 26px;
1719
- height: 26px;
1669
+ width: 20px;
1670
+ height: 20px;
1720
1671
  cursor: pointer;
1721
- border-radius: 12px;
1672
+ border-radius: 50%;
1673
+ transform: translateY(-50%);
1722
1674
  }
1675
+
1723
1676
  .multiSelect-module__clear__CwQiH:hover {
1724
1677
  background-color: var(--theme-icon-hover);
1725
1678
  }
1726
1679
 
1727
1680
  .multiSelect-module__clear__CwQiH > svg {
1681
+ width: 16px;
1682
+ height: 16px;
1728
1683
  fill: var(--theme-icon-primary);
1729
1684
  }
1730
1685
 
1731
- .multiSelect-module__medium__BTgaQ > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__clear__CwQiH {
1732
- top: 6px;
1686
+ [data-size='small'] .multiSelect-module__clear__CwQiH {
1687
+ right: 26px;
1733
1688
  }
1734
1689
 
1735
- .multiSelect-module__small__l60qu > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__clear__CwQiH {
1736
- top: 2px;
1690
+ [data-size='medium'] .multiSelect-module__clear__CwQiH {
1691
+ right: 32px;
1737
1692
  }
1738
1693
 
1739
- .multiSelect-module__arrow__jafPv {
1740
- position: absolute;
1741
- right: 16px;
1742
- z-index: 2;
1743
- display: flex;
1744
- align-items: center;
1745
- justify-content: center;
1694
+ [data-size='large'] .multiSelect-module__clear__CwQiH {
1695
+ right: 32px;
1746
1696
  width: 24px;
1747
1697
  height: 24px;
1748
- cursor: pointer;
1749
- }
1750
-
1751
- .multiSelect-module__medium__BTgaQ > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__arrow__jafPv {
1752
- top: 8px;
1753
1698
  }
1754
1699
 
1755
- .multiSelect-module__small__l60qu > .multiSelect-module__wrapper__lHCC4 > .multiSelect-module__arrow__jafPv {
1756
- top: 4px;
1757
- }
1758
-
1759
- .multiSelect-module__arrow__jafPv > svg {
1760
- fill: var(--theme-icon-primary);
1700
+ [data-size='large'] .multiSelect-module__clear__CwQiH > svg {
1701
+ width: 20px;
1702
+ height: 20px;
1761
1703
  }
1762
1704
 
1763
1705
  .multiSelect-module__popover-target__x51qe {
1764
1706
  position: absolute;
1765
- bottom: 0;
1766
- left: 0;
1707
+ inset: 0;
1767
1708
  z-index: 1;
1768
- width: 100%;
1769
- height: 0;
1770
- }
1771
-
1772
- .multiSelect-module__input__Hk3TU:disabled,
1773
- .multiSelect-module__input__Hk3TU[disabled],
1774
- .multiSelect-module__input__Hk3TU:disabled + .multiSelect-module__arrow__jafPv,
1775
- .multiSelect-module__input__Hk3TU[disabled] + .multiSelect-module__arrow__jafPv {
1776
- color: var(--theme-text-inactive);
1777
1709
  pointer-events: none;
1778
- -webkit-user-select: none;
1779
- user-select: none;
1780
- }
1781
-
1782
- .multiSelect-module__outlined__PSPU8:hover > .multiSelect-module__input__Hk3TU:disabled,
1783
- .multiSelect-module__outlined__PSPU8:hover > .multiSelect-module__input__Hk3TU.multiSelect-module__input__Hk3TU[disabled] {
1784
- outline-color: var(--theme-input-border);
1785
- }
1786
-
1787
- .multiSelect-module__filled__Hz9me .multiSelect-module__input__Hk3TU:disabled,
1788
- .multiSelect-module__filled__Hz9me .multiSelect-module__input__Hk3TU[disabled] {
1789
- background-color: var(--theme-grey-700);
1790
1710
  }
1791
1711
 
1792
1712
  .multiSelect-module__popover-content__p_jyb {
@@ -2731,9 +2651,9 @@
2731
2651
  .card-module__root__uGlLT {
2732
2652
  display: flex;
2733
2653
  flex-direction: column;
2734
- gap: 16px;
2654
+ gap: 0;
2735
2655
  height: 100%;
2736
- padding: 16px;
2656
+ padding: 0;
2737
2657
  border-radius: 4px;
2738
2658
  }
2739
2659
 
@@ -2742,6 +2662,12 @@
2742
2662
  gap: 16px;
2743
2663
  align-items: center;
2744
2664
  justify-content: space-between;
2665
+ padding: 16px;
2666
+ background-color: var(--theme-overlay-4);
2667
+ }
2668
+
2669
+ .card-module__root__uGlLT.card-module__small__liJkd .card-module__header__NdV6G {
2670
+ padding: 8px 8px 4px 8px;
2745
2671
  }
2746
2672
 
2747
2673
  .card-module__actions__ctfFt {
@@ -2750,102 +2676,116 @@
2750
2676
  align-items: center;
2751
2677
  }
2752
2678
 
2753
- .chip-module__root__QN7P0 {
2679
+ .card-module__body__P4SYk {
2754
2680
  padding: 0;
2681
+ }
2682
+
2683
+ .chip-module__root__QN7P0 {
2684
+ display: inline-flex;
2685
+ flex-shrink: 0;
2686
+ gap: 6px;
2687
+ align-items: center;
2688
+ min-width: 0;
2689
+ max-width: 100%;
2755
2690
  overflow: hidden;
2756
- font-size: var(--text-button-size);
2757
- font-weight: var(--text-button-weight);
2758
- line-height: var(--text-button-height);
2759
- letter-spacing: var(--text-button-letter);
2691
+ font-size: 14px;
2692
+ font-weight: 400;
2693
+ line-height: 20px;
2694
+ color: var(--theme-text-primary);
2695
+ letter-spacing: 0.25px;
2760
2696
  -webkit-user-select: none;
2761
2697
  user-select: none;
2762
- outline: none;
2763
- border-radius: 9999px;
2698
+ border-radius: 16px;
2764
2699
  }
2765
2700
 
2766
- .chip-module__state-layer__AGbiC {
2767
- display: inline-flex;
2768
- flex-direction: row;
2769
- gap: 8px;
2770
- align-items: center;
2771
- justify-content: center;
2772
- width: 100%;
2773
- background-color: transparent;
2701
+ .chip-module__medium__RRnyf {
2702
+ height: 32px;
2703
+ padding: 4px 12px;
2774
2704
  }
2775
2705
 
2776
- .chip-module__root__QN7P0:hover > .chip-module__state-layer__AGbiC {
2777
- background-color: var(--theme-overlay-8);
2706
+ .chip-module__medium__RRnyf.chip-module__with-icon__ORESD.chip-module__icon-left__LhniG {
2707
+ padding: 4px 12px 4px 4px;
2778
2708
  }
2779
2709
 
2780
- .chip-module__root__QN7P0:focus > .chip-module__state-layer__AGbiC {
2781
- background-color: var(--theme-overlay-12);
2710
+ .chip-module__medium__RRnyf.chip-module__with-icon__ORESD.chip-module__icon-right__CnqJ6 {
2711
+ padding: 4px 4px 4px 12px;
2782
2712
  }
2783
2713
 
2784
- .chip-module__root__QN7P0:active > .chip-module__state-layer__AGbiC,
2785
- .chip-module__root__QN7P0.chip-module__active__wQcQS > .chip-module__state-layer__AGbiC {
2786
- background-color: var(--theme-overlay-12);
2714
+ .chip-module__small__UbquU {
2715
+ height: 24px;
2716
+ padding: 2px 8px;
2717
+ font-size: 12px;
2718
+ line-height: 16px;
2719
+ letter-spacing: normal;
2787
2720
  }
2788
2721
 
2789
- .chip-module__filled__LKP4O {
2790
- color: var(--theme-text-button-invert);
2791
- background-color: var(--theme-focus);
2722
+ .chip-module__small__UbquU.chip-module__with-icon__ORESD.chip-module__icon-left__LhniG {
2723
+ padding: 2px 8px 2px 2px;
2792
2724
  }
2793
2725
 
2794
- .chip-module__outlined__HHje4 {
2795
- color: var(--theme-focus);
2796
- outline: 1px solid var(--theme-grey-500);
2797
- background-color: transparent;
2726
+ .chip-module__small__UbquU.chip-module__with-icon__ORESD.chip-module__icon-right__CnqJ6 {
2727
+ padding: 2px 2px 2px 8px;
2798
2728
  }
2799
2729
 
2800
- .chip-module__outlined__HHje4:focus {
2801
- outline-color: var(--theme-focus);
2730
+ .chip-module__filled__LKP4O {
2731
+ background-color: var(--theme-chip-accent-bg);
2802
2732
  }
2803
2733
 
2804
- .chip-module__filled__LKP4O.chip-module__secondary__yquCM {
2805
- color: var(--theme-text-button-primary);
2806
- background-color: var(--theme-overlay-12);
2734
+ .chip-module__filled__LKP4O.chip-module__clickable__dOcCr:hover {
2735
+ background-color: var(--theme-chip-accent-hover);
2807
2736
  }
2808
2737
 
2809
- .chip-module__outlined__HHje4.chip-module__secondary__yquCM {
2810
- color: var(--theme-text-secondary);
2738
+ .chip-module__filled__LKP4O.chip-module__clickable__dOcCr:focus-visible {
2739
+ outline: none;
2740
+ background-color: var(--theme-chip-accent-focus);
2811
2741
  }
2812
2742
 
2813
- .chip-module__clickable__dOcCr {
2814
- cursor: pointer;
2743
+ .chip-module__filled__LKP4O.chip-module__clickable__dOcCr:active {
2744
+ background-color: var(--theme-chip-accent-active);
2815
2745
  }
2816
2746
 
2817
- .chip-module__medium__RRnyf,
2818
- .chip-module__medium__RRnyf > .chip-module__state-layer__AGbiC {
2819
- height: 32px;
2747
+ .chip-module__filled__LKP4O.chip-module__secondary__yquCM {
2748
+ background-color: var(--theme-chip-subtle-bg);
2820
2749
  }
2821
2750
 
2822
- .chip-module__small__UbquU,
2823
- .chip-module__small__UbquU > .chip-module__state-layer__AGbiC {
2824
- height: 24px;
2751
+ .chip-module__filled__LKP4O.chip-module__secondary__yquCM.chip-module__clickable__dOcCr:hover {
2752
+ background-color: var(--theme-chip-subtle-hover);
2825
2753
  }
2826
2754
 
2827
- .chip-module__medium__RRnyf > .chip-module__state-layer__AGbiC {
2828
- padding: 0 16px;
2755
+ .chip-module__filled__LKP4O.chip-module__secondary__yquCM.chip-module__clickable__dOcCr:focus-visible {
2756
+ background-color: var(--theme-chip-subtle-focus);
2829
2757
  }
2830
2758
 
2831
- .chip-module__small__UbquU > .chip-module__state-layer__AGbiC {
2832
- padding: 0 12px;
2759
+ .chip-module__outlined__HHje4 {
2760
+ outline: 1px solid var(--theme-input-border);
2761
+ outline-offset: -1px;
2762
+ background-color: transparent;
2763
+ }
2764
+
2765
+ .chip-module__outlined__HHje4.chip-module__clickable__dOcCr:hover {
2766
+ outline-color: var(--theme-input-border-hover);
2767
+ background-color: var(--theme-selection-hover);
2833
2768
  }
2834
2769
 
2835
- .chip-module__medium__RRnyf.chip-module__with-icon__ORESD > .chip-module__state-layer__AGbiC {
2836
- padding: 0 4px 0 16px;
2770
+ .chip-module__outlined__HHje4.chip-module__clickable__dOcCr:focus-visible {
2771
+ outline: 2px solid var(--theme-focus);
2772
+ outline-offset: -2px;
2837
2773
  }
2838
2774
 
2839
- .chip-module__small__UbquU.chip-module__with-icon__ORESD > .chip-module__state-layer__AGbiC {
2840
- padding: 0 4px 0 12px;
2775
+ .chip-module__outlined__HHje4.chip-module__secondary__yquCM {
2776
+ color: var(--theme-text-secondary);
2841
2777
  }
2842
2778
 
2843
- .chip-module__medium__RRnyf.chip-module__with-icon__ORESD.chip-module__icon-left__LhniG > .chip-module__state-layer__AGbiC {
2844
- padding: 0 16px 0 4px;
2779
+ .chip-module__clickable__dOcCr {
2780
+ cursor: pointer;
2845
2781
  }
2846
2782
 
2847
- .chip-module__small__UbquU.chip-module__with-icon__ORESD.chip-module__icon-left__LhniG > .chip-module__state-layer__AGbiC {
2848
- padding: 0 12px 0 4px;
2783
+ .chip-module__label__RySGy {
2784
+ flex: 1 1 auto;
2785
+ min-width: 0;
2786
+ overflow: hidden;
2787
+ text-overflow: ellipsis;
2788
+ white-space: nowrap;
2849
2789
  }
2850
2790
 
2851
2791
  .chip-module__icon__yybCP {
@@ -2860,11 +2800,10 @@
2860
2800
  background: none;
2861
2801
  border: none;
2862
2802
  border-radius: 50%;
2863
- transition: background-color 0.2s;
2864
2803
  }
2865
2804
 
2866
- .chip-module__icon__yybCP.chip-module__icon-clickable__BPoAa {
2867
- cursor: pointer;
2805
+ .chip-module__icon-right-slot__p8bmk {
2806
+ margin-left: auto;
2868
2807
  }
2869
2808
 
2870
2809
  .chip-module__medium__RRnyf .chip-module__icon__yybCP {
@@ -2877,30 +2816,26 @@
2877
2816
  height: 18px;
2878
2817
  }
2879
2818
 
2880
- .chip-module__icon__yybCP.chip-module__icon-clickable__BPoAa:hover {
2881
- background-color: var(--theme-overlay-8);
2882
- }
2883
-
2884
- .chip-module__icon__yybCP.chip-module__icon-clickable__BPoAa:focus {
2885
- background-color: var(--theme-overlay-12);
2819
+ .chip-module__icon__yybCP > svg {
2820
+ width: 100%;
2821
+ height: 100%;
2822
+ fill: currentcolor;
2886
2823
  }
2887
2824
 
2888
- .chip-module__icon__yybCP.chip-module__icon-clickable__BPoAa:active {
2889
- background-color: var(--theme-overlay-12);
2825
+ .chip-module__icon-clickable__BPoAa {
2826
+ cursor: pointer;
2890
2827
  }
2891
2828
 
2892
- .chip-module__label__RySGy {
2893
- display: inline-flex;
2894
- align-items: center;
2895
- white-space: nowrap;
2829
+ .chip-module__icon-clickable__BPoAa:hover {
2830
+ background-color: var(--theme-icon-hover);
2896
2831
  }
2897
2832
 
2898
- .chip-module__icon-left__LhniG .chip-module__icon__yybCP {
2899
- order: -1;
2833
+ .chip-module__icon-clickable__BPoAa:focus-visible {
2834
+ background-color: var(--theme-icon-hover-on-selected);
2900
2835
  }
2901
2836
 
2902
- .chip-module__icon-right__CnqJ6 .chip-module__icon__yybCP {
2903
- order: 1;
2837
+ .chip-module__icon-clickable__BPoAa:active {
2838
+ background-color: var(--theme-icon-hover-on-selected);
2904
2839
  }
2905
2840
 
2906
2841