@evercam/ui 0.0.55-beta.4 → 0.0.55-beta.40
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 +3 -0
- package/dist/attributes.json +298 -36
- package/dist/index.mjs +3725 -2356
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ECompareSeparator.vue.d.ts +7 -0
- package/dist/src/components/EGlobalSearch.vue.d.ts +29 -0
- package/dist/src/components/EHeatmapBar.vue.d.ts +3 -0
- package/dist/src/components/EHoursHeatmap.vue.d.ts +3 -0
- package/dist/src/components/EInput.vue.d.ts +3 -0
- package/dist/src/components/EReadMore.vue.d.ts +24 -0
- package/dist/src/components/ETimeline.vue.d.ts +32 -11
- package/dist/src/components/ETimelineMilestone.vue.d.ts +2 -2
- package/dist/src/components/EToggleSwitch.vue.d.ts +34 -0
- package/dist/src/components/ETruncatedDiv.vue.d.ts +8 -0
- package/dist/src/components/EVideoPlayer.vue.d.ts +181 -15
- package/dist/src/components/EZoomable.vue.d.ts +73 -0
- package/dist/src/components/styles/input.d.ts +140 -0
- package/dist/src/constants.d.ts +2 -0
- package/dist/src/index.d.ts +380 -24
- package/dist/src/mixins/event-listeners.d.ts +13 -0
- package/dist/src/mixins/inactivity-listener.d.ts +25 -0
- package/dist/src/mixins/index.d.ts +4 -0
- package/dist/src/mixins/timeouts.d.ts +8 -0
- package/dist/src/types.d.ts +30 -1
- package/dist/src/utils.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +409 -0
- package/dist/tags.json +104 -15
- package/dist/web-types.json +688 -80
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -212,21 +212,52 @@
|
|
|
212
212
|
.e-relative{
|
|
213
213
|
position: relative;
|
|
214
214
|
}
|
|
215
|
+
.e-inset-0{
|
|
216
|
+
inset: 0px;
|
|
217
|
+
}
|
|
218
|
+
.e-inset-y-0{
|
|
219
|
+
top: 0px;
|
|
220
|
+
bottom: 0px;
|
|
221
|
+
}
|
|
215
222
|
.-e-left-2\/4{
|
|
216
223
|
left: -50%;
|
|
217
224
|
}
|
|
225
|
+
.e-bottom-0{
|
|
226
|
+
bottom: 0px;
|
|
227
|
+
}
|
|
228
|
+
.e-end-0{
|
|
229
|
+
inset-inline-end: 0px;
|
|
230
|
+
}
|
|
231
|
+
.e-left-0{
|
|
232
|
+
left: 0px;
|
|
233
|
+
}
|
|
218
234
|
.e-right-0{
|
|
219
235
|
right: 0px;
|
|
220
236
|
}
|
|
237
|
+
.e-start-0{
|
|
238
|
+
inset-inline-start: 0px;
|
|
239
|
+
}
|
|
221
240
|
.e-top-0{
|
|
222
241
|
top: 0px;
|
|
223
242
|
}
|
|
224
243
|
.e-z-50{
|
|
225
244
|
z-index: 50;
|
|
226
245
|
}
|
|
246
|
+
.e-z-\[-1\]{
|
|
247
|
+
z-index: -1;
|
|
248
|
+
}
|
|
249
|
+
.e-z-\[5\]{
|
|
250
|
+
z-index: 5;
|
|
251
|
+
}
|
|
227
252
|
.e-m-2{
|
|
228
253
|
margin: 0.5rem;
|
|
229
254
|
}
|
|
255
|
+
.e-m-3{
|
|
256
|
+
margin: 0.75rem;
|
|
257
|
+
}
|
|
258
|
+
.e-m-auto{
|
|
259
|
+
margin: auto;
|
|
260
|
+
}
|
|
230
261
|
.e-mx-auto{
|
|
231
262
|
margin-left: auto;
|
|
232
263
|
margin-right: auto;
|
|
@@ -234,6 +265,9 @@
|
|
|
234
265
|
.e-ml-8{
|
|
235
266
|
margin-left: 2rem;
|
|
236
267
|
}
|
|
268
|
+
.e-mr-2{
|
|
269
|
+
margin-right: 0.5rem;
|
|
270
|
+
}
|
|
237
271
|
.e-mt-2{
|
|
238
272
|
margin-top: 0.5rem;
|
|
239
273
|
}
|
|
@@ -249,6 +283,15 @@
|
|
|
249
283
|
.e-inline-flex{
|
|
250
284
|
display: inline-flex;
|
|
251
285
|
}
|
|
286
|
+
.e-hidden{
|
|
287
|
+
display: none;
|
|
288
|
+
}
|
|
289
|
+
.e-aspect-auto{
|
|
290
|
+
aspect-ratio: auto;
|
|
291
|
+
}
|
|
292
|
+
.e-aspect-video{
|
|
293
|
+
aspect-ratio: 16 / 9;
|
|
294
|
+
}
|
|
252
295
|
.e-h-10{
|
|
253
296
|
height: 2.5rem;
|
|
254
297
|
}
|
|
@@ -285,9 +328,18 @@
|
|
|
285
328
|
.e-h-8{
|
|
286
329
|
height: 2rem;
|
|
287
330
|
}
|
|
331
|
+
.e-h-auto{
|
|
332
|
+
height: auto;
|
|
333
|
+
}
|
|
288
334
|
.e-h-full{
|
|
289
335
|
height: 100%;
|
|
290
336
|
}
|
|
337
|
+
.e-h-min{
|
|
338
|
+
height: min-content;
|
|
339
|
+
}
|
|
340
|
+
.e-min-h-\[400px\]{
|
|
341
|
+
min-height: 400px;
|
|
342
|
+
}
|
|
291
343
|
.\!e-w-auto{
|
|
292
344
|
width: auto !important;
|
|
293
345
|
}
|
|
@@ -321,6 +373,9 @@
|
|
|
321
373
|
.e-w-5{
|
|
322
374
|
width: 1.25rem;
|
|
323
375
|
}
|
|
376
|
+
.e-w-6{
|
|
377
|
+
width: 1.5rem;
|
|
378
|
+
}
|
|
324
379
|
.e-w-60{
|
|
325
380
|
width: 15rem;
|
|
326
381
|
}
|
|
@@ -330,6 +385,9 @@
|
|
|
330
385
|
.e-w-auto{
|
|
331
386
|
width: auto;
|
|
332
387
|
}
|
|
388
|
+
.e-w-fit{
|
|
389
|
+
width: fit-content;
|
|
390
|
+
}
|
|
333
391
|
.e-w-full{
|
|
334
392
|
width: 100%;
|
|
335
393
|
}
|
|
@@ -420,6 +478,9 @@
|
|
|
420
478
|
.e-max-w-\[5rem\]{
|
|
421
479
|
max-width: 5rem;
|
|
422
480
|
}
|
|
481
|
+
.e-flex-shrink-0{
|
|
482
|
+
flex-shrink: 0;
|
|
483
|
+
}
|
|
423
484
|
.\!e-grow{
|
|
424
485
|
flex-grow: 1 !important;
|
|
425
486
|
}
|
|
@@ -612,6 +673,23 @@
|
|
|
612
673
|
.e-basis-full{
|
|
613
674
|
flex-basis: 100%;
|
|
614
675
|
}
|
|
676
|
+
.e-scale-150{
|
|
677
|
+
--tw-scale-x: 1.5;
|
|
678
|
+
--tw-scale-y: 1.5;
|
|
679
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
680
|
+
}
|
|
681
|
+
.e-cursor-grab{
|
|
682
|
+
cursor: grab;
|
|
683
|
+
}
|
|
684
|
+
.e-cursor-grabbing{
|
|
685
|
+
cursor: grabbing;
|
|
686
|
+
}
|
|
687
|
+
.e-cursor-pointer{
|
|
688
|
+
cursor: pointer;
|
|
689
|
+
}
|
|
690
|
+
.e-touch-none{
|
|
691
|
+
touch-action: none;
|
|
692
|
+
}
|
|
615
693
|
.e-select-none{
|
|
616
694
|
user-select: none;
|
|
617
695
|
}
|
|
@@ -735,6 +813,21 @@
|
|
|
735
813
|
.e-gap-3{
|
|
736
814
|
gap: 0.75rem;
|
|
737
815
|
}
|
|
816
|
+
.e-gap-6{
|
|
817
|
+
gap: 1.5rem;
|
|
818
|
+
}
|
|
819
|
+
.e-gap-x-1{
|
|
820
|
+
column-gap: 0.25rem;
|
|
821
|
+
}
|
|
822
|
+
.e-gap-x-1\.5{
|
|
823
|
+
column-gap: 0.375rem;
|
|
824
|
+
}
|
|
825
|
+
.e-gap-x-2{
|
|
826
|
+
column-gap: 0.5rem;
|
|
827
|
+
}
|
|
828
|
+
.e-gap-x-2\.5{
|
|
829
|
+
column-gap: 0.625rem;
|
|
830
|
+
}
|
|
738
831
|
.e-space-x-2 > :not([hidden]) ~ :not([hidden]){
|
|
739
832
|
--tw-space-x-reverse: 0;
|
|
740
833
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
@@ -770,9 +863,17 @@
|
|
|
770
863
|
.e-overflow-auto{
|
|
771
864
|
overflow: auto;
|
|
772
865
|
}
|
|
866
|
+
.e-overflow-hidden{
|
|
867
|
+
overflow: hidden;
|
|
868
|
+
}
|
|
773
869
|
.e-overflow-x-hidden{
|
|
774
870
|
overflow-x: hidden;
|
|
775
871
|
}
|
|
872
|
+
.e-truncate{
|
|
873
|
+
overflow: hidden;
|
|
874
|
+
text-overflow: ellipsis;
|
|
875
|
+
white-space: nowrap;
|
|
876
|
+
}
|
|
776
877
|
.e-rounded{
|
|
777
878
|
border-radius: 0.25rem;
|
|
778
879
|
}
|
|
@@ -788,6 +889,9 @@
|
|
|
788
889
|
.e-border{
|
|
789
890
|
border-width: 1px;
|
|
790
891
|
}
|
|
892
|
+
.e-border-0{
|
|
893
|
+
border-width: 0px;
|
|
894
|
+
}
|
|
791
895
|
.e-border-2{
|
|
792
896
|
border-width: 2px;
|
|
793
897
|
}
|
|
@@ -802,6 +906,10 @@
|
|
|
802
906
|
--tw-border-opacity: 1;
|
|
803
907
|
border-color: rgb(55 65 81 / var(--tw-border-opacity));
|
|
804
908
|
}
|
|
909
|
+
.e-bg-\[\#629efc\]{
|
|
910
|
+
--tw-bg-opacity: 1;
|
|
911
|
+
background-color: rgb(98 158 252 / var(--tw-bg-opacity));
|
|
912
|
+
}
|
|
805
913
|
.e-bg-amber-500{
|
|
806
914
|
--tw-bg-opacity: 1;
|
|
807
915
|
background-color: rgb(245 158 11 / var(--tw-bg-opacity));
|
|
@@ -810,6 +918,10 @@
|
|
|
810
918
|
--tw-bg-opacity: 1;
|
|
811
919
|
background-color: rgb(237 99 104 / var(--tw-bg-opacity));
|
|
812
920
|
}
|
|
921
|
+
.e-bg-brand-600{
|
|
922
|
+
--tw-bg-opacity: 1;
|
|
923
|
+
background-color: rgb(156 18 22 / var(--tw-bg-opacity));
|
|
924
|
+
}
|
|
813
925
|
.e-bg-cyan-500{
|
|
814
926
|
--tw-bg-opacity: 1;
|
|
815
927
|
background-color: rgb(6 182 212 / var(--tw-bg-opacity));
|
|
@@ -822,6 +934,10 @@
|
|
|
822
934
|
--tw-bg-opacity: 1;
|
|
823
935
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
824
936
|
}
|
|
937
|
+
.e-bg-gray-600{
|
|
938
|
+
--tw-bg-opacity: 1;
|
|
939
|
+
background-color: rgb(75 85 99 / var(--tw-bg-opacity));
|
|
940
|
+
}
|
|
825
941
|
.e-bg-gray-800{
|
|
826
942
|
--tw-bg-opacity: 1;
|
|
827
943
|
background-color: rgb(31 41 55 / var(--tw-bg-opacity));
|
|
@@ -834,6 +950,9 @@
|
|
|
834
950
|
--tw-bg-opacity: 1;
|
|
835
951
|
background-color: rgb(22 163 74 / var(--tw-bg-opacity));
|
|
836
952
|
}
|
|
953
|
+
.e-bg-inherit{
|
|
954
|
+
background-color: inherit;
|
|
955
|
+
}
|
|
837
956
|
.e-bg-lime-500{
|
|
838
957
|
--tw-bg-opacity: 1;
|
|
839
958
|
background-color: rgb(132 204 22 / var(--tw-bg-opacity));
|
|
@@ -846,6 +965,10 @@
|
|
|
846
965
|
--tw-bg-opacity: 1;
|
|
847
966
|
background-color: rgb(38 38 38 / var(--tw-bg-opacity));
|
|
848
967
|
}
|
|
968
|
+
.e-bg-primary{
|
|
969
|
+
--tw-bg-opacity: 1;
|
|
970
|
+
background-color: rgb(14 165 233 / var(--tw-bg-opacity));
|
|
971
|
+
}
|
|
849
972
|
.e-bg-purple-500{
|
|
850
973
|
--tw-bg-opacity: 1;
|
|
851
974
|
background-color: rgb(168 85 247 / var(--tw-bg-opacity));
|
|
@@ -862,12 +985,19 @@
|
|
|
862
985
|
--tw-bg-opacity: 1;
|
|
863
986
|
background-color: rgb(203 213 225 / var(--tw-bg-opacity));
|
|
864
987
|
}
|
|
988
|
+
.e-bg-white{
|
|
989
|
+
--tw-bg-opacity: 1;
|
|
990
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
991
|
+
}
|
|
865
992
|
.e-object-cover{
|
|
866
993
|
object-fit: cover;
|
|
867
994
|
}
|
|
868
995
|
.e-p-1{
|
|
869
996
|
padding: 0.25rem;
|
|
870
997
|
}
|
|
998
|
+
.e-p-1\.5{
|
|
999
|
+
padding: 0.375rem;
|
|
1000
|
+
}
|
|
871
1001
|
.e-p-2{
|
|
872
1002
|
padding: 0.5rem;
|
|
873
1003
|
}
|
|
@@ -888,16 +1018,116 @@
|
|
|
888
1018
|
padding-left: 0.5rem;
|
|
889
1019
|
padding-right: 0.5rem;
|
|
890
1020
|
}
|
|
1021
|
+
.e-px-2\.5{
|
|
1022
|
+
padding-left: 0.625rem;
|
|
1023
|
+
padding-right: 0.625rem;
|
|
1024
|
+
}
|
|
1025
|
+
.e-px-3{
|
|
1026
|
+
padding-left: 0.75rem;
|
|
1027
|
+
padding-right: 0.75rem;
|
|
1028
|
+
}
|
|
1029
|
+
.e-px-3\.5{
|
|
1030
|
+
padding-left: 0.875rem;
|
|
1031
|
+
padding-right: 0.875rem;
|
|
1032
|
+
}
|
|
891
1033
|
.e-px-4{
|
|
892
1034
|
padding-left: 1rem;
|
|
893
1035
|
padding-right: 1rem;
|
|
894
1036
|
}
|
|
1037
|
+
.e-py-2{
|
|
1038
|
+
padding-top: 0.5rem;
|
|
1039
|
+
padding-bottom: 0.5rem;
|
|
1040
|
+
}
|
|
1041
|
+
.e-py-2\.5{
|
|
1042
|
+
padding-top: 0.625rem;
|
|
1043
|
+
padding-bottom: 0.625rem;
|
|
1044
|
+
}
|
|
1045
|
+
.e-py-3{
|
|
1046
|
+
padding-top: 0.75rem;
|
|
1047
|
+
padding-bottom: 0.75rem;
|
|
1048
|
+
}
|
|
1049
|
+
.e-py-\[\.2rem\]{
|
|
1050
|
+
padding-top: .2rem;
|
|
1051
|
+
padding-bottom: .2rem;
|
|
1052
|
+
}
|
|
895
1053
|
.e-pb-2{
|
|
896
1054
|
padding-bottom: 0.5rem;
|
|
897
1055
|
}
|
|
898
1056
|
.e-pb-4{
|
|
899
1057
|
padding-bottom: 1rem;
|
|
900
1058
|
}
|
|
1059
|
+
.e-pe-10{
|
|
1060
|
+
padding-inline-end: 2.5rem;
|
|
1061
|
+
}
|
|
1062
|
+
.e-pe-11{
|
|
1063
|
+
padding-inline-end: 2.75rem;
|
|
1064
|
+
}
|
|
1065
|
+
.e-pe-12{
|
|
1066
|
+
padding-inline-end: 3rem;
|
|
1067
|
+
}
|
|
1068
|
+
.e-pe-7{
|
|
1069
|
+
padding-inline-end: 1.75rem;
|
|
1070
|
+
}
|
|
1071
|
+
.e-pe-8{
|
|
1072
|
+
padding-inline-end: 2rem;
|
|
1073
|
+
}
|
|
1074
|
+
.e-pe-9{
|
|
1075
|
+
padding-inline-end: 2.25rem;
|
|
1076
|
+
}
|
|
1077
|
+
.e-pl-10{
|
|
1078
|
+
padding-left: 2.5rem;
|
|
1079
|
+
}
|
|
1080
|
+
.e-pl-12{
|
|
1081
|
+
padding-left: 3rem;
|
|
1082
|
+
}
|
|
1083
|
+
.e-pl-8{
|
|
1084
|
+
padding-left: 2rem;
|
|
1085
|
+
}
|
|
1086
|
+
.e-pr-10{
|
|
1087
|
+
padding-right: 2.5rem;
|
|
1088
|
+
}
|
|
1089
|
+
.e-pr-12{
|
|
1090
|
+
padding-right: 3rem;
|
|
1091
|
+
}
|
|
1092
|
+
.e-pr-8{
|
|
1093
|
+
padding-right: 2rem;
|
|
1094
|
+
}
|
|
1095
|
+
.e-ps-10{
|
|
1096
|
+
padding-inline-start: 2.5rem;
|
|
1097
|
+
}
|
|
1098
|
+
.e-ps-11{
|
|
1099
|
+
padding-inline-start: 2.75rem;
|
|
1100
|
+
}
|
|
1101
|
+
.e-ps-12{
|
|
1102
|
+
padding-inline-start: 3rem;
|
|
1103
|
+
}
|
|
1104
|
+
.e-ps-7{
|
|
1105
|
+
padding-inline-start: 1.75rem;
|
|
1106
|
+
}
|
|
1107
|
+
.e-ps-8{
|
|
1108
|
+
padding-inline-start: 2rem;
|
|
1109
|
+
}
|
|
1110
|
+
.e-ps-9{
|
|
1111
|
+
padding-inline-start: 2.25rem;
|
|
1112
|
+
}
|
|
1113
|
+
.e-ps-\[100px\]{
|
|
1114
|
+
padding-inline-start: 100px;
|
|
1115
|
+
}
|
|
1116
|
+
.e-ps-\[109px\]{
|
|
1117
|
+
padding-inline-start: 109px;
|
|
1118
|
+
}
|
|
1119
|
+
.e-ps-\[85px\]{
|
|
1120
|
+
padding-inline-start: 85px;
|
|
1121
|
+
}
|
|
1122
|
+
.e-ps-\[87px\]{
|
|
1123
|
+
padding-inline-start: 87px;
|
|
1124
|
+
}
|
|
1125
|
+
.e-ps-\[96px\]{
|
|
1126
|
+
padding-inline-start: 96px;
|
|
1127
|
+
}
|
|
1128
|
+
.e-ps-\[98px\]{
|
|
1129
|
+
padding-inline-start: 98px;
|
|
1130
|
+
}
|
|
901
1131
|
.e-align-middle{
|
|
902
1132
|
vertical-align: middle;
|
|
903
1133
|
}
|
|
@@ -958,9 +1188,16 @@
|
|
|
958
1188
|
.e-font-semibold{
|
|
959
1189
|
font-weight: 600;
|
|
960
1190
|
}
|
|
1191
|
+
.e-leading-3{
|
|
1192
|
+
line-height: .75rem;
|
|
1193
|
+
}
|
|
961
1194
|
.e-leading-6{
|
|
962
1195
|
line-height: 1.5rem;
|
|
963
1196
|
}
|
|
1197
|
+
.e-text-\[\#000057\]{
|
|
1198
|
+
--tw-text-opacity: 1;
|
|
1199
|
+
color: rgb(0 0 87 / var(--tw-text-opacity));
|
|
1200
|
+
}
|
|
964
1201
|
.e-text-black{
|
|
965
1202
|
--tw-text-opacity: 1;
|
|
966
1203
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
@@ -973,14 +1210,30 @@
|
|
|
973
1210
|
--tw-text-opacity: 1;
|
|
974
1211
|
color: rgb(96 165 250 / var(--tw-text-opacity));
|
|
975
1212
|
}
|
|
1213
|
+
.e-text-gray-100{
|
|
1214
|
+
--tw-text-opacity: 1;
|
|
1215
|
+
color: rgb(243 244 246 / var(--tw-text-opacity));
|
|
1216
|
+
}
|
|
1217
|
+
.e-text-gray-400{
|
|
1218
|
+
--tw-text-opacity: 1;
|
|
1219
|
+
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
1220
|
+
}
|
|
976
1221
|
.e-text-gray-700{
|
|
977
1222
|
--tw-text-opacity: 1;
|
|
978
1223
|
color: rgb(55 65 81 / var(--tw-text-opacity));
|
|
979
1224
|
}
|
|
1225
|
+
.e-text-gray-900{
|
|
1226
|
+
--tw-text-opacity: 1;
|
|
1227
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
|
1228
|
+
}
|
|
980
1229
|
.e-text-green-500{
|
|
981
1230
|
--tw-text-opacity: 1;
|
|
982
1231
|
color: rgb(34 197 94 / var(--tw-text-opacity));
|
|
983
1232
|
}
|
|
1233
|
+
.e-text-primary{
|
|
1234
|
+
--tw-text-opacity: 1;
|
|
1235
|
+
color: rgb(14 165 233 / var(--tw-text-opacity));
|
|
1236
|
+
}
|
|
984
1237
|
.e-text-purple-300{
|
|
985
1238
|
--tw-text-opacity: 1;
|
|
986
1239
|
color: rgb(216 180 254 / var(--tw-text-opacity));
|
|
@@ -1021,11 +1274,25 @@
|
|
|
1021
1274
|
.e-underline-offset-8{
|
|
1022
1275
|
text-underline-offset: 8px;
|
|
1023
1276
|
}
|
|
1277
|
+
.e-placeholder-gray-400::placeholder{
|
|
1278
|
+
--tw-placeholder-opacity: 1;
|
|
1279
|
+
color: rgb(156 163 175 / var(--tw-placeholder-opacity));
|
|
1280
|
+
}
|
|
1281
|
+
.e-shadow{
|
|
1282
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1283
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1284
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1285
|
+
}
|
|
1024
1286
|
.e-shadow-lg{
|
|
1025
1287
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1026
1288
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1027
1289
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1028
1290
|
}
|
|
1291
|
+
.e-shadow-sm{
|
|
1292
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1293
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1294
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1295
|
+
}
|
|
1029
1296
|
.\!-e-outline-offset-1{
|
|
1030
1297
|
outline-offset: -1px !important;
|
|
1031
1298
|
}
|
|
@@ -1098,6 +1365,148 @@
|
|
|
1098
1365
|
.e-outline-offset-8{
|
|
1099
1366
|
outline-offset: 8px;
|
|
1100
1367
|
}
|
|
1368
|
+
.e-ring-1{
|
|
1369
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1370
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1371
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1372
|
+
}
|
|
1373
|
+
.e-ring-inset{
|
|
1374
|
+
--tw-ring-inset: inset;
|
|
1375
|
+
}
|
|
1376
|
+
.e-ring-gray-300{
|
|
1377
|
+
--tw-ring-opacity: 1;
|
|
1378
|
+
--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
|
|
1379
|
+
}
|
|
1380
|
+
.e-ring-gray-700{
|
|
1381
|
+
--tw-ring-opacity: 1;
|
|
1382
|
+
--tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity));
|
|
1383
|
+
}
|
|
1384
|
+
.e-blur-video-poster{
|
|
1385
|
+
--tw-blur: blur(32px);
|
|
1386
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1387
|
+
}
|
|
1388
|
+
.e-transition{
|
|
1389
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1390
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1391
|
+
transition-duration: 150ms;
|
|
1392
|
+
}
|
|
1393
|
+
.e-transition-colors{
|
|
1394
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1395
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1396
|
+
transition-duration: 150ms;
|
|
1397
|
+
}
|
|
1398
|
+
.e-duration-200{
|
|
1399
|
+
transition-duration: 200ms;
|
|
1400
|
+
}
|
|
1401
|
+
.e-ease-in-out{
|
|
1402
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1403
|
+
}
|
|
1404
|
+
.file\:e-absolute::file-selector-button{
|
|
1405
|
+
position: absolute;
|
|
1406
|
+
}
|
|
1407
|
+
.file\:e-inset-y-0::file-selector-button{
|
|
1408
|
+
top: 0px;
|
|
1409
|
+
bottom: 0px;
|
|
1410
|
+
}
|
|
1411
|
+
.file\:e-left-0::file-selector-button{
|
|
1412
|
+
left: 0px;
|
|
1413
|
+
}
|
|
1414
|
+
.file\:e-m-0::file-selector-button{
|
|
1415
|
+
margin: 0px;
|
|
1416
|
+
}
|
|
1417
|
+
.file\:e-cursor-pointer::file-selector-button{
|
|
1418
|
+
cursor: pointer;
|
|
1419
|
+
}
|
|
1420
|
+
.file\:e-rounded-l-md::file-selector-button{
|
|
1421
|
+
border-top-left-radius: 0.375rem;
|
|
1422
|
+
border-bottom-left-radius: 0.375rem;
|
|
1423
|
+
}
|
|
1424
|
+
.file\:e-border-0::file-selector-button{
|
|
1425
|
+
border-width: 0px;
|
|
1426
|
+
}
|
|
1427
|
+
.file\:e-bg-gray-50::file-selector-button{
|
|
1428
|
+
--tw-bg-opacity: 1;
|
|
1429
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
1430
|
+
}
|
|
1431
|
+
.file\:e-font-medium::file-selector-button{
|
|
1432
|
+
font-weight: 500;
|
|
1433
|
+
}
|
|
1434
|
+
.file\:e-text-gray-900::file-selector-button{
|
|
1435
|
+
--tw-text-opacity: 1;
|
|
1436
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
|
1437
|
+
}
|
|
1438
|
+
.file\:e-ring-1::file-selector-button{
|
|
1439
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1440
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1441
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1442
|
+
}
|
|
1443
|
+
.file\:e-ring-gray-300::file-selector-button{
|
|
1444
|
+
--tw-ring-opacity: 1;
|
|
1445
|
+
--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
|
|
1446
|
+
}
|
|
1447
|
+
.hover\:e-ring-gray-100:hover{
|
|
1448
|
+
--tw-ring-opacity: 1;
|
|
1449
|
+
--tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity));
|
|
1450
|
+
}
|
|
1451
|
+
.hover\:file\:e-bg-gray-100::file-selector-button:hover{
|
|
1452
|
+
--tw-bg-opacity: 1;
|
|
1453
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
1454
|
+
}
|
|
1455
|
+
.focus\:e-shadow-none:focus{
|
|
1456
|
+
--tw-shadow: 0 0 #0000;
|
|
1457
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1458
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1459
|
+
}
|
|
1460
|
+
.focus\:e-outline-none:focus{
|
|
1461
|
+
outline: 2px solid transparent;
|
|
1462
|
+
outline-offset: 2px;
|
|
1463
|
+
}
|
|
1464
|
+
.focus\:e-ring-0:focus{
|
|
1465
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1466
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1467
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1468
|
+
}
|
|
1469
|
+
.focus\:e-ring-2:focus{
|
|
1470
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1471
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1472
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1473
|
+
}
|
|
1474
|
+
.focus\:e-ring-blue-500:focus{
|
|
1475
|
+
--tw-ring-opacity: 1;
|
|
1476
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
1477
|
+
}
|
|
1478
|
+
.disabled\:e-cursor-not-allowed:disabled{
|
|
1479
|
+
cursor: not-allowed;
|
|
1480
|
+
}
|
|
1481
|
+
.disabled\:e-opacity-75:disabled{
|
|
1482
|
+
opacity: 0.75;
|
|
1483
|
+
}
|
|
1484
|
+
@media (prefers-color-scheme: dark){
|
|
1485
|
+
|
|
1486
|
+
.dark\:e-text-gray-500{
|
|
1487
|
+
--tw-text-opacity: 1;
|
|
1488
|
+
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
.dark\:e-placeholder-gray-500::placeholder{
|
|
1492
|
+
--tw-placeholder-opacity: 1;
|
|
1493
|
+
color: rgb(107 114 128 / var(--tw-placeholder-opacity));
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
.dark\:file\:e-bg-gray-800::file-selector-button{
|
|
1497
|
+
--tw-bg-opacity: 1;
|
|
1498
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity));
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.dark\:file\:e-ring-gray-700::file-selector-button{
|
|
1502
|
+
--tw-ring-opacity: 1;
|
|
1503
|
+
--tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity));
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.dark\:hover\:file\:e-bg-gray-700\/50::file-selector-button:hover{
|
|
1507
|
+
background-color: rgb(55 65 81 / 0.5);
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1101
1510
|
@media (min-width: 640px){
|
|
1102
1511
|
|
|
1103
1512
|
.sm\:\!e-w-auto{
|