@retailcrm/embed-ui-v1-components 0.9.14 → 0.9.16
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.
- package/AGENTS.md +126 -0
- package/README.md +24 -0
- package/assets/sprites/map-and-places/navigate.svg +3 -0
- package/assets/stylesheets/palette.less +11 -6
- package/bin/embed-ui-v1-components.mjs +209 -0
- package/bin/postinstall.mjs +37 -0
- package/dist/host.cjs +2443 -657
- package/dist/host.css +920 -6
- package/dist/host.d.ts +2440 -6
- package/dist/host.js +2444 -658
- package/dist/remote.cjs +1009 -46
- package/dist/remote.d.ts +1240 -67
- package/dist/remote.js +1011 -48
- package/docs/AI.md +106 -0
- package/docs/COMPONENTS.md +99 -0
- package/docs/FORMAT.md +267 -0
- package/docs/PROFILES.md +66 -0
- package/docs/README.md +65 -0
- package/docs/STYLING.md +156 -0
- package/docs/profiles/UiAddButton.yml +57 -0
- package/docs/profiles/UiAlert.yml +48 -0
- package/docs/profiles/UiAvatar.yml +48 -0
- package/docs/profiles/UiAvatarList.yml +42 -0
- package/docs/profiles/UiButton.yml +229 -0
- package/docs/profiles/UiCalendar.yml +48 -0
- package/docs/profiles/UiCheckbox.yml +53 -0
- package/docs/profiles/UiCollapse.yml +40 -0
- package/docs/profiles/UiCollapseBox.yml +51 -0
- package/docs/profiles/UiCollapseGroup.yml +39 -0
- package/docs/profiles/UiCopyButton.yml +52 -0
- package/docs/profiles/UiDate.yml +38 -0
- package/docs/profiles/UiDatePicker.yml +59 -0
- package/docs/profiles/UiError.yml +32 -0
- package/docs/profiles/UiField.yml +233 -0
- package/docs/profiles/UiImage.yml +39 -0
- package/docs/profiles/UiInfobox.yml +45 -0
- package/docs/profiles/UiLink.yml +51 -0
- package/docs/profiles/UiLoader.yml +38 -0
- package/docs/profiles/UiMenuItem.yml +57 -0
- package/docs/profiles/UiMenuItemGroup.yml +50 -0
- package/docs/profiles/UiModalSidebar.yml +46 -0
- package/docs/profiles/UiModalWindow.yml +44 -0
- package/docs/profiles/UiModalWindowSurface.yml +41 -0
- package/docs/profiles/UiNumberStepper.yml +52 -0
- package/docs/profiles/UiPageHeader.yml +244 -0
- package/docs/profiles/UiPopper.yml +201 -0
- package/docs/profiles/UiPopperConnector.yml +115 -0
- package/docs/profiles/UiPopperTarget.yml +118 -0
- package/docs/profiles/UiRadio.yml +38 -0
- package/docs/profiles/UiRadioSwitch.yml +231 -0
- package/docs/profiles/UiRadioSwitchOption.yml +121 -0
- package/docs/profiles/UiScrollBox.yml +31 -0
- package/docs/profiles/UiSelect.yml +327 -0
- package/docs/profiles/UiSelectOption.yml +44 -0
- package/docs/profiles/UiSelectOptionGroup.yml +38 -0
- package/docs/profiles/UiSlider.yml +38 -0
- package/docs/profiles/UiSwitch.yml +37 -0
- package/docs/profiles/UiTab.yml +119 -0
- package/docs/profiles/UiTabGroup.yml +238 -0
- package/docs/profiles/UiTable.yml +152 -0
- package/docs/profiles/UiTableBodyCell.yml +47 -0
- package/docs/profiles/UiTableColumn.yml +50 -0
- package/docs/profiles/UiTableFooterButton.yml +44 -0
- package/docs/profiles/UiTableFooterSection.yml +38 -0
- package/docs/profiles/UiTableHeadCell.yml +44 -0
- package/docs/profiles/UiTableSorter.yml +45 -0
- package/docs/profiles/UiTag.yml +41 -0
- package/docs/profiles/UiTextbox.yml +392 -0
- package/docs/profiles/UiTimePicker.yml +46 -0
- package/docs/profiles/UiToggleButton.yml +211 -0
- package/docs/profiles/UiToggleGroup.yml +211 -0
- package/docs/profiles/UiToggleGroupOption.yml +116 -0
- package/docs/profiles/UiToolbarButton.yml +37 -0
- package/docs/profiles/UiToolbarLink.yml +32 -0
- package/docs/profiles/UiTooltip.yml +43 -0
- package/docs/profiles/UiTransition.yml +27 -0
- package/docs/profiles/UiYandexMap.yml +29 -0
- package/package.json +8 -3
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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%;
|
|
@@ -4516,6 +5169,233 @@
|
|
|
4516
5169
|
font-weight: 400;
|
|
4517
5170
|
line-height: 1.42857143;
|
|
4518
5171
|
}
|
|
5172
|
+
.ui-v1-toggle-button {
|
|
5173
|
+
--ui-v1-toggle-button-height: 36px;
|
|
5174
|
+
--ui-v1-toggle-button-min-width: 96px;
|
|
5175
|
+
--ui-v1-toggle-button-padding-x: 12px;
|
|
5176
|
+
--ui-v1-toggle-button-radius: 6px;
|
|
5177
|
+
--ui-v1-toggle-button-icon-size: 16px;
|
|
5178
|
+
--ui-v1-toggle-button-content-gap: 6px;
|
|
5179
|
+
--ui-v1-toggle-button-background: white;
|
|
5180
|
+
--ui-v1-toggle-button-background-hover: #F9FAFB;
|
|
5181
|
+
--ui-v1-toggle-button-background-pressed: #005EEB;
|
|
5182
|
+
--ui-v1-toggle-button-background-disabled: #F4F6F8;
|
|
5183
|
+
--ui-v1-toggle-button-background-pressed-disabled: #B8DBFF;
|
|
5184
|
+
--ui-v1-toggle-button-background-pressed-hover: #0052CC;
|
|
5185
|
+
--ui-v1-toggle-button-border-color: #C7CDD4;
|
|
5186
|
+
--ui-v1-toggle-button-border-hover: #005EEB;
|
|
5187
|
+
--ui-v1-toggle-button-border-pressed: #005EEB;
|
|
5188
|
+
--ui-v1-toggle-button-border-disabled: #DEE2E6;
|
|
5189
|
+
--ui-v1-toggle-button-border-pressed-disabled: #B8DBFF;
|
|
5190
|
+
--ui-v1-toggle-button-border-pressed-hover: #0052CC;
|
|
5191
|
+
--ui-v1-toggle-button-text-color: #1E2248;
|
|
5192
|
+
--ui-v1-toggle-button-text-hover: #0052CC;
|
|
5193
|
+
--ui-v1-toggle-button-text-pressed: white;
|
|
5194
|
+
--ui-v1-toggle-button-text-disabled: #8A96A6;
|
|
5195
|
+
--ui-v1-toggle-button-text-pressed-disabled: white;
|
|
5196
|
+
--ui-v1-toggle-button-text-pressed-hover: white;
|
|
5197
|
+
--ui-v1-toggle-button-focus-color: rgba(0, 94, 235, 0.12);
|
|
5198
|
+
display: inline-flex;
|
|
5199
|
+
align-items: center;
|
|
5200
|
+
justify-content: center;
|
|
5201
|
+
min-width: var(--ui-v1-toggle-button-min-width);
|
|
5202
|
+
height: var(--ui-v1-toggle-button-height);
|
|
5203
|
+
padding: 0 var(--ui-v1-toggle-button-padding-x);
|
|
5204
|
+
box-sizing: border-box;
|
|
5205
|
+
border: 1px solid var(--ui-v1-toggle-button-border-color);
|
|
5206
|
+
border-radius: var(--ui-v1-toggle-button-radius);
|
|
5207
|
+
background: var(--ui-v1-toggle-button-background);
|
|
5208
|
+
color: var(--ui-v1-toggle-button-text-color);
|
|
5209
|
+
cursor: pointer;
|
|
5210
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Roboto", sans-serif;
|
|
5211
|
+
text-align: center;
|
|
5212
|
+
text-decoration: none;
|
|
5213
|
+
transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
|
|
5214
|
+
user-select: none;
|
|
5215
|
+
vertical-align: top;
|
|
5216
|
+
appearance: none;
|
|
5217
|
+
}
|
|
5218
|
+
.ui-v1-toggle-button svg {
|
|
5219
|
+
fill: currentColor;
|
|
5220
|
+
}
|
|
5221
|
+
.ui-v1-toggle-button,
|
|
5222
|
+
.ui-v1-toggle-button:active,
|
|
5223
|
+
.ui-v1-toggle-button:focus {
|
|
5224
|
+
outline: none !important;
|
|
5225
|
+
}
|
|
5226
|
+
.ui-v1-toggle-button:focus-visible {
|
|
5227
|
+
box-shadow: 0 0 0 4px var(--ui-v1-toggle-button-focus-color);
|
|
5228
|
+
position: relative;
|
|
5229
|
+
z-index: 2;
|
|
5230
|
+
}
|
|
5231
|
+
.ui-v1-toggle-button_focused {
|
|
5232
|
+
box-shadow: 0 0 0 4px var(--ui-v1-toggle-button-focus-color);
|
|
5233
|
+
position: relative;
|
|
5234
|
+
z-index: 2;
|
|
5235
|
+
}
|
|
5236
|
+
.ui-v1-toggle-button:active {
|
|
5237
|
+
box-shadow: none;
|
|
5238
|
+
}
|
|
5239
|
+
.ui-v1-toggle-button:hover:not(:disabled):not(.ui-v1-toggle-button_pressed) {
|
|
5240
|
+
background: var(--ui-v1-toggle-button-background-hover);
|
|
5241
|
+
border-color: var(--ui-v1-toggle-button-border-hover);
|
|
5242
|
+
color: var(--ui-v1-toggle-button-text-hover);
|
|
5243
|
+
}
|
|
5244
|
+
.ui-v1-toggle-button_pressed {
|
|
5245
|
+
background: var(--ui-v1-toggle-button-background-pressed);
|
|
5246
|
+
border-color: var(--ui-v1-toggle-button-border-pressed);
|
|
5247
|
+
color: var(--ui-v1-toggle-button-text-pressed);
|
|
5248
|
+
position: relative;
|
|
5249
|
+
z-index: 1;
|
|
5250
|
+
}
|
|
5251
|
+
.ui-v1-toggle-button_pressed:hover:not(:disabled) {
|
|
5252
|
+
background: var(--ui-v1-toggle-button-background-pressed-hover);
|
|
5253
|
+
border-color: var(--ui-v1-toggle-button-border-pressed-hover);
|
|
5254
|
+
color: var(--ui-v1-toggle-button-text-pressed-hover);
|
|
5255
|
+
}
|
|
5256
|
+
.ui-v1-toggle-button:disabled,
|
|
5257
|
+
.ui-v1-toggle-button_disabled {
|
|
5258
|
+
background: var(--ui-v1-toggle-button-background-disabled);
|
|
5259
|
+
border-color: var(--ui-v1-toggle-button-border-disabled);
|
|
5260
|
+
color: var(--ui-v1-toggle-button-text-disabled);
|
|
5261
|
+
cursor: default;
|
|
5262
|
+
}
|
|
5263
|
+
.ui-v1-toggle-button_pressed:disabled,
|
|
5264
|
+
.ui-v1-toggle-button_pressed.ui-v1-toggle-button_disabled {
|
|
5265
|
+
background: var(--ui-v1-toggle-button-background-pressed-disabled);
|
|
5266
|
+
border-color: var(--ui-v1-toggle-button-border-pressed-disabled);
|
|
5267
|
+
color: var(--ui-v1-toggle-button-text-pressed-disabled);
|
|
5268
|
+
}
|
|
5269
|
+
.ui-v1-toggle-button_lg {
|
|
5270
|
+
--ui-v1-toggle-button-height: 56px;
|
|
5271
|
+
--ui-v1-toggle-button-min-width: 128px;
|
|
5272
|
+
--ui-v1-toggle-button-padding-x: 16px;
|
|
5273
|
+
--ui-v1-toggle-button-radius: 8px;
|
|
5274
|
+
--ui-v1-toggle-button-icon-size: 32px;
|
|
5275
|
+
--ui-v1-toggle-button-content-gap: 8px;
|
|
5276
|
+
font-size: 18px;
|
|
5277
|
+
font-weight: 500;
|
|
5278
|
+
line-height: normal;
|
|
5279
|
+
}
|
|
5280
|
+
.ui-v1-toggle-button_md {
|
|
5281
|
+
--ui-v1-toggle-button-height: 48px;
|
|
5282
|
+
--ui-v1-toggle-button-min-width: 128px;
|
|
5283
|
+
--ui-v1-toggle-button-padding-x: 14px;
|
|
5284
|
+
--ui-v1-toggle-button-radius: 8px;
|
|
5285
|
+
--ui-v1-toggle-button-icon-size: 24px;
|
|
5286
|
+
--ui-v1-toggle-button-content-gap: 8px;
|
|
5287
|
+
font-size: 16px;
|
|
5288
|
+
font-weight: 500;
|
|
5289
|
+
line-height: normal;
|
|
5290
|
+
}
|
|
5291
|
+
.ui-v1-toggle-button_sm {
|
|
5292
|
+
--ui-v1-toggle-button-height: 36px;
|
|
5293
|
+
--ui-v1-toggle-button-min-width: 96px;
|
|
5294
|
+
--ui-v1-toggle-button-padding-x: 12px;
|
|
5295
|
+
--ui-v1-toggle-button-radius: 6px;
|
|
5296
|
+
--ui-v1-toggle-button-icon-size: 16px;
|
|
5297
|
+
--ui-v1-toggle-button-content-gap: 6px;
|
|
5298
|
+
font-size: 14px;
|
|
5299
|
+
font-weight: 500;
|
|
5300
|
+
line-height: normal;
|
|
5301
|
+
}
|
|
5302
|
+
.ui-v1-toggle-button_xs {
|
|
5303
|
+
--ui-v1-toggle-button-height: 24px;
|
|
5304
|
+
--ui-v1-toggle-button-min-width: 72px;
|
|
5305
|
+
--ui-v1-toggle-button-padding-x: 8px;
|
|
5306
|
+
--ui-v1-toggle-button-radius: 4px;
|
|
5307
|
+
--ui-v1-toggle-button-icon-size: 16px;
|
|
5308
|
+
--ui-v1-toggle-button-content-gap: 6px;
|
|
5309
|
+
font-size: 12px;
|
|
5310
|
+
font-weight: 500;
|
|
5311
|
+
line-height: normal;
|
|
5312
|
+
letter-spacing: 0;
|
|
5313
|
+
}
|
|
5314
|
+
.ui-v1-toggle-button_grouped {
|
|
5315
|
+
flex: 1 1 auto;
|
|
5316
|
+
min-width: 0;
|
|
5317
|
+
border-radius: 0;
|
|
5318
|
+
}
|
|
5319
|
+
.ui-v1-toggle-button_grouped:not(:first-child) {
|
|
5320
|
+
margin-left: -1px;
|
|
5321
|
+
}
|
|
5322
|
+
.ui-v1-toggle-button_grouped:first-child {
|
|
5323
|
+
border-bottom-left-radius: var(--ui-v1-toggle-button-radius);
|
|
5324
|
+
border-top-left-radius: var(--ui-v1-toggle-button-radius);
|
|
5325
|
+
}
|
|
5326
|
+
.ui-v1-toggle-button_grouped:last-child {
|
|
5327
|
+
border-bottom-right-radius: var(--ui-v1-toggle-button-radius);
|
|
5328
|
+
border-top-right-radius: var(--ui-v1-toggle-button-radius);
|
|
5329
|
+
}
|
|
5330
|
+
.ui-v1-toggle-button_grouped:hover:not(:disabled),
|
|
5331
|
+
.ui-v1-toggle-button_grouped:focus-visible,
|
|
5332
|
+
.ui-v1-toggle-button_grouped_focused,
|
|
5333
|
+
.ui-v1-toggle-button_grouped_pressed {
|
|
5334
|
+
z-index: 1;
|
|
5335
|
+
}
|
|
5336
|
+
.ui-v1-toggle-button__content {
|
|
5337
|
+
display: flex;
|
|
5338
|
+
align-items: center;
|
|
5339
|
+
justify-content: center;
|
|
5340
|
+
gap: var(--ui-v1-toggle-button-content-gap);
|
|
5341
|
+
width: 100%;
|
|
5342
|
+
min-width: 0;
|
|
5343
|
+
}
|
|
5344
|
+
.ui-v1-toggle-button__icon {
|
|
5345
|
+
flex-shrink: 0;
|
|
5346
|
+
width: var(--ui-v1-toggle-button-icon-size);
|
|
5347
|
+
height: var(--ui-v1-toggle-button-icon-size);
|
|
5348
|
+
}
|
|
5349
|
+
.ui-v1-toggle-button__icon svg {
|
|
5350
|
+
display: block;
|
|
5351
|
+
width: 100%;
|
|
5352
|
+
height: 100%;
|
|
5353
|
+
}
|
|
5354
|
+
.ui-v1-toggle-button__text {
|
|
5355
|
+
overflow: hidden;
|
|
5356
|
+
text-overflow: ellipsis;
|
|
5357
|
+
white-space: nowrap;
|
|
5358
|
+
}
|
|
5359
|
+
.ui-v1-toggle-group {
|
|
5360
|
+
display: flex;
|
|
5361
|
+
align-items: stretch;
|
|
5362
|
+
max-width: 100%;
|
|
5363
|
+
}
|
|
5364
|
+
.ui-v1-toggle-group_rubber {
|
|
5365
|
+
display: inline-flex;
|
|
5366
|
+
}
|
|
5367
|
+
.ui-v1-toggle-group_lg {
|
|
5368
|
+
--ui-v1-toggle-button-height: 56px;
|
|
5369
|
+
--ui-v1-toggle-button-min-width: 128px;
|
|
5370
|
+
--ui-v1-toggle-button-padding-x: 16px;
|
|
5371
|
+
--ui-v1-toggle-button-radius: 8px;
|
|
5372
|
+
--ui-v1-toggle-button-icon-size: 32px;
|
|
5373
|
+
--ui-v1-toggle-button-content-gap: 8px;
|
|
5374
|
+
}
|
|
5375
|
+
.ui-v1-toggle-group_md {
|
|
5376
|
+
--ui-v1-toggle-button-height: 48px;
|
|
5377
|
+
--ui-v1-toggle-button-min-width: 128px;
|
|
5378
|
+
--ui-v1-toggle-button-padding-x: 14px;
|
|
5379
|
+
--ui-v1-toggle-button-radius: 8px;
|
|
5380
|
+
--ui-v1-toggle-button-icon-size: 24px;
|
|
5381
|
+
--ui-v1-toggle-button-content-gap: 8px;
|
|
5382
|
+
}
|
|
5383
|
+
.ui-v1-toggle-group_sm {
|
|
5384
|
+
--ui-v1-toggle-button-height: 36px;
|
|
5385
|
+
--ui-v1-toggle-button-min-width: 96px;
|
|
5386
|
+
--ui-v1-toggle-button-padding-x: 12px;
|
|
5387
|
+
--ui-v1-toggle-button-radius: 6px;
|
|
5388
|
+
--ui-v1-toggle-button-icon-size: 16px;
|
|
5389
|
+
--ui-v1-toggle-button-content-gap: 6px;
|
|
5390
|
+
}
|
|
5391
|
+
.ui-v1-toggle-group_xs {
|
|
5392
|
+
--ui-v1-toggle-button-height: 24px;
|
|
5393
|
+
--ui-v1-toggle-button-min-width: 72px;
|
|
5394
|
+
--ui-v1-toggle-button-padding-x: 8px;
|
|
5395
|
+
--ui-v1-toggle-button-radius: 4px;
|
|
5396
|
+
--ui-v1-toggle-button-icon-size: 16px;
|
|
5397
|
+
--ui-v1-toggle-button-content-gap: 6px;
|
|
5398
|
+
}
|
|
4519
5399
|
.ui-v1-yandex-map {
|
|
4520
5400
|
display: flex;
|
|
4521
5401
|
width: 100%;
|
|
@@ -4527,4 +5407,38 @@
|
|
|
4527
5407
|
height: 100%;
|
|
4528
5408
|
border: none;
|
|
4529
5409
|
position: absolute;
|
|
5410
|
+
inset: 0;
|
|
5411
|
+
}
|
|
5412
|
+
.ui-v1-yandex-map__control-group {
|
|
5413
|
+
display: flex;
|
|
5414
|
+
position: absolute;
|
|
5415
|
+
top: 50%;
|
|
5416
|
+
transform: translateY(-50%);
|
|
5417
|
+
z-index: 1;
|
|
5418
|
+
}
|
|
5419
|
+
.ui-v1-yandex-map__control-group_left {
|
|
5420
|
+
left: 16px;
|
|
5421
|
+
}
|
|
5422
|
+
.ui-v1-yandex-map__control-group_right {
|
|
5423
|
+
right: 16px;
|
|
5424
|
+
flex-direction: column-reverse;
|
|
5425
|
+
}
|
|
5426
|
+
.ui-v1-yandex-map__control-button svg {
|
|
5427
|
+
width: 20px;
|
|
5428
|
+
min-width: 20px;
|
|
5429
|
+
height: 20px;
|
|
5430
|
+
}
|
|
5431
|
+
.ui-v1-yandex-map__control-group_right .ui-v1-yandex-map__control-button {
|
|
5432
|
+
border-radius: 0;
|
|
5433
|
+
}
|
|
5434
|
+
.ui-v1-yandex-map__control-group_right .ui-v1-yandex-map__control-button + .ui-v1-yandex-map__control-button {
|
|
5435
|
+
margin-bottom: -1px;
|
|
5436
|
+
}
|
|
5437
|
+
.ui-v1-yandex-map__control-group_right .ui-v1-yandex-map__control-button:first-child {
|
|
5438
|
+
border-bottom-right-radius: 6px;
|
|
5439
|
+
border-bottom-left-radius: 6px;
|
|
5440
|
+
}
|
|
5441
|
+
.ui-v1-yandex-map__control-group_right .ui-v1-yandex-map__control-button:last-child {
|
|
5442
|
+
border-top-right-radius: 6px;
|
|
5443
|
+
border-top-left-radius: 6px;
|
|
4530
5444
|
}
|