unifyedx-storybook-new 0.1.15 → 0.1.18
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/README.md +2 -2
- package/dist/unifyedx-storybook-new.css +279 -0
- package/dist/unifyedx-storybook-new.es.js +27563 -282
- package/package.json +26 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# 🎨
|
|
1
|
+
# 🎨 Unifyed Component Library
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
A beautifully crafted collection of reusable, accessible React components built with modern web standards. Perfect for building consistent, production-ready UIs faster.
|
|
9
9
|
|
|
10
|
-

|
|
11
11
|
|
|
12
12
|
## ✨ Features
|
|
13
13
|
|
|
@@ -3662,6 +3662,285 @@
|
|
|
3662
3662
|
width: 1rem;
|
|
3663
3663
|
height: 1rem;
|
|
3664
3664
|
}
|
|
3665
|
+
|
|
3666
|
+
.invite-flow-wrapper {
|
|
3667
|
+
display: flex;
|
|
3668
|
+
flex-direction: column;
|
|
3669
|
+
height: 100%;
|
|
3670
|
+
background-color: white;
|
|
3671
|
+
font-family: sans-serif;
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
/* --- Header --- */
|
|
3675
|
+
|
|
3676
|
+
.invite-flow-header {
|
|
3677
|
+
display: flex;
|
|
3678
|
+
align-items: center;
|
|
3679
|
+
justify-content: space-between;
|
|
3680
|
+
padding: 1rem;
|
|
3681
|
+
border-bottom: 1px solid #e5e7eb;
|
|
3682
|
+
flex-shrink: 0;
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
.invite-flow-title {
|
|
3686
|
+
font-size: 1.25rem;
|
|
3687
|
+
font-weight: 600;
|
|
3688
|
+
color: #111827;
|
|
3689
|
+
}
|
|
3690
|
+
|
|
3691
|
+
.header-actions {
|
|
3692
|
+
display: flex;
|
|
3693
|
+
align-items: center;
|
|
3694
|
+
gap: 1rem;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.copy-link-button {
|
|
3698
|
+
display: flex;
|
|
3699
|
+
align-items: center;
|
|
3700
|
+
gap: 0.5rem;
|
|
3701
|
+
font-size: 0.875rem;
|
|
3702
|
+
color: #2563eb;
|
|
3703
|
+
font-weight: 600;
|
|
3704
|
+
background: none;
|
|
3705
|
+
border: none;
|
|
3706
|
+
cursor: pointer;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.copy-link-button:hover {
|
|
3710
|
+
color: #1d4ed8;
|
|
3711
|
+
}
|
|
3712
|
+
|
|
3713
|
+
.close-button {
|
|
3714
|
+
color: #6b7280;
|
|
3715
|
+
background: none;
|
|
3716
|
+
border: none;
|
|
3717
|
+
cursor: pointer;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
.close-button:hover {
|
|
3721
|
+
color: #111827;
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3724
|
+
/* --- Main Content --- */
|
|
3725
|
+
|
|
3726
|
+
.invite-flow-form {
|
|
3727
|
+
display: flex;
|
|
3728
|
+
flex-direction: column;
|
|
3729
|
+
flex-grow: 1;
|
|
3730
|
+
overflow: hidden;
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
.invite-flow-main {
|
|
3734
|
+
flex-grow: 1;
|
|
3735
|
+
padding: 1rem;
|
|
3736
|
+
overflow-y: auto;
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3739
|
+
.main-content-spacing > *:not(:last-child) {
|
|
3740
|
+
margin-bottom: 1.5rem;
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3743
|
+
/* Search Section */
|
|
3744
|
+
|
|
3745
|
+
.search-grid {
|
|
3746
|
+
position: relative;
|
|
3747
|
+
display: grid;
|
|
3748
|
+
grid-template-columns: 1fr 2fr;
|
|
3749
|
+
gap: 0.5rem;
|
|
3750
|
+
align-items: flex-start;
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
.search-results-panel {
|
|
3754
|
+
position: absolute;
|
|
3755
|
+
top: 100%;
|
|
3756
|
+
margin-top: 0.5rem;
|
|
3757
|
+
width: 100%;
|
|
3758
|
+
background-color: white;
|
|
3759
|
+
border: 1px solid #d1d5db;
|
|
3760
|
+
border-radius: 0.5rem;
|
|
3761
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
3762
|
+
z-index: 10;
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
.search-results-list {
|
|
3766
|
+
max-height: 15rem;
|
|
3767
|
+
overflow-y: auto;
|
|
3768
|
+
padding: 0.25rem;
|
|
3769
|
+
}
|
|
3770
|
+
|
|
3771
|
+
.search-result-item {
|
|
3772
|
+
display: flex;
|
|
3773
|
+
align-items: center;
|
|
3774
|
+
gap: 0.75rem;
|
|
3775
|
+
padding: 0.5rem;
|
|
3776
|
+
border-radius: 0.375rem;
|
|
3777
|
+
}
|
|
3778
|
+
|
|
3779
|
+
.search-result-item:not(.disabled) {
|
|
3780
|
+
cursor: pointer;
|
|
3781
|
+
}
|
|
3782
|
+
|
|
3783
|
+
.search-result-item:not(.disabled):hover {
|
|
3784
|
+
background-color: #eef2ff;
|
|
3785
|
+
}
|
|
3786
|
+
|
|
3787
|
+
.search-result-item.disabled {
|
|
3788
|
+
cursor: not-allowed;
|
|
3789
|
+
opacity: 0.7;
|
|
3790
|
+
}
|
|
3791
|
+
|
|
3792
|
+
.result-checkbox {
|
|
3793
|
+
height: 1rem;
|
|
3794
|
+
width: 1rem;
|
|
3795
|
+
color: #2563eb;
|
|
3796
|
+
border-color: #d1d5db;
|
|
3797
|
+
border-radius: 0.25rem;
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
.result-avatar {
|
|
3801
|
+
width: 2rem;
|
|
3802
|
+
height: 2rem;
|
|
3803
|
+
border-radius: 9999px;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
.result-name {
|
|
3807
|
+
font-weight: 500;
|
|
3808
|
+
color: #1f2937;
|
|
3809
|
+
text-overflow: ellipsis;
|
|
3810
|
+
white-space: nowrap;
|
|
3811
|
+
overflow: hidden;
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
.result-status-badge {
|
|
3815
|
+
font-size: 0.875rem;
|
|
3816
|
+
padding: 2px 12px;
|
|
3817
|
+
border: 1px dashed;
|
|
3818
|
+
border-radius: 9999px;
|
|
3819
|
+
background-color: #f0fdfa;
|
|
3820
|
+
color: #0f766e;
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
.result-status-text {
|
|
3824
|
+
font-size: 0.875rem;
|
|
3825
|
+
color: #6b7280;
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
.search-panel-footer {
|
|
3829
|
+
display: flex;
|
|
3830
|
+
justify-content: flex-end;
|
|
3831
|
+
gap: 0.5rem;
|
|
3832
|
+
padding: 0.5rem;
|
|
3833
|
+
border-top: 1px solid #e5e7eb;
|
|
3834
|
+
}
|
|
3835
|
+
|
|
3836
|
+
/* Pending Invites */
|
|
3837
|
+
|
|
3838
|
+
.pending-invites-section {
|
|
3839
|
+
padding-top: 1rem;
|
|
3840
|
+
}
|
|
3841
|
+
|
|
3842
|
+
.pending-invites-header {
|
|
3843
|
+
display: flex;
|
|
3844
|
+
justify-content: space-between;
|
|
3845
|
+
align-items: center;
|
|
3846
|
+
}
|
|
3847
|
+
|
|
3848
|
+
.pending-invites-title {
|
|
3849
|
+
font-weight: 600;
|
|
3850
|
+
color: #1f2937;
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
.pending-invites-list {
|
|
3854
|
+
margin-top: 0.75rem;
|
|
3855
|
+
display: flex;
|
|
3856
|
+
flex-direction: column;
|
|
3857
|
+
gap: 0.5rem;
|
|
3858
|
+
}
|
|
3859
|
+
|
|
3860
|
+
.pending-item {
|
|
3861
|
+
display: flex;
|
|
3862
|
+
align-items: center;
|
|
3863
|
+
justify-content: space-between;
|
|
3864
|
+
padding: 0.5rem;
|
|
3865
|
+
background-color: #f9fafb;
|
|
3866
|
+
border: 1px solid #e5e7eb;
|
|
3867
|
+
border-radius: 0.5rem;
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
.pending-item-details {
|
|
3871
|
+
display: flex;
|
|
3872
|
+
align-items: center;
|
|
3873
|
+
gap: 0.75rem;
|
|
3874
|
+
overflow: hidden;
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
.pending-item-avatar {
|
|
3878
|
+
width: 2rem;
|
|
3879
|
+
height: 2rem;
|
|
3880
|
+
border-radius: 9999px;
|
|
3881
|
+
flex-shrink: 0;
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
.pending-item-name {
|
|
3885
|
+
font-weight: 500;
|
|
3886
|
+
font-size: 0.875rem;
|
|
3887
|
+
color: #1f2937;
|
|
3888
|
+
overflow: hidden;
|
|
3889
|
+
text-overflow: ellipsis;
|
|
3890
|
+
white-space: nowrap;
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
.pending-item-actions {
|
|
3894
|
+
display: flex;
|
|
3895
|
+
align-items: center;
|
|
3896
|
+
gap: 0.75rem;
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
.pending-item-permission {
|
|
3900
|
+
font-size: 0.875rem;
|
|
3901
|
+
color: #6b7280;
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
.remove-invite-button {
|
|
3905
|
+
color: #9ca3af;
|
|
3906
|
+
background: none;
|
|
3907
|
+
border: none;
|
|
3908
|
+
cursor: pointer;
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
.remove-invite-button:hover {
|
|
3912
|
+
color: #ef4444;
|
|
3913
|
+
}
|
|
3914
|
+
|
|
3915
|
+
/* --- Footer --- */
|
|
3916
|
+
|
|
3917
|
+
.invite-flow-footer {
|
|
3918
|
+
padding: 1rem;
|
|
3919
|
+
border-top: 1px solid #e5e7eb;
|
|
3920
|
+
flex-shrink: 0;
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
.footer-content {
|
|
3924
|
+
display: flex;
|
|
3925
|
+
justify-content: space-between;
|
|
3926
|
+
align-items: center;
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
.invite-count {
|
|
3930
|
+
font-size: 0.875rem;
|
|
3931
|
+
color: #4b5563;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
.footer-buttons {
|
|
3935
|
+
display: flex;
|
|
3936
|
+
gap: 0.5rem;
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
.error-message {
|
|
3940
|
+
margin-top: 0.5rem;
|
|
3941
|
+
font-size: 0.875rem;
|
|
3942
|
+
color: #dc2626;
|
|
3943
|
+
}
|
|
3665
3944
|
.avatar-container {
|
|
3666
3945
|
display: inline-flex;
|
|
3667
3946
|
align-items: center;
|