@retailcrm/embed-ui-v1-components 0.9.14 → 0.9.15

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 (74) hide show
  1. package/AGENTS.md +126 -0
  2. package/README.md +24 -0
  3. package/assets/stylesheets/palette.less +11 -6
  4. package/bin/embed-ui-v1-components.mjs +209 -0
  5. package/bin/postinstall.mjs +37 -0
  6. package/dist/host.cjs +1899 -590
  7. package/dist/host.css +659 -6
  8. package/dist/host.d.ts +2374 -50
  9. package/dist/host.js +1900 -591
  10. package/dist/remote.cjs +610 -33
  11. package/dist/remote.d.ts +729 -48
  12. package/dist/remote.js +612 -35
  13. package/docs/AI.md +106 -0
  14. package/docs/COMPONENTS.md +96 -0
  15. package/docs/FORMAT.md +248 -0
  16. package/docs/PROFILES.md +64 -0
  17. package/docs/README.md +65 -0
  18. package/docs/STYLING.md +156 -0
  19. package/docs/profiles/UiAddButton.yml +45 -0
  20. package/docs/profiles/UiAlert.yml +36 -0
  21. package/docs/profiles/UiAvatar.yml +36 -0
  22. package/docs/profiles/UiAvatarList.yml +30 -0
  23. package/docs/profiles/UiButton.yml +221 -0
  24. package/docs/profiles/UiCalendar.yml +36 -0
  25. package/docs/profiles/UiCheckbox.yml +41 -0
  26. package/docs/profiles/UiCollapse.yml +28 -0
  27. package/docs/profiles/UiCollapseBox.yml +39 -0
  28. package/docs/profiles/UiCollapseGroup.yml +27 -0
  29. package/docs/profiles/UiCopyButton.yml +40 -0
  30. package/docs/profiles/UiDate.yml +26 -0
  31. package/docs/profiles/UiDatePicker.yml +47 -0
  32. package/docs/profiles/UiError.yml +20 -0
  33. package/docs/profiles/UiField.yml +229 -0
  34. package/docs/profiles/UiImage.yml +27 -0
  35. package/docs/profiles/UiInfobox.yml +33 -0
  36. package/docs/profiles/UiLink.yml +39 -0
  37. package/docs/profiles/UiLoader.yml +26 -0
  38. package/docs/profiles/UiMenuItem.yml +45 -0
  39. package/docs/profiles/UiMenuItemGroup.yml +38 -0
  40. package/docs/profiles/UiModalSidebar.yml +34 -0
  41. package/docs/profiles/UiModalWindow.yml +32 -0
  42. package/docs/profiles/UiModalWindowSurface.yml +29 -0
  43. package/docs/profiles/UiNumberStepper.yml +40 -0
  44. package/docs/profiles/UiPageHeader.yml +240 -0
  45. package/docs/profiles/UiPopper.yml +197 -0
  46. package/docs/profiles/UiPopperConnector.yml +109 -0
  47. package/docs/profiles/UiPopperTarget.yml +112 -0
  48. package/docs/profiles/UiRadio.yml +26 -0
  49. package/docs/profiles/UiRadioSwitch.yml +224 -0
  50. package/docs/profiles/UiRadioSwitchOption.yml +113 -0
  51. package/docs/profiles/UiScrollBox.yml +19 -0
  52. package/docs/profiles/UiSelect.yml +318 -0
  53. package/docs/profiles/UiSelectOption.yml +32 -0
  54. package/docs/profiles/UiSelectOptionGroup.yml +26 -0
  55. package/docs/profiles/UiSlider.yml +26 -0
  56. package/docs/profiles/UiSwitch.yml +25 -0
  57. package/docs/profiles/UiTab.yml +114 -0
  58. package/docs/profiles/UiTabGroup.yml +233 -0
  59. package/docs/profiles/UiTable.yml +148 -0
  60. package/docs/profiles/UiTableBodyCell.yml +35 -0
  61. package/docs/profiles/UiTableColumn.yml +38 -0
  62. package/docs/profiles/UiTableFooterButton.yml +32 -0
  63. package/docs/profiles/UiTableFooterSection.yml +26 -0
  64. package/docs/profiles/UiTableHeadCell.yml +32 -0
  65. package/docs/profiles/UiTableSorter.yml +33 -0
  66. package/docs/profiles/UiTag.yml +29 -0
  67. package/docs/profiles/UiTextbox.yml +388 -0
  68. package/docs/profiles/UiTimePicker.yml +34 -0
  69. package/docs/profiles/UiToolbarButton.yml +25 -0
  70. package/docs/profiles/UiToolbarLink.yml +20 -0
  71. package/docs/profiles/UiTooltip.yml +31 -0
  72. package/docs/profiles/UiTransition.yml +15 -0
  73. package/docs/profiles/UiYandexMap.yml +17 -0
  74. package/package.json +7 -2
package/dist/host.css CHANGED
@@ -2016,7 +2016,8 @@
2016
2016
  .ui-v1-menu-item__inner_centered {
2017
2017
  align-items: center;
2018
2018
  }
2019
- .ui-v1-menu-item__inner:not(.ui-v1-menu-item__inner_disabled):hover {
2019
+ .ui-v1-menu-item:not(.ui-v1-menu-item_disabled) .ui-v1-menu-item__inner:hover,
2020
+ .ui-v1-menu-item:not(.ui-v1-menu-item_disabled) .ui-v1-menu-item__inner:focus-visible {
2020
2021
  background: var(--ui-v1-menu-item-background-color);
2021
2022
  }
2022
2023
  .ui-v1-menu-item__add-icon {
@@ -2029,18 +2030,18 @@
2029
2030
  .ui-v1-menu-item__add-icon {
2030
2031
  color: #005EEB;
2031
2032
  }
2032
- .ui-v1-menu-item:active .ui-v1-menu-item__inner,
2033
- .ui-v1-menu-item_active .ui-v1-menu-item__inner {
2033
+ .ui-v1-menu-item:not(.ui-v1-menu-item_disabled):active .ui-v1-menu-item__inner,
2034
+ .ui-v1-menu-item_active:not(.ui-v1-menu-item_disabled) .ui-v1-menu-item__inner {
2034
2035
  background: var(--ui-v1-menu-item-background-color);
2035
2036
  border: 1px solid var(--ui-v1-menu-item-main-color);
2036
2037
  }
2037
- .ui-v1-menu-item__inner:not(.ui-v1-menu-item__inner_disabled):hover .ui-v1-menu-item__icon_leading {
2038
+ .ui-v1-menu-item:not(.ui-v1-menu-item_disabled) .ui-v1-menu-item__inner:hover .ui-v1-menu-item__icon_leading {
2038
2039
  color: var(--ui-v1-menu-item-main-color);
2039
2040
  }
2040
- .ui-v1-menu-item__inner:not(.ui-v1-menu-item__inner_disabled):hover .ui-v1-menu-item__icon_leading svg {
2041
+ .ui-v1-menu-item:not(.ui-v1-menu-item_disabled) .ui-v1-menu-item__inner:hover .ui-v1-menu-item__icon_leading svg {
2041
2042
  fill: var(--ui-v1-menu-item-main-color);
2042
2043
  }
2043
- .ui-v1-menu-item__inner:not(.ui-v1-menu-item__inner_disabled):hover .ui-v1-menu-item__ticker {
2044
+ .ui-v1-menu-item:not(.ui-v1-menu-item_disabled) .ui-v1-menu-item__inner:hover .ui-v1-menu-item__ticker {
2044
2045
  animation: ui-v1-menu-item-ticker 2s linear 0.1s infinite alternate;
2045
2046
  overflow: visible;
2046
2047
  }
@@ -3445,6 +3446,116 @@
3445
3446
  min-width: 14px;
3446
3447
  height: 14px;
3447
3448
  }
3449
+ :root {
3450
+ --ui-v1-page-header-danger-color: #FF5353;
3451
+ --ui-v1-page-header-danger-shadow-color: rgba(255, 83, 83, 0.1);
3452
+ }
3453
+ .ui-v1-page-header {
3454
+ display: flex;
3455
+ width: 100%;
3456
+ min-width: 0;
3457
+ align-items: center;
3458
+ justify-content: space-between;
3459
+ gap: 16px 32px;
3460
+ flex-wrap: wrap;
3461
+ }
3462
+ .ui-v1-page-header,
3463
+ .ui-v1-page-header *,
3464
+ .ui-v1-page-header *::before,
3465
+ .ui-v1-page-header *::after {
3466
+ box-sizing: border-box;
3467
+ }
3468
+ .ui-v1-page-header_disabled {
3469
+ opacity: 0.7;
3470
+ }
3471
+ .ui-v1-page-header_invalid {
3472
+ --ui-v1-page-header-primary-color: var(--ui-v1-page-header-danger-color);
3473
+ --ui-v1-page-header-primary-shadow-color: var(--ui-v1-page-header-danger-shadow-color);
3474
+ }
3475
+ .ui-v1-page-header_invalid .ui-v1-page-header__trigger,
3476
+ .ui-v1-page-header_invalid .ui-v1-page-header__textbox.ui-v1-textbox {
3477
+ --active-color: var(--ui-v1-page-header-danger-color);
3478
+ --shadow-color: var(--ui-v1-page-header-danger-shadow-color);
3479
+ border-bottom-color: var(--ui-v1-page-header-danger-color);
3480
+ color: var(--ui-v1-page-header-danger-color);
3481
+ }
3482
+ .ui-v1-page-header__main {
3483
+ display: flex;
3484
+ justify-content: center;
3485
+ align-items: baseline;
3486
+ gap: 16px;
3487
+ }
3488
+ .ui-v1-page-header__title {
3489
+ min-width: 0;
3490
+ flex: 0 1 auto;
3491
+ }
3492
+ .ui-v1-page-header .ui-v1-page-header__trigger,
3493
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox,
3494
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox input,
3495
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox textarea {
3496
+ width: fit-content;
3497
+ max-width: 100%;
3498
+ min-width: 12px !important;
3499
+ background-color: transparent !important;
3500
+ }
3501
+ .ui-v1-page-header .ui-v1-page-header__trigger {
3502
+ margin: 0;
3503
+ padding: 0;
3504
+ border: 0;
3505
+ background: transparent;
3506
+ color: inherit;
3507
+ white-space: nowrap;
3508
+ overflow: hidden;
3509
+ text-overflow: ellipsis;
3510
+ outline: none;
3511
+ }
3512
+ .ui-v1-page-header .ui-v1-page-header__trigger_editable {
3513
+ --border-color: #DEE2E6;
3514
+ border-bottom: 1px solid var(--border-color);
3515
+ cursor: pointer;
3516
+ }
3517
+ .ui-v1-page-header .ui-v1-page-header__trigger_editable:hover {
3518
+ --border-color: #AFB9C3;
3519
+ }
3520
+ .ui-v1-page-header .ui-v1-page-header__trigger_empty {
3521
+ color: #AFB9C3;
3522
+ }
3523
+ .ui-v1-page-header .ui-v1-page-header__trigger:focus-visible {
3524
+ border-bottom-color: var(--ui-v1-page-header-primary-color, #005EEB);
3525
+ }
3526
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox input,
3527
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox textarea {
3528
+ flex-grow: 0;
3529
+ }
3530
+ .ui-v1-page-header .ui-v1-page-header__trigger,
3531
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox,
3532
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox input,
3533
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox textarea {
3534
+ --height: 32px;
3535
+ --icon-size: 32px;
3536
+ font-size: 24px;
3537
+ font-weight: 500;
3538
+ line-height: 1.33333333;
3539
+ }
3540
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox,
3541
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox input,
3542
+ .ui-v1-page-header .ui-v1-page-header__textbox.ui-v1-textbox textarea {
3543
+ max-width: 100%;
3544
+ background-color: transparent !important;
3545
+ }
3546
+ .ui-v1-page-header__actions {
3547
+ display: inline-flex;
3548
+ align-items: center;
3549
+ gap: 16px;
3550
+ flex: 0 0 auto;
3551
+ }
3552
+ .ui-v1-page-header__addon {
3553
+ display: inline-flex;
3554
+ align-items: center;
3555
+ gap: 16px;
3556
+ min-width: 0;
3557
+ flex: 0 1 auto;
3558
+ }
3448
3559
  .ui-v1-radio {
3449
3560
  display: inline-flex;
3450
3561
  cursor: pointer;
@@ -3543,6 +3654,250 @@
3543
3654
  .ui-v1-radio_checked.ui-v1-radio_disabled .ui-v1-radio__checkmark::after {
3544
3655
  background: var(--ui-radio-disabled-color, #B8DBFF);
3545
3656
  }
3657
+ .ui-v1-radio-switch {
3658
+ display: flex;
3659
+ border: 1px solid #C7CDD4;
3660
+ }
3661
+ .ui-v1-radio-switch_borderless {
3662
+ border: none;
3663
+ flex-wrap: wrap;
3664
+ gap: 16px;
3665
+ }
3666
+ .ui-v1-radio-switch_rubber {
3667
+ display: inline-flex;
3668
+ max-width: 100%;
3669
+ }
3670
+ .ui-v1-radio-switch_sm {
3671
+ border-radius: 4px;
3672
+ }
3673
+ .ui-v1-radio-switch_md {
3674
+ border-radius: 4px;
3675
+ }
3676
+ .ui-v1-radio-switch_lg {
3677
+ border-radius: 8px;
3678
+ }
3679
+ .ui-v1-radio-switch-option {
3680
+ display: flex;
3681
+ justify-content: center;
3682
+ min-width: 0;
3683
+ background: transparent;
3684
+ color: #0052CC;
3685
+ fill: #AFB9C3;
3686
+ cursor: pointer;
3687
+ transition: background-color 0.25s ease, color 0.25s ease, border 0.25s ease;
3688
+ position: relative;
3689
+ }
3690
+ .ui-v1-radio-switch-option:focus {
3691
+ outline: none;
3692
+ box-shadow: 0 0 0 4px rgba(0, 94, 235, 0.12);
3693
+ }
3694
+ .ui-v1-radio-switch-option__head {
3695
+ display: flex;
3696
+ align-items: center;
3697
+ justify-content: center;
3698
+ max-width: 100%;
3699
+ position: relative;
3700
+ }
3701
+ .ui-v1-radio-switch-option_sm {
3702
+ height: 36px;
3703
+ border-radius: 4px;
3704
+ }
3705
+ .ui-v1-radio-switch-option_md {
3706
+ height: 54px;
3707
+ border-radius: 6px;
3708
+ }
3709
+ .ui-v1-radio-switch-option_lg {
3710
+ flex-direction: column;
3711
+ height: 88px;
3712
+ border-radius: 8px;
3713
+ }
3714
+ .ui-v1-radio-switch-option_lg .ui-v1-radio-switch-option__head {
3715
+ flex-direction: column;
3716
+ }
3717
+ .ui-v1-radio-switch-option_standalone {
3718
+ min-width: 296px;
3719
+ padding: 16px 32px;
3720
+ background-color: #F4F6F8;
3721
+ border: 2px solid transparent;
3722
+ border-radius: 8px;
3723
+ color: #1E2248;
3724
+ fill: #1E2248;
3725
+ flex-wrap: wrap;
3726
+ align-content: flex-start;
3727
+ align-items: flex-start;
3728
+ text-align: center;
3729
+ transition: 0.25s ease;
3730
+ margin-right: 0;
3731
+ position: relative;
3732
+ font-size: 18px;
3733
+ font-weight: 500;
3734
+ line-height: 1.55555556;
3735
+ }
3736
+ .ui-v1-radio-switch-option_standalone::before {
3737
+ content: '';
3738
+ border: 1px solid #005EEB;
3739
+ border-radius: inherit;
3740
+ opacity: 0;
3741
+ transition: opacity 0.25s ease;
3742
+ position: absolute;
3743
+ top: -2px;
3744
+ left: -2px;
3745
+ right: -2px;
3746
+ bottom: -2px;
3747
+ }
3748
+ .ui-v1-radio-switch-option_standalone svg {
3749
+ transition: none;
3750
+ }
3751
+ .ui-v1-radio-switch-option_standalone.ui-v1-radio-switch-option_active.ui-v1-radio-switch-option_disabled {
3752
+ background-color: #fff;
3753
+ border-color: #B7EBD8;
3754
+ color: #B7EBD8;
3755
+ }
3756
+ .ui-v1-radio-switch-option_standalone.ui-v1-radio-switch-option_active:not(.ui-v1-radio-switch-option_disabled) {
3757
+ background-color: #fff;
3758
+ border-color: #22C993;
3759
+ color: #20A77F;
3760
+ fill: #20A77F;
3761
+ }
3762
+ .ui-v1-radio-switch-option_standalone:hover:not(.ui-v1-radio-switch-option_disabled):not(.ui-v1-radio-switch-option_active)::before {
3763
+ opacity: 1;
3764
+ }
3765
+ .ui-v1-radio-switch-option_default {
3766
+ flex: 1 1 auto;
3767
+ align-items: center;
3768
+ border: 1px solid transparent;
3769
+ margin: -1px -1px -1px 0;
3770
+ padding: 0 16px;
3771
+ font-size: 16px;
3772
+ font-weight: 400;
3773
+ line-height: 1.5;
3774
+ }
3775
+ .ui-v1-radio-switch-option_default:first-child {
3776
+ margin-left: -1px;
3777
+ }
3778
+ .ui-v1-radio-switch-option_default:focus {
3779
+ border-color: #005EEB;
3780
+ }
3781
+ .ui-v1-radio-switch-option_disabled {
3782
+ fill: #8A96A6;
3783
+ color: #8A96A6;
3784
+ pointer-events: none;
3785
+ }
3786
+ .ui-v1-radio-switch-option_disabled::before {
3787
+ content: '';
3788
+ border-radius: inherit;
3789
+ position: absolute;
3790
+ z-index: 0;
3791
+ top: 0;
3792
+ left: 0;
3793
+ width: 100%;
3794
+ height: 100%;
3795
+ background-color: #EEF1F3;
3796
+ }
3797
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_disabled + .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_disabled {
3798
+ margin-left: 0 !important;
3799
+ }
3800
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_disabled:first-child {
3801
+ margin-right: 0;
3802
+ }
3803
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_disabled:last-child {
3804
+ margin-left: 1px;
3805
+ }
3806
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_disabled:not(.ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_disabled:first-child):not(.ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_disabled:last-child) {
3807
+ margin-left: 1px;
3808
+ margin-right: 0;
3809
+ }
3810
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_active.ui-v1-radio-switch-option_disabled {
3811
+ color: #6CADFF;
3812
+ border-color: rgba(0, 104, 255, 0.16);
3813
+ z-index: 1;
3814
+ }
3815
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_active.ui-v1-radio-switch-option_disabled::before {
3816
+ background-color: rgba(0, 104, 255, 0.04);
3817
+ }
3818
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_active:not(.ui-v1-radio-switch-option_disabled) {
3819
+ background-color: rgba(0, 94, 235, 0.12);
3820
+ border-color: #005EEB;
3821
+ color: #0052CC;
3822
+ z-index: 1;
3823
+ }
3824
+ .ui-v1-radio-switch-option_default:hover:not(.ui-v1-radio-switch-option_disabled):not(.ui-v1-radio-switch-option_active) {
3825
+ fill: #8A96A6;
3826
+ border-color: #005EEB;
3827
+ }
3828
+ .ui-v1-radio-switch-option__icon {
3829
+ --size: 24px;
3830
+ display: block;
3831
+ flex-shrink: 0;
3832
+ width: var(--size);
3833
+ height: var(--size);
3834
+ color: #AFB9C3;
3835
+ margin-right: 4px;
3836
+ }
3837
+ .ui-v1-radio-switch-option__icon svg {
3838
+ display: block;
3839
+ width: 100%;
3840
+ height: 100%;
3841
+ fill: inherit;
3842
+ }
3843
+ .ui-v1-radio-switch-option_sm .ui-v1-radio-switch-option__icon {
3844
+ --size: 20px;
3845
+ }
3846
+ .ui-v1-radio-switch-option_md .ui-v1-radio-switch-option__icon {
3847
+ --size: 32px;
3848
+ margin-right: 8px;
3849
+ }
3850
+ .ui-v1-radio-switch-option_lg .ui-v1-radio-switch-option__icon {
3851
+ --size: 32px;
3852
+ margin-right: 0;
3853
+ }
3854
+ .ui-v1-radio-switch-option_standalone .ui-v1-radio-switch-option__icon {
3855
+ color: inherit;
3856
+ }
3857
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_active.ui-v1-radio-switch-option_disabled .ui-v1-radio-switch-option__icon {
3858
+ color: #6CADFF;
3859
+ }
3860
+ .ui-v1-radio-switch-option_default.ui-v1-radio-switch-option_active:not(.ui-v1-radio-switch-option_disabled) .ui-v1-radio-switch-option__icon {
3861
+ color: #005EEB;
3862
+ }
3863
+ .ui-v1-radio-switch-option_default:hover:not(.ui-v1-radio-switch-option_disabled):not(.ui-v1-radio-switch-option_active) .ui-v1-radio-switch-option__icon {
3864
+ color: #8A96A6;
3865
+ }
3866
+ .ui-v1-radio-switch-option__description {
3867
+ width: 100%;
3868
+ color: #8A96A6;
3869
+ text-align: center;
3870
+ margin-top: 10px;
3871
+ font-size: 16px;
3872
+ font-weight: 400;
3873
+ line-height: 1.5;
3874
+ }
3875
+ .ui-v1-radio-switch-option_active:not(.ui-v1-radio-switch-option_disabled) .ui-v1-radio-switch-option__description {
3876
+ color: #1E2248;
3877
+ }
3878
+ .ui-v1-radio-switch-option__label {
3879
+ display: block;
3880
+ overflow: hidden;
3881
+ text-overflow: ellipsis;
3882
+ white-space: nowrap;
3883
+ }
3884
+ .ui-v1-radio-switch-option__done {
3885
+ width: 24px;
3886
+ height: 24px;
3887
+ position: absolute;
3888
+ top: 6px;
3889
+ right: 6px;
3890
+ }
3891
+ .ui-v1-radio-switch-option__done svg {
3892
+ width: 24px;
3893
+ height: 24px;
3894
+ color: #22C993;
3895
+ fill: #22C993;
3896
+ }
3897
+ .ui-v1-radio-switch-option_disabled .ui-v1-radio-switch-option__done svg {
3898
+ color: #B7EBD8;
3899
+ fill: #B7EBD8;
3900
+ }
3546
3901
  .ui-v1-slider {
3547
3902
  display: flex;
3548
3903
  width: 100%;
@@ -4304,6 +4659,304 @@
4304
4659
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
4305
4660
  white-space: inherit;
4306
4661
  }
4662
+ .ui-v1-tab-group {
4663
+ position: relative;
4664
+ width: 100%;
4665
+ max-width: 100%;
4666
+ }
4667
+ .ui-v1-tab-group__head {
4668
+ display: flex;
4669
+ width: 100%;
4670
+ border-bottom: 1px solid #DEE2E6;
4671
+ gap: 24px;
4672
+ }
4673
+ .ui-v1-tab-group__content,
4674
+ .ui-v1-tab-group__measure {
4675
+ display: flex;
4676
+ align-items: flex-end;
4677
+ gap: 24px;
4678
+ }
4679
+ .ui-v1-tab-group__content {
4680
+ flex: 1 1 auto;
4681
+ min-width: 0;
4682
+ margin: 0 -12px;
4683
+ overflow: hidden;
4684
+ padding: 0 12px;
4685
+ }
4686
+ .ui-v1-tab-group__measure {
4687
+ width: 100%;
4688
+ margin: 0 -12px;
4689
+ overflow-x: hidden;
4690
+ padding: 0 12px;
4691
+ visibility: hidden;
4692
+ pointer-events: none;
4693
+ white-space: nowrap;
4694
+ position: absolute;
4695
+ top: 0;
4696
+ left: 0;
4697
+ }
4698
+ .ui-v1-tab-group_sm .ui-v1-tab-group__head,
4699
+ .ui-v1-tab-group_sm .ui-v1-tab-group__content,
4700
+ .ui-v1-tab-group_sm .ui-v1-tab-group__measure {
4701
+ gap: 20px;
4702
+ }
4703
+ .ui-v1-tab-group_lg .ui-v1-tab-group__head,
4704
+ .ui-v1-tab-group_lg .ui-v1-tab-group__content,
4705
+ .ui-v1-tab-group_lg .ui-v1-tab-group__measure {
4706
+ gap: 24px;
4707
+ }
4708
+ .ui-v1-tab-group_filled .ui-v1-tab-group__head,
4709
+ .ui-v1-tab-group_filled .ui-v1-tab-group__content,
4710
+ .ui-v1-tab-group_filled .ui-v1-tab-group__measure {
4711
+ gap: 0;
4712
+ }
4713
+ .ui-v1-tab-group__trigger {
4714
+ flex: 0 0 auto;
4715
+ margin-top: auto;
4716
+ margin-bottom: auto;
4717
+ }
4718
+ .ui-v1-tab-group__trigger-icon {
4719
+ display: block;
4720
+ }
4721
+ .ui-v1-tab-group__popper {
4722
+ z-index: 10;
4723
+ }
4724
+ .ui-v1-tab-group__menu {
4725
+ display: flex;
4726
+ flex-direction: column;
4727
+ min-width: 180px;
4728
+ max-width: min(360px, 100%);
4729
+ padding-block: 4px;
4730
+ background: #fff;
4731
+ border-radius: 6px;
4732
+ overflow: hidden;
4733
+ }
4734
+ .ui-v1-tab-group__panel {
4735
+ min-width: 0;
4736
+ padding-top: 16px;
4737
+ }
4738
+ .ui-v1-tab {
4739
+ display: flex;
4740
+ align-items: center;
4741
+ height: 50px;
4742
+ padding: 13px 0;
4743
+ background: 0 0;
4744
+ border: none;
4745
+ font-size: 16px;
4746
+ font-weight: 500;
4747
+ line-height: 1.5;
4748
+ box-sizing: border-box;
4749
+ color: #8A96A6;
4750
+ cursor: pointer;
4751
+ margin: 0;
4752
+ outline: none;
4753
+ position: relative;
4754
+ transition: 0.25s ease;
4755
+ white-space: nowrap;
4756
+ -webkit-tap-highlight-color: transparent;
4757
+ }
4758
+ .ui-v1-tab::before {
4759
+ content: '';
4760
+ width: 100%;
4761
+ border-bottom: 2px solid transparent;
4762
+ position: absolute;
4763
+ left: 0;
4764
+ right: 0;
4765
+ bottom: -1px;
4766
+ }
4767
+ .ui-v1-tab::after {
4768
+ content: '';
4769
+ border-radius: 6px;
4770
+ transition: background 0.25s ease;
4771
+ position: absolute;
4772
+ height: 40px;
4773
+ left: -12px;
4774
+ right: -12px;
4775
+ }
4776
+ .ui-v1-tab:hover:not(.ui-v1-tab_active):not(.ui-v1-tab_disabled) {
4777
+ color: #005EEB;
4778
+ }
4779
+ .ui-v1-tab_text:hover:not(.ui-v1-tab_active):not(.ui-v1-tab_disabled)::after {
4780
+ background-color: rgba(0, 94, 235, 0.12);
4781
+ }
4782
+ .ui-v1-tab:hover:not(.ui-v1-tab_active):not(.ui-v1-tab_disabled) .ui-v1-tab__icon {
4783
+ fill: #005EEB;
4784
+ }
4785
+ .ui-v1-tab:focus-visible {
4786
+ outline: none;
4787
+ border-radius: 4px;
4788
+ box-shadow: 0 0 0 4px rgba(0, 94, 235, 0.12);
4789
+ }
4790
+ .ui-v1-tab_active {
4791
+ color: #005EEB;
4792
+ }
4793
+ .ui-v1-tab_active::before {
4794
+ border-color: currentColor;
4795
+ transition: border-color 0.2s linear;
4796
+ }
4797
+ .ui-v1-tab_disabled {
4798
+ color: #C7CDD4;
4799
+ cursor: default;
4800
+ }
4801
+ .ui-v1-tab_disabled::after {
4802
+ z-index: -1;
4803
+ }
4804
+ .ui-v1-tab_disabled::before {
4805
+ border-color: transparent;
4806
+ }
4807
+ .ui-v1-tab_sm {
4808
+ font-size: 14px;
4809
+ font-weight: 500;
4810
+ line-height: 1.42857143;
4811
+ }
4812
+ .ui-v1-tab_sm::after {
4813
+ left: -10px;
4814
+ right: -10px;
4815
+ }
4816
+ .ui-v1-tab_lg {
4817
+ height: 68px;
4818
+ font-size: 20px;
4819
+ font-weight: 500;
4820
+ line-height: 1.6;
4821
+ }
4822
+ .ui-v1-tab_lg::after {
4823
+ left: -16px;
4824
+ right: -16px;
4825
+ }
4826
+ .ui-v1-tab_fit-content {
4827
+ flex: auto;
4828
+ }
4829
+ .ui-v1-tab_fluid {
4830
+ display: flex;
4831
+ flex-grow: 1;
4832
+ justify-content: center;
4833
+ }
4834
+ .ui-v1-tab_overline::before {
4835
+ top: -1px;
4836
+ bottom: auto;
4837
+ }
4838
+ .ui-v1-tab__icon {
4839
+ width: 14px;
4840
+ height: 14px;
4841
+ display: block;
4842
+ flex-shrink: 0;
4843
+ min-width: 14px;
4844
+ fill: currentColor;
4845
+ transition: fill 0.25s ease;
4846
+ }
4847
+ .ui-v1-tab__icon :deep(svg) {
4848
+ width: 100%;
4849
+ height: 100%;
4850
+ fill: currentColor;
4851
+ }
4852
+ .ui-v1-tab__icon > svg {
4853
+ width: 100%;
4854
+ height: 100%;
4855
+ }
4856
+ .ui-v1-tab_sm .ui-v1-tab__icon {
4857
+ width: 14px;
4858
+ min-width: 14px;
4859
+ height: 14px;
4860
+ }
4861
+ .ui-v1-tab_md .ui-v1-tab__icon {
4862
+ width: 14px;
4863
+ min-width: 14px;
4864
+ height: 14px;
4865
+ margin-bottom: 6px;
4866
+ }
4867
+ .ui-v1-tab_lg .ui-v1-tab__icon {
4868
+ width: 24px;
4869
+ min-width: 24px;
4870
+ height: 24px;
4871
+ }
4872
+ .ui-v1-tab__label {
4873
+ display: flex;
4874
+ flex-direction: column;
4875
+ justify-content: center;
4876
+ }
4877
+ .ui-v1-tab__counter {
4878
+ display: flex;
4879
+ justify-content: center;
4880
+ min-width: 18px;
4881
+ padding: 2px 4px;
4882
+ background-color: #8A96A6;
4883
+ border-radius: 4px;
4884
+ color: #fff;
4885
+ font-size: 14px;
4886
+ font-weight: 500;
4887
+ line-height: 1.42857143;
4888
+ }
4889
+ .ui-v1-tab_lg .ui-v1-tab__counter {
4890
+ padding: 2px 6px;
4891
+ }
4892
+ .ui-v1-tab_sm .ui-v1-tab__icon + .ui-v1-tab__label,
4893
+ .ui-v1-tab_md .ui-v1-tab__icon + .ui-v1-tab__label {
4894
+ margin-left: 5px;
4895
+ }
4896
+ .ui-v1-tab_lg .ui-v1-tab__icon + .ui-v1-tab__label {
4897
+ margin-left: 8px;
4898
+ }
4899
+ .ui-v1-tab_sm .ui-v1-tab__label + .ui-v1-tab__counter,
4900
+ .ui-v1-tab_md .ui-v1-tab__label + .ui-v1-tab__counter {
4901
+ margin-left: 4px;
4902
+ }
4903
+ .ui-v1-tab_lg .ui-v1-tab__label + .ui-v1-tab__counter {
4904
+ margin-left: 8px;
4905
+ }
4906
+ .ui-v1-tab_filled {
4907
+ padding: 13px 12px;
4908
+ color: #151833;
4909
+ margin-right: 0;
4910
+ }
4911
+ .ui-v1-tab_filled::before {
4912
+ border-width: 4px !important;
4913
+ }
4914
+ .ui-v1-tab_filled.ui-v1-tab_sm {
4915
+ padding: 13px 10px;
4916
+ }
4917
+ .ui-v1-tab_filled.ui-v1-tab_lg {
4918
+ padding: 22px 32px;
4919
+ }
4920
+ .ui-v1-tab_filled.ui-v1-tab_active {
4921
+ background-color: #F4F6F8;
4922
+ color: #0052CC;
4923
+ }
4924
+ .ui-v1-tab_filled.ui-v1-tab_disabled {
4925
+ background-color: #F4F6F8;
4926
+ color: #C7CDD4;
4927
+ }
4928
+ .ui-v1-tab_filled:not(.ui-v1-tab_active)::after {
4929
+ height: unset;
4930
+ background-color: transparent;
4931
+ border-radius: 0;
4932
+ z-index: -1;
4933
+ left: 0;
4934
+ top: 0;
4935
+ right: 0;
4936
+ bottom: 0;
4937
+ }
4938
+ .ui-v1-tab_filled:not(.ui-v1-tab_active):not(.ui-v1-tab_disabled):hover::after {
4939
+ background-color: #F9FAFB;
4940
+ }
4941
+ .ui-v1-tab_filled.ui-v1-tab_active::after {
4942
+ display: none;
4943
+ }
4944
+ .ui-v1-tab_filled.ui-v1-tab_active::before {
4945
+ border-color: #005EEB !important;
4946
+ }
4947
+ .ui-v1-tab_filled.ui-v1-tab_icon-without-text {
4948
+ padding-right: 24px;
4949
+ padding-left: 24px;
4950
+ }
4951
+ .ui-v1-tab_filled.ui-v1-tab_disabled .ui-v1-tab__icon {
4952
+ fill: #AFB9C3;
4953
+ }
4954
+ .ui-v1-tab_active .ui-v1-tab__icon {
4955
+ fill: currentColor;
4956
+ }
4957
+ .ui-v1-tab_disabled .ui-v1-tab__icon {
4958
+ fill: #AFB9C3;
4959
+ }
4307
4960
  .ui-v1-tag-wrapper {
4308
4961
  display: inline-block;
4309
4962
  max-width: 100%;