@streamoid/ui 0.6.18 → 0.6.20

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/dist/index.css CHANGED
@@ -1972,6 +1972,10 @@
1972
1972
  background-color: var(--alias-border-divider, #242424);
1973
1973
  position: relative;
1974
1974
  }
1975
+ .ScHDivider_fullBleed {
1976
+ width: calc(100% + var(--spacing-md, 0.5rem) + var(--spacing-md, 0.5rem));
1977
+ margin-inline: calc(0px - var(--spacing-md, 0.5rem));
1978
+ }
1975
1979
 
1976
1980
  /* src/SC-Calendar date comps/ScCalendarDateComps.module.css */
1977
1981
  .ScCalendarDateComps_scCalendarDateComps,
@@ -3757,6 +3761,328 @@
3757
3761
  padding: var(--spacing-md, 0.5rem) 0;
3758
3762
  }
3759
3763
 
3764
+ /* src/SC-Sidebar-new/ScSidebarResizeHandle.module.css */
3765
+ .ScSidebarResizeHandle_handle {
3766
+ position: absolute;
3767
+ top: 0;
3768
+ right: 8px;
3769
+ z-index: 31;
3770
+ width: 12px;
3771
+ height: 100%;
3772
+ padding: 0;
3773
+ border: 0;
3774
+ background: transparent;
3775
+ cursor: col-resize;
3776
+ touch-action: none;
3777
+ }
3778
+ .ScSidebarResizeHandle_collapsed {
3779
+ right: -8px;
3780
+ }
3781
+ .ScSidebarResizeHandle_line {
3782
+ pointer-events: none;
3783
+ position: absolute;
3784
+ top: 0;
3785
+ right: 5px;
3786
+ bottom: 0;
3787
+ width: 2px;
3788
+ border-radius: 9999px;
3789
+ background: var(--alias-border-focus);
3790
+ opacity: 0;
3791
+ transition: opacity 150ms ease;
3792
+ }
3793
+ .ScSidebarResizeHandle_handle:hover .ScSidebarResizeHandle_line,
3794
+ .ScSidebarResizeHandle_handle:focus-visible .ScSidebarResizeHandle_line,
3795
+ .ScSidebarResizeHandle_active .ScSidebarResizeHandle_line {
3796
+ opacity: 1;
3797
+ }
3798
+
3799
+ /* src/SC-SidebarShell/ScSidebarShell.module.css */
3800
+ .ScSidebarShell_workspaceTrigger,
3801
+ .ScSidebarShell_searchTrigger,
3802
+ .ScSidebarShell_appIdentity,
3803
+ .ScSidebarShell_menu,
3804
+ .ScSidebarShell_menu * {
3805
+ box-sizing: border-box;
3806
+ }
3807
+ .ScSidebarShell_workspaceTrigger,
3808
+ .ScSidebarShell_searchTrigger {
3809
+ display: flex;
3810
+ align-items: center;
3811
+ border: 0;
3812
+ cursor: pointer;
3813
+ color: var(--alias-text---icons-primary, #f5f5f5);
3814
+ font: inherit;
3815
+ }
3816
+ .ScSidebarShell_workspaceTrigger {
3817
+ min-height: 40px;
3818
+ gap: var(--spacing-md, 8px);
3819
+ border-radius: var(--radius-xl, 12px);
3820
+ background: transparent;
3821
+ text-align: left;
3822
+ }
3823
+ .ScSidebarShell_workspaceTrigger[aria-expanded=true],
3824
+ .ScSidebarShell_workspaceTrigger:hover {
3825
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
3826
+ }
3827
+ .ScSidebarShell_workspaceTriggerExpanded {
3828
+ width: 100%;
3829
+ min-width: 0;
3830
+ padding: var(--spacing-sm, 4px);
3831
+ }
3832
+ .ScSidebarShell_workspaceTriggerCollapsed {
3833
+ width: 40px;
3834
+ justify-content: center;
3835
+ padding: 0;
3836
+ }
3837
+ .ScSidebarShell_workspaceName,
3838
+ .ScSidebarShell_searchLabel {
3839
+ min-width: 0;
3840
+ flex: 1;
3841
+ overflow: hidden;
3842
+ text-overflow: ellipsis;
3843
+ white-space: nowrap;
3844
+ }
3845
+ .ScSidebarShell_workspaceName {
3846
+ font-size: 14px;
3847
+ line-height: 20px;
3848
+ font-weight: 500;
3849
+ }
3850
+ .ScSidebarShell_searchTrigger {
3851
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
3852
+ color: var(--alias-text---icons-muted, #7a7a7a);
3853
+ border-radius: var(--radius-md, 8px);
3854
+ transition: background-color 120ms ease;
3855
+ }
3856
+ .ScSidebarShell_searchTrigger:hover {
3857
+ background: var(--alias-fill-neutral-neutralhover, #242424);
3858
+ }
3859
+ .ScSidebarShell_searchTriggerExpanded {
3860
+ width: 100%;
3861
+ height: 36px;
3862
+ gap: var(--spacing-md, 8px);
3863
+ padding: 0 var(--spacing-xl, 12px);
3864
+ }
3865
+ .ScSidebarShell_searchTriggerCollapsed {
3866
+ width: 40px;
3867
+ height: 40px;
3868
+ justify-content: center;
3869
+ padding: 0;
3870
+ }
3871
+ .ScSidebarShell_searchLabel {
3872
+ text-align: left;
3873
+ font-size: 14px;
3874
+ line-height: 20px;
3875
+ }
3876
+ .ScSidebarShell_shortcut {
3877
+ flex-shrink: 0;
3878
+ font: inherit;
3879
+ font-size: 12px;
3880
+ line-height: 16px;
3881
+ color: var(--alias-text---icons-muted, #7a7a7a);
3882
+ }
3883
+ .ScSidebarShell_appIdentity {
3884
+ display: flex;
3885
+ align-items: center;
3886
+ min-width: 0;
3887
+ color: var(--alias-text---icons-primary, #f5f5f5);
3888
+ }
3889
+ .ScSidebarShell_appIdentityExpanded {
3890
+ width: 100%;
3891
+ justify-content: space-between;
3892
+ }
3893
+ .ScSidebarShell_appIdentityCollapsed {
3894
+ justify-content: center;
3895
+ }
3896
+ .ScSidebarShell_appWordmark {
3897
+ display: inline-flex;
3898
+ min-width: 0;
3899
+ max-width: 150px;
3900
+ align-items: center;
3901
+ overflow: hidden;
3902
+ }
3903
+ .ScSidebarShell_appWordmark svg {
3904
+ max-width: 100%;
3905
+ height: auto;
3906
+ }
3907
+ .ScSidebarShell_appGridIcon {
3908
+ display: grid;
3909
+ grid-template-columns: repeat(3, 4px);
3910
+ gap: 3px;
3911
+ flex-shrink: 0;
3912
+ padding: 3px;
3913
+ }
3914
+ .ScSidebarShell_appGridIcon > span {
3915
+ width: 4px;
3916
+ height: 4px;
3917
+ border-radius: 50%;
3918
+ background: var(--alias-text---icons-muted, #7a7a7a);
3919
+ }
3920
+ .ScSidebarShell_collapsedProductMark {
3921
+ display: flex;
3922
+ width: 40px;
3923
+ height: 40px;
3924
+ align-items: center;
3925
+ justify-content: center;
3926
+ overflow: hidden;
3927
+ }
3928
+ .ScSidebarShell_collapsedProductMark > span {
3929
+ transform: scale(0.72);
3930
+ }
3931
+ .ScSidebarShell_menu {
3932
+ display: flex;
3933
+ flex-direction: column;
3934
+ align-items: stretch;
3935
+ width: var(--sc-workspace-menu-width, 336px);
3936
+ max-height: calc(100vh - 32px);
3937
+ overflow-y: auto;
3938
+ padding: var(--spacing-xl, 12px);
3939
+ gap: var(--spacing-lg, 10px);
3940
+ border: 0.5px solid var(--alias-border-subtle, #242424);
3941
+ border-radius: var(--radius-4xl, 18px);
3942
+ background: var(--alias-surface-base, #101010);
3943
+ backdrop-filter: blur(42px);
3944
+ color: var(--alias-text---icons-primary, #f5f5f5);
3945
+ font-family: var(--font-family-font-family-body, Inter), sans-serif;
3946
+ }
3947
+ .ScSidebarShell_section {
3948
+ display: flex;
3949
+ flex-direction: column;
3950
+ gap: var(--spacing-xs, 4px);
3951
+ }
3952
+ .ScSidebarShell_sectionTitle {
3953
+ margin: 0;
3954
+ padding: 0 var(--spacing-md, 8px);
3955
+ color: var(--alias-text---icons-tertiary, #9e9e9e);
3956
+ font-size: 12px;
3957
+ line-height: 18px;
3958
+ font-weight: 500;
3959
+ }
3960
+ .ScSidebarShell_divider {
3961
+ width: 100%;
3962
+ border-top: 0.5px solid var(--alias-border-divider, #242424);
3963
+ }
3964
+ .ScSidebarShell_identityRow,
3965
+ .ScSidebarShell_actionRow {
3966
+ display: flex;
3967
+ width: 100%;
3968
+ min-width: 0;
3969
+ align-items: center;
3970
+ border: 0;
3971
+ border-radius: var(--radius-xl, 12px);
3972
+ background: transparent;
3973
+ color: var(--alias-text---icons-primary, #f5f5f5);
3974
+ font: inherit;
3975
+ text-align: left;
3976
+ }
3977
+ button.ScSidebarShell_identityRow,
3978
+ button.ScSidebarShell_actionRow {
3979
+ cursor: pointer;
3980
+ }
3981
+ button.ScSidebarShell_identityRow:hover,
3982
+ button.ScSidebarShell_actionRow:hover {
3983
+ background: var(--alias-fill-neutral-neutralhover, #242424);
3984
+ }
3985
+ .ScSidebarShell_identityRow {
3986
+ gap: var(--spacing-md, 8px);
3987
+ padding: var(--spacing-md, 8px);
3988
+ }
3989
+ .ScSidebarShell_identityText {
3990
+ display: flex;
3991
+ min-width: 0;
3992
+ flex: 1;
3993
+ flex-direction: column;
3994
+ }
3995
+ .ScSidebarShell_identityName,
3996
+ .ScSidebarShell_identitySubtitle,
3997
+ .ScSidebarShell_rowLabel,
3998
+ .ScSidebarShell_rowValue {
3999
+ overflow: hidden;
4000
+ text-overflow: ellipsis;
4001
+ white-space: nowrap;
4002
+ }
4003
+ .ScSidebarShell_identityName {
4004
+ font-size: 14px;
4005
+ line-height: 20px;
4006
+ font-weight: 500;
4007
+ }
4008
+ .ScSidebarShell_identitySubtitle,
4009
+ .ScSidebarShell_rowValue {
4010
+ color: var(--alias-text---icons-muted, #7a7a7a);
4011
+ font-size: 12px;
4012
+ line-height: 18px;
4013
+ font-weight: 400;
4014
+ }
4015
+ .ScSidebarShell_actionRow {
4016
+ min-height: 40px;
4017
+ gap: var(--spacing-md, 8px);
4018
+ padding: var(--spacing-md, 8px);
4019
+ }
4020
+ .ScSidebarShell_actionRowStatic {
4021
+ cursor: default;
4022
+ }
4023
+ .ScSidebarShell_rowIcon,
4024
+ .ScSidebarShell_rowTrailing {
4025
+ display: flex;
4026
+ flex-shrink: 0;
4027
+ align-items: center;
4028
+ justify-content: center;
4029
+ }
4030
+ .ScSidebarShell_rowIcon {
4031
+ width: 20px;
4032
+ height: 20px;
4033
+ }
4034
+ .ScSidebarShell_chevronRight {
4035
+ color: var(--alias-text---icons-muted, #7a7a7a);
4036
+ font-size: 22px;
4037
+ font-weight: 300;
4038
+ line-height: 18px;
4039
+ }
4040
+ .ScSidebarShell_rowLabel {
4041
+ min-width: 0;
4042
+ flex: 1;
4043
+ font-size: 14px;
4044
+ line-height: 20px;
4045
+ font-weight: 400;
4046
+ }
4047
+ .ScSidebarShell_rowValue {
4048
+ max-width: 132px;
4049
+ flex-shrink: 0;
4050
+ }
4051
+ .ScSidebarShell_themePicker {
4052
+ display: grid;
4053
+ grid-template-columns: repeat(3, minmax(0, 1fr));
4054
+ gap: var(--spacing-xs, 4px);
4055
+ padding: var(--spacing-xs, 4px);
4056
+ border: 0.5px solid var(--alias-border-divider, #242424);
4057
+ border-radius: var(--radius-xl, 12px);
4058
+ background: var(--alias-surface-base, #101010);
4059
+ }
4060
+ .ScSidebarShell_themeButton {
4061
+ display: flex;
4062
+ height: 36px;
4063
+ align-items: center;
4064
+ justify-content: center;
4065
+ border: 0;
4066
+ border-radius: var(--radius-lg, 10px);
4067
+ background: transparent;
4068
+ cursor: pointer;
4069
+ }
4070
+ .ScSidebarShell_themeButton:hover {
4071
+ background: var(--alias-fill-neutral-neutralhover, #242424);
4072
+ }
4073
+ .ScSidebarShell_themeButtonSelected,
4074
+ .ScSidebarShell_themeButtonSelected:hover {
4075
+ background: var(--alias-fill-info-solid, #4767ff);
4076
+ }
4077
+ .ScSidebarShell_workspaceTrigger:focus-visible,
4078
+ .ScSidebarShell_searchTrigger:focus-visible,
4079
+ .ScSidebarShell_identityRow:focus-visible,
4080
+ .ScSidebarShell_actionRow:focus-visible,
4081
+ .ScSidebarShell_themeButton:focus-visible {
4082
+ outline: 2px solid var(--alias-border-info, #6883ff);
4083
+ outline-offset: 2px;
4084
+ }
4085
+
3760
4086
  /* src/SC-Artifax-Sidebar/ScArtifaxSidebar.module.css */
3761
4087
  .ScArtifaxSidebar_scArtifaxSidebar,
3762
4088
  .ScArtifaxSidebar_scArtifaxSidebar * {
@@ -3767,6 +4093,7 @@
3767
4093
  align-items: center;
3768
4094
  height: 100%;
3769
4095
  flex-shrink: 0;
4096
+ position: relative;
3770
4097
  }
3771
4098
  .ScArtifaxSidebar_scArtifaxSidebar.ScArtifaxSidebar_variantExpanded {
3772
4099
  padding: var(--spacing-3xl, 1rem);
@@ -5818,6 +6145,10 @@
5818
6145
  .ScWorkspaceSwitchCard_cardOtherHover {
5819
6146
  background: var(--alias-surface-basesubtle, #151515);
5820
6147
  }
6148
+ .ScWorkspaceSwitchCard_cardOther:focus-visible {
6149
+ outline: 2px solid var(--alias-border-focus, #526cff);
6150
+ outline-offset: 2px;
6151
+ }
5821
6152
  .ScWorkspaceSwitchCard_wsInfo {
5822
6153
  display: flex;
5823
6154
  flex: 1 0 0;