@alexochihua/exos-library-components 2.2.2 → 2.2.3
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/exos-library-components.common.js +4796 -5265
- package/dist/exos-library-components.css +1 -1
- package/dist/exos-library-components.umd.js +4796 -5265
- package/dist/exos-library-components.umd.min.js +1 -1
- package/dist/style.css +120 -3
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -925,6 +925,13 @@ video {
|
|
|
925
925
|
flex-direction: column;
|
|
926
926
|
}
|
|
927
927
|
|
|
928
|
+
.e-card__mainContainer {
|
|
929
|
+
display: flex;
|
|
930
|
+
height: 100%;
|
|
931
|
+
width: 100%;
|
|
932
|
+
flex-direction: column;
|
|
933
|
+
}
|
|
934
|
+
|
|
928
935
|
.e-card-bgColor {
|
|
929
936
|
background-color: var(--color-field-light);
|
|
930
937
|
}
|
|
@@ -934,11 +941,21 @@ video {
|
|
|
934
941
|
}
|
|
935
942
|
|
|
936
943
|
.e-card-borderBgColor {
|
|
937
|
-
border-color:
|
|
944
|
+
border-color: var(--color-secondary);
|
|
945
|
+
--tw-border-opacity: 0.5;
|
|
938
946
|
}
|
|
939
947
|
|
|
940
|
-
|
|
941
|
-
|
|
948
|
+
.e-card__label {
|
|
949
|
+
position: absolute;
|
|
950
|
+
top: -0.875rem;
|
|
951
|
+
left: 1.5rem;
|
|
952
|
+
padding-left: 0.25rem;
|
|
953
|
+
padding-right: 0.25rem;
|
|
954
|
+
font-weight: 700;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.e-card__labelColor {
|
|
958
|
+
color: var(--color-secondary);
|
|
942
959
|
}
|
|
943
960
|
|
|
944
961
|
.e-checkbox {
|
|
@@ -1166,6 +1183,13 @@ video {
|
|
|
1166
1183
|
color: rgb(148 163 184 / var(--tw-text-opacity));
|
|
1167
1184
|
}
|
|
1168
1185
|
|
|
1186
|
+
.e-dropdown-mainContainer {
|
|
1187
|
+
position: relative;
|
|
1188
|
+
z-index: 30;
|
|
1189
|
+
width: -moz-fit-content;
|
|
1190
|
+
width: fit-content;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1169
1193
|
.e-dropdown-base:disabled {
|
|
1170
1194
|
cursor: not-allowed;
|
|
1171
1195
|
border-width: 2px;
|
|
@@ -1921,6 +1945,12 @@ video {
|
|
|
1921
1945
|
color: var(--color-secondary);
|
|
1922
1946
|
}
|
|
1923
1947
|
|
|
1948
|
+
.e-btnGroup__mainContainer {
|
|
1949
|
+
display: flex;
|
|
1950
|
+
width: -moz-fit-content;
|
|
1951
|
+
width: fit-content;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1924
1954
|
/* ===== utilities ===== */
|
|
1925
1955
|
|
|
1926
1956
|
.exos-sr-only {
|
|
@@ -2295,6 +2325,10 @@ video {
|
|
|
2295
2325
|
min-height: 10rem;
|
|
2296
2326
|
}
|
|
2297
2327
|
|
|
2328
|
+
.exos-min-h-\[5rem\] {
|
|
2329
|
+
min-height: 5rem;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2298
2332
|
.exos-w-0 {
|
|
2299
2333
|
width: 0px;
|
|
2300
2334
|
}
|
|
@@ -2770,6 +2804,11 @@ video {
|
|
|
2770
2804
|
border-bottom-left-radius: 1rem;
|
|
2771
2805
|
}
|
|
2772
2806
|
|
|
2807
|
+
.exos-rounded-l-full {
|
|
2808
|
+
border-top-left-radius: 9999px;
|
|
2809
|
+
border-bottom-left-radius: 9999px;
|
|
2810
|
+
}
|
|
2811
|
+
|
|
2773
2812
|
.exos-rounded-l-lg {
|
|
2774
2813
|
border-top-left-radius: 0.5rem;
|
|
2775
2814
|
border-bottom-left-radius: 0.5rem;
|
|
@@ -2790,6 +2829,36 @@ video {
|
|
|
2790
2829
|
border-bottom-left-radius: 0.75rem;
|
|
2791
2830
|
}
|
|
2792
2831
|
|
|
2832
|
+
.exos-rounded-r-2xl {
|
|
2833
|
+
border-top-right-radius: 1rem;
|
|
2834
|
+
border-bottom-right-radius: 1rem;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
.exos-rounded-r-full {
|
|
2838
|
+
border-top-right-radius: 9999px;
|
|
2839
|
+
border-bottom-right-radius: 9999px;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
.exos-rounded-r-lg {
|
|
2843
|
+
border-top-right-radius: 0.5rem;
|
|
2844
|
+
border-bottom-right-radius: 0.5rem;
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
.exos-rounded-r-md {
|
|
2848
|
+
border-top-right-radius: 0.375rem;
|
|
2849
|
+
border-bottom-right-radius: 0.375rem;
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
.exos-rounded-r-sm {
|
|
2853
|
+
border-top-right-radius: 0.125rem;
|
|
2854
|
+
border-bottom-right-radius: 0.125rem;
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
.exos-rounded-r-xl {
|
|
2858
|
+
border-top-right-radius: 0.75rem;
|
|
2859
|
+
border-bottom-right-radius: 0.75rem;
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2793
2862
|
.exos-rounded-t-2xl {
|
|
2794
2863
|
border-top-left-radius: 1rem;
|
|
2795
2864
|
border-top-right-radius: 1rem;
|
|
@@ -2953,6 +3022,11 @@ video {
|
|
|
2953
3022
|
--tw-border-opacity: 0.2;
|
|
2954
3023
|
}
|
|
2955
3024
|
|
|
3025
|
+
.exos-bg-amber-400 {
|
|
3026
|
+
--tw-bg-opacity: 1;
|
|
3027
|
+
background-color: rgb(251 191 36 / var(--tw-bg-opacity));
|
|
3028
|
+
}
|
|
3029
|
+
|
|
2956
3030
|
.exos-bg-bgGralLight {
|
|
2957
3031
|
--tw-bg-opacity: 1;
|
|
2958
3032
|
background-color: rgb(250 251 251 / var(--tw-bg-opacity));
|
|
@@ -2982,11 +3056,21 @@ video {
|
|
|
2982
3056
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
|
2983
3057
|
}
|
|
2984
3058
|
|
|
3059
|
+
.exos-bg-green-400 {
|
|
3060
|
+
--tw-bg-opacity: 1;
|
|
3061
|
+
background-color: rgb(74 222 128 / var(--tw-bg-opacity));
|
|
3062
|
+
}
|
|
3063
|
+
|
|
2985
3064
|
.exos-bg-green-500 {
|
|
2986
3065
|
--tw-bg-opacity: 1;
|
|
2987
3066
|
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
|
|
2988
3067
|
}
|
|
2989
3068
|
|
|
3069
|
+
.exos-bg-indigo-400 {
|
|
3070
|
+
--tw-bg-opacity: 1;
|
|
3071
|
+
background-color: rgb(129 140 248 / var(--tw-bg-opacity));
|
|
3072
|
+
}
|
|
3073
|
+
|
|
2990
3074
|
.exos-bg-main {
|
|
2991
3075
|
background-color: var(--color-main-light);
|
|
2992
3076
|
}
|
|
@@ -3234,6 +3318,10 @@ video {
|
|
|
3234
3318
|
padding-top: 1rem;
|
|
3235
3319
|
}
|
|
3236
3320
|
|
|
3321
|
+
.exos-pt-5 {
|
|
3322
|
+
padding-top: 1.25rem;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3237
3325
|
.exos-text-left {
|
|
3238
3326
|
text-align: left;
|
|
3239
3327
|
}
|
|
@@ -3398,6 +3486,11 @@ video {
|
|
|
3398
3486
|
color: var(--color-primary);
|
|
3399
3487
|
}
|
|
3400
3488
|
|
|
3489
|
+
.exos-text-red-400 {
|
|
3490
|
+
--tw-text-opacity: 1;
|
|
3491
|
+
color: rgb(248 113 113 / var(--tw-text-opacity));
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3401
3494
|
.exos-text-red-500 {
|
|
3402
3495
|
--tw-text-opacity: 1;
|
|
3403
3496
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
@@ -3689,16 +3782,36 @@ video {
|
|
|
3689
3782
|
border-color: rgb(22 163 74 / var(--tw-border-opacity));
|
|
3690
3783
|
}
|
|
3691
3784
|
|
|
3785
|
+
.hover\:exos-bg-amber-500:hover {
|
|
3786
|
+
--tw-bg-opacity: 1;
|
|
3787
|
+
background-color: rgb(245 158 11 / var(--tw-bg-opacity));
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3692
3790
|
.hover\:exos-bg-black:hover {
|
|
3693
3791
|
--tw-bg-opacity: 1;
|
|
3694
3792
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
3695
3793
|
}
|
|
3696
3794
|
|
|
3795
|
+
.hover\:exos-bg-blue-400:hover {
|
|
3796
|
+
--tw-bg-opacity: 1;
|
|
3797
|
+
background-color: rgb(96 165 250 / var(--tw-bg-opacity));
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
.hover\:exos-bg-blue-500:hover {
|
|
3801
|
+
--tw-bg-opacity: 1;
|
|
3802
|
+
background-color: rgb(59 130 246 / var(--tw-bg-opacity));
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3697
3805
|
.hover\:exos-bg-gray-100:hover {
|
|
3698
3806
|
--tw-bg-opacity: 1;
|
|
3699
3807
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
3700
3808
|
}
|
|
3701
3809
|
|
|
3810
|
+
.hover\:exos-bg-indigo-500:hover {
|
|
3811
|
+
--tw-bg-opacity: 1;
|
|
3812
|
+
background-color: rgb(99 102 241 / var(--tw-bg-opacity));
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3702
3815
|
.hover\:exos-bg-secondary:hover {
|
|
3703
3816
|
background-color: var(--color-secondary);
|
|
3704
3817
|
}
|
|
@@ -4263,6 +4376,10 @@ video {
|
|
|
4263
4376
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
4264
4377
|
}
|
|
4265
4378
|
|
|
4379
|
+
.lg\:exos-grid-cols-4 {
|
|
4380
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4266
4383
|
.lg\:exos-flex-row {
|
|
4267
4384
|
flex-direction: row;
|
|
4268
4385
|
}
|