sm-click-library-ui 0.0.378 → 0.0.380
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/sm-click-library-ui.es.js +10272 -8749
- package/dist/sm-click-library-ui.umd.js +85 -13
- package/dist/style.css +1 -1
- package/dist/tailwind.css +125 -0
- package/package.json +3 -2
package/dist/tailwind.css
CHANGED
|
@@ -555,24 +555,45 @@ video {
|
|
|
555
555
|
.inset-0 {
|
|
556
556
|
inset: 0px;
|
|
557
557
|
}
|
|
558
|
+
.-bottom-1 {
|
|
559
|
+
bottom: -0.25rem;
|
|
560
|
+
}
|
|
558
561
|
.-bottom-2 {
|
|
559
562
|
bottom: -0.5rem;
|
|
560
563
|
}
|
|
564
|
+
.-left-2 {
|
|
565
|
+
left: -0.5rem;
|
|
566
|
+
}
|
|
567
|
+
.-right-1 {
|
|
568
|
+
right: -0.25rem;
|
|
569
|
+
}
|
|
561
570
|
.-right-2 {
|
|
562
571
|
right: -0.5rem;
|
|
563
572
|
}
|
|
564
573
|
.bottom-2 {
|
|
565
574
|
bottom: 0.5rem;
|
|
566
575
|
}
|
|
576
|
+
.bottom-\[-10px\] {
|
|
577
|
+
bottom: -10px;
|
|
578
|
+
}
|
|
579
|
+
.bottom-\[-11px\] {
|
|
580
|
+
bottom: -11px;
|
|
581
|
+
}
|
|
567
582
|
.left-0 {
|
|
568
583
|
left: 0px;
|
|
569
584
|
}
|
|
570
585
|
.left-2 {
|
|
571
586
|
left: 0.5rem;
|
|
572
587
|
}
|
|
588
|
+
.left-\[28px\] {
|
|
589
|
+
left: 28px;
|
|
590
|
+
}
|
|
573
591
|
.right-2 {
|
|
574
592
|
right: 0.5rem;
|
|
575
593
|
}
|
|
594
|
+
.right-\[26px\] {
|
|
595
|
+
right: 26px;
|
|
596
|
+
}
|
|
576
597
|
.top-0 {
|
|
577
598
|
top: 0px;
|
|
578
599
|
}
|
|
@@ -608,6 +629,9 @@ video {
|
|
|
608
629
|
.mb-3 {
|
|
609
630
|
margin-bottom: 0.75rem;
|
|
610
631
|
}
|
|
632
|
+
.ml-5 {
|
|
633
|
+
margin-left: 1.25rem;
|
|
634
|
+
}
|
|
611
635
|
.ml-auto {
|
|
612
636
|
margin-left: auto;
|
|
613
637
|
}
|
|
@@ -632,6 +656,9 @@ video {
|
|
|
632
656
|
-webkit-box-orient: vertical;
|
|
633
657
|
-webkit-line-clamp: 2;
|
|
634
658
|
}
|
|
659
|
+
.block {
|
|
660
|
+
display: block;
|
|
661
|
+
}
|
|
635
662
|
.inline-block {
|
|
636
663
|
display: inline-block;
|
|
637
664
|
}
|
|
@@ -657,6 +684,10 @@ video {
|
|
|
657
684
|
width: 3rem;
|
|
658
685
|
height: 3rem;
|
|
659
686
|
}
|
|
687
|
+
.size-3 {
|
|
688
|
+
width: 0.75rem;
|
|
689
|
+
height: 0.75rem;
|
|
690
|
+
}
|
|
660
691
|
.size-4 {
|
|
661
692
|
width: 1rem;
|
|
662
693
|
height: 1rem;
|
|
@@ -669,12 +700,23 @@ video {
|
|
|
669
700
|
width: 1.5rem;
|
|
670
701
|
height: 1.5rem;
|
|
671
702
|
}
|
|
703
|
+
.size-8 {
|
|
704
|
+
width: 2rem;
|
|
705
|
+
height: 2rem;
|
|
706
|
+
}
|
|
707
|
+
.size-full {
|
|
708
|
+
width: 100%;
|
|
709
|
+
height: 100%;
|
|
710
|
+
}
|
|
672
711
|
.h-10 {
|
|
673
712
|
height: 2.5rem;
|
|
674
713
|
}
|
|
675
714
|
.h-12 {
|
|
676
715
|
height: 3rem;
|
|
677
716
|
}
|
|
717
|
+
.h-20 {
|
|
718
|
+
height: 5rem;
|
|
719
|
+
}
|
|
678
720
|
.h-3 {
|
|
679
721
|
height: 0.75rem;
|
|
680
722
|
}
|
|
@@ -711,6 +753,12 @@ video {
|
|
|
711
753
|
.w-12 {
|
|
712
754
|
width: 3rem;
|
|
713
755
|
}
|
|
756
|
+
.w-20 {
|
|
757
|
+
width: 5rem;
|
|
758
|
+
}
|
|
759
|
+
.w-24 {
|
|
760
|
+
width: 6rem;
|
|
761
|
+
}
|
|
714
762
|
.w-3 {
|
|
715
763
|
width: 0.75rem;
|
|
716
764
|
}
|
|
@@ -723,6 +771,12 @@ video {
|
|
|
723
771
|
.w-6 {
|
|
724
772
|
width: 1.5rem;
|
|
725
773
|
}
|
|
774
|
+
.w-7 {
|
|
775
|
+
width: 1.75rem;
|
|
776
|
+
}
|
|
777
|
+
.w-8 {
|
|
778
|
+
width: 2rem;
|
|
779
|
+
}
|
|
726
780
|
.w-\[40\%\] {
|
|
727
781
|
width: 40%;
|
|
728
782
|
}
|
|
@@ -732,6 +786,9 @@ video {
|
|
|
732
786
|
.w-screen {
|
|
733
787
|
width: 100vw;
|
|
734
788
|
}
|
|
789
|
+
.min-w-\[220px\] {
|
|
790
|
+
min-width: 220px;
|
|
791
|
+
}
|
|
735
792
|
.min-w-\[50px\] {
|
|
736
793
|
min-width: 50px;
|
|
737
794
|
}
|
|
@@ -805,6 +862,9 @@ video {
|
|
|
805
862
|
.justify-start {
|
|
806
863
|
justify-content: flex-start;
|
|
807
864
|
}
|
|
865
|
+
.justify-end {
|
|
866
|
+
justify-content: flex-end;
|
|
867
|
+
}
|
|
808
868
|
.justify-center {
|
|
809
869
|
justify-content: center;
|
|
810
870
|
}
|
|
@@ -831,6 +891,11 @@ video {
|
|
|
831
891
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
832
892
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
833
893
|
}
|
|
894
|
+
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
895
|
+
--tw-space-x-reverse: 0;
|
|
896
|
+
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
|
|
897
|
+
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
|
|
898
|
+
}
|
|
834
899
|
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
835
900
|
--tw-space-x-reverse: 0;
|
|
836
901
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
@@ -933,6 +998,10 @@ video {
|
|
|
933
998
|
.border-t-transparent {
|
|
934
999
|
border-top-color: transparent;
|
|
935
1000
|
}
|
|
1001
|
+
.bg-\[\#0FB2D6\] {
|
|
1002
|
+
--tw-bg-opacity: 1;
|
|
1003
|
+
background-color: rgb(15 178 214 / var(--tw-bg-opacity, 1));
|
|
1004
|
+
}
|
|
936
1005
|
.bg-\[\#404857\] {
|
|
937
1006
|
--tw-bg-opacity: 1;
|
|
938
1007
|
background-color: rgb(64 72 87 / var(--tw-bg-opacity, 1));
|
|
@@ -966,6 +1035,10 @@ video {
|
|
|
966
1035
|
--tw-bg-opacity: 1;
|
|
967
1036
|
background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
|
|
968
1037
|
}
|
|
1038
|
+
.bg-emerald-500 {
|
|
1039
|
+
--tw-bg-opacity: 1;
|
|
1040
|
+
background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
|
|
1041
|
+
}
|
|
969
1042
|
.bg-gray-500 {
|
|
970
1043
|
--tw-bg-opacity: 1;
|
|
971
1044
|
background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
|
|
@@ -997,6 +1070,9 @@ video {
|
|
|
997
1070
|
--tw-bg-opacity: 1;
|
|
998
1071
|
background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
|
|
999
1072
|
}
|
|
1073
|
+
.fill-current {
|
|
1074
|
+
fill: currentColor;
|
|
1075
|
+
}
|
|
1000
1076
|
.fill-gray-600 {
|
|
1001
1077
|
fill: #4b5563;
|
|
1002
1078
|
}
|
|
@@ -1018,10 +1094,17 @@ video {
|
|
|
1018
1094
|
.p-4 {
|
|
1019
1095
|
padding: 1rem;
|
|
1020
1096
|
}
|
|
1097
|
+
.p-\[4px\] {
|
|
1098
|
+
padding: 4px;
|
|
1099
|
+
}
|
|
1021
1100
|
.px-1 {
|
|
1022
1101
|
padding-left: 0.25rem;
|
|
1023
1102
|
padding-right: 0.25rem;
|
|
1024
1103
|
}
|
|
1104
|
+
.px-2 {
|
|
1105
|
+
padding-left: 0.5rem;
|
|
1106
|
+
padding-right: 0.5rem;
|
|
1107
|
+
}
|
|
1025
1108
|
.px-3 {
|
|
1026
1109
|
padding-left: 0.75rem;
|
|
1027
1110
|
padding-right: 0.75rem;
|
|
@@ -1045,6 +1128,15 @@ video {
|
|
|
1045
1128
|
.pl-2 {
|
|
1046
1129
|
padding-left: 0.5rem;
|
|
1047
1130
|
}
|
|
1131
|
+
.pl-3 {
|
|
1132
|
+
padding-left: 0.75rem;
|
|
1133
|
+
}
|
|
1134
|
+
.pr-2 {
|
|
1135
|
+
padding-right: 0.5rem;
|
|
1136
|
+
}
|
|
1137
|
+
.pr-\[21px\] {
|
|
1138
|
+
padding-right: 21px;
|
|
1139
|
+
}
|
|
1048
1140
|
.text-left {
|
|
1049
1141
|
text-align: left;
|
|
1050
1142
|
}
|
|
@@ -1110,6 +1202,10 @@ video {
|
|
|
1110
1202
|
--tw-text-opacity: 1;
|
|
1111
1203
|
color: rgb(243 244 246 / var(--tw-text-opacity, 1));
|
|
1112
1204
|
}
|
|
1205
|
+
.text-gray-200 {
|
|
1206
|
+
--tw-text-opacity: 1;
|
|
1207
|
+
color: rgb(229 231 235 / var(--tw-text-opacity, 1));
|
|
1208
|
+
}
|
|
1113
1209
|
.text-gray-800 {
|
|
1114
1210
|
--tw-text-opacity: 1;
|
|
1115
1211
|
color: rgb(31 41 55 / var(--tw-text-opacity, 1));
|
|
@@ -1284,6 +1380,10 @@ video {
|
|
|
1284
1380
|
--tw-bg-opacity: 1;
|
|
1285
1381
|
background-color: rgb(38 52 61 / var(--tw-bg-opacity, 1));
|
|
1286
1382
|
}
|
|
1383
|
+
.hover\:bg-gray-100:hover {
|
|
1384
|
+
--tw-bg-opacity: 1;
|
|
1385
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
1386
|
+
}
|
|
1287
1387
|
.hover\:bg-gray-600:hover {
|
|
1288
1388
|
--tw-bg-opacity: 1;
|
|
1289
1389
|
background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
|
|
@@ -1292,10 +1392,22 @@ video {
|
|
|
1292
1392
|
--tw-bg-opacity: 1;
|
|
1293
1393
|
background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
|
|
1294
1394
|
}
|
|
1395
|
+
.hover\:bg-red-600:hover {
|
|
1396
|
+
--tw-bg-opacity: 1;
|
|
1397
|
+
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
|
1398
|
+
}
|
|
1295
1399
|
.hover\:bg-teal-600:hover {
|
|
1296
1400
|
--tw-bg-opacity: 1;
|
|
1297
1401
|
background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
|
|
1298
1402
|
}
|
|
1403
|
+
.hover\:text-emerald-500:hover {
|
|
1404
|
+
--tw-text-opacity: 1;
|
|
1405
|
+
color: rgb(16 185 129 / var(--tw-text-opacity, 1));
|
|
1406
|
+
}
|
|
1407
|
+
.hover\:text-red-500:hover {
|
|
1408
|
+
--tw-text-opacity: 1;
|
|
1409
|
+
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
1410
|
+
}
|
|
1299
1411
|
.focus\:ring-0:focus {
|
|
1300
1412
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1301
1413
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1322,10 +1434,18 @@ video {
|
|
|
1322
1434
|
--tw-bg-opacity: 1;
|
|
1323
1435
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
|
|
1324
1436
|
}
|
|
1437
|
+
.dark\:text-black:is([data-mode="dark"] *) {
|
|
1438
|
+
--tw-text-opacity: 1;
|
|
1439
|
+
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
1440
|
+
}
|
|
1325
1441
|
.dark\:text-gray-500:is([data-mode="dark"] *) {
|
|
1326
1442
|
--tw-text-opacity: 1;
|
|
1327
1443
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
1328
1444
|
}
|
|
1445
|
+
.dark\:text-gray-700:is([data-mode="dark"] *) {
|
|
1446
|
+
--tw-text-opacity: 1;
|
|
1447
|
+
color: rgb(55 65 81 / var(--tw-text-opacity, 1));
|
|
1448
|
+
}
|
|
1329
1449
|
.dark\:shadow-gray-400:is([data-mode="dark"] *) {
|
|
1330
1450
|
--tw-shadow-color: #9ca3af;
|
|
1331
1451
|
--tw-shadow: var(--tw-shadow-colored);
|
|
@@ -1362,6 +1482,11 @@ video {
|
|
|
1362
1482
|
}
|
|
1363
1483
|
@media (min-width: 1512px) {
|
|
1364
1484
|
|
|
1485
|
+
.xl\:size-\[50px\] {
|
|
1486
|
+
width: 50px;
|
|
1487
|
+
height: 50px;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1365
1490
|
.xl\:w-1\/3 {
|
|
1366
1491
|
width: 33.333333%;
|
|
1367
1492
|
}
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"dist",
|
|
6
6
|
"src/test-utils"
|
|
7
7
|
],
|
|
8
|
-
"version": "0.0.
|
|
8
|
+
"version": "0.0.380",
|
|
9
9
|
"main": "dist/sm-click-library-ui.es.js",
|
|
10
10
|
"module": "dist/sm-click-library-ui.umd.js",
|
|
11
11
|
"private": false,
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"vue3-avataaars": "^1.0.15",
|
|
36
36
|
"vue3-carousel": "^0.16.0",
|
|
37
37
|
"vue3-lottie": "^3.3.1",
|
|
38
|
-
"vue3-popper": "^1.5.0"
|
|
38
|
+
"vue3-popper": "^1.5.0",
|
|
39
|
+
"wavesurfer.js": "^7.10.1"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
42
|
"@chromatic-com/storybook": "1.6.1",
|