sm-click-library-ui 0.0.377 → 0.0.379
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 +9546 -8083
- package/dist/sm-click-library-ui.umd.js +84 -12
- package/dist/style.css +1 -1
- package/dist/tailwind.css +129 -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,19 @@ video {
|
|
|
669
700
|
width: 1.5rem;
|
|
670
701
|
height: 1.5rem;
|
|
671
702
|
}
|
|
703
|
+
.size-full {
|
|
704
|
+
width: 100%;
|
|
705
|
+
height: 100%;
|
|
706
|
+
}
|
|
672
707
|
.h-10 {
|
|
673
708
|
height: 2.5rem;
|
|
674
709
|
}
|
|
675
710
|
.h-12 {
|
|
676
711
|
height: 3rem;
|
|
677
712
|
}
|
|
713
|
+
.h-20 {
|
|
714
|
+
height: 5rem;
|
|
715
|
+
}
|
|
678
716
|
.h-3 {
|
|
679
717
|
height: 0.75rem;
|
|
680
718
|
}
|
|
@@ -711,6 +749,12 @@ video {
|
|
|
711
749
|
.w-12 {
|
|
712
750
|
width: 3rem;
|
|
713
751
|
}
|
|
752
|
+
.w-20 {
|
|
753
|
+
width: 5rem;
|
|
754
|
+
}
|
|
755
|
+
.w-24 {
|
|
756
|
+
width: 6rem;
|
|
757
|
+
}
|
|
714
758
|
.w-3 {
|
|
715
759
|
width: 0.75rem;
|
|
716
760
|
}
|
|
@@ -723,6 +767,12 @@ video {
|
|
|
723
767
|
.w-6 {
|
|
724
768
|
width: 1.5rem;
|
|
725
769
|
}
|
|
770
|
+
.w-7 {
|
|
771
|
+
width: 1.75rem;
|
|
772
|
+
}
|
|
773
|
+
.w-8 {
|
|
774
|
+
width: 2rem;
|
|
775
|
+
}
|
|
726
776
|
.w-\[40\%\] {
|
|
727
777
|
width: 40%;
|
|
728
778
|
}
|
|
@@ -732,6 +782,9 @@ video {
|
|
|
732
782
|
.w-screen {
|
|
733
783
|
width: 100vw;
|
|
734
784
|
}
|
|
785
|
+
.min-w-\[220px\] {
|
|
786
|
+
min-width: 220px;
|
|
787
|
+
}
|
|
735
788
|
.min-w-\[50px\] {
|
|
736
789
|
min-width: 50px;
|
|
737
790
|
}
|
|
@@ -805,6 +858,9 @@ video {
|
|
|
805
858
|
.justify-start {
|
|
806
859
|
justify-content: flex-start;
|
|
807
860
|
}
|
|
861
|
+
.justify-end {
|
|
862
|
+
justify-content: flex-end;
|
|
863
|
+
}
|
|
808
864
|
.justify-center {
|
|
809
865
|
justify-content: center;
|
|
810
866
|
}
|
|
@@ -831,6 +887,11 @@ video {
|
|
|
831
887
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
832
888
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
833
889
|
}
|
|
890
|
+
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
891
|
+
--tw-space-x-reverse: 0;
|
|
892
|
+
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
|
|
893
|
+
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
|
|
894
|
+
}
|
|
834
895
|
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
835
896
|
--tw-space-x-reverse: 0;
|
|
836
897
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
@@ -933,6 +994,10 @@ video {
|
|
|
933
994
|
.border-t-transparent {
|
|
934
995
|
border-top-color: transparent;
|
|
935
996
|
}
|
|
997
|
+
.bg-\[\#0FB2D6\] {
|
|
998
|
+
--tw-bg-opacity: 1;
|
|
999
|
+
background-color: rgb(15 178 214 / var(--tw-bg-opacity, 1));
|
|
1000
|
+
}
|
|
936
1001
|
.bg-\[\#404857\] {
|
|
937
1002
|
--tw-bg-opacity: 1;
|
|
938
1003
|
background-color: rgb(64 72 87 / var(--tw-bg-opacity, 1));
|
|
@@ -966,6 +1031,10 @@ video {
|
|
|
966
1031
|
--tw-bg-opacity: 1;
|
|
967
1032
|
background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
|
|
968
1033
|
}
|
|
1034
|
+
.bg-emerald-500 {
|
|
1035
|
+
--tw-bg-opacity: 1;
|
|
1036
|
+
background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
|
|
1037
|
+
}
|
|
969
1038
|
.bg-gray-500 {
|
|
970
1039
|
--tw-bg-opacity: 1;
|
|
971
1040
|
background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
|
|
@@ -997,6 +1066,9 @@ video {
|
|
|
997
1066
|
--tw-bg-opacity: 1;
|
|
998
1067
|
background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
|
|
999
1068
|
}
|
|
1069
|
+
.fill-current {
|
|
1070
|
+
fill: currentColor;
|
|
1071
|
+
}
|
|
1000
1072
|
.fill-gray-600 {
|
|
1001
1073
|
fill: #4b5563;
|
|
1002
1074
|
}
|
|
@@ -1018,10 +1090,17 @@ video {
|
|
|
1018
1090
|
.p-4 {
|
|
1019
1091
|
padding: 1rem;
|
|
1020
1092
|
}
|
|
1093
|
+
.p-\[4px\] {
|
|
1094
|
+
padding: 4px;
|
|
1095
|
+
}
|
|
1021
1096
|
.px-1 {
|
|
1022
1097
|
padding-left: 0.25rem;
|
|
1023
1098
|
padding-right: 0.25rem;
|
|
1024
1099
|
}
|
|
1100
|
+
.px-2 {
|
|
1101
|
+
padding-left: 0.5rem;
|
|
1102
|
+
padding-right: 0.5rem;
|
|
1103
|
+
}
|
|
1025
1104
|
.px-3 {
|
|
1026
1105
|
padding-left: 0.75rem;
|
|
1027
1106
|
padding-right: 0.75rem;
|
|
@@ -1045,6 +1124,15 @@ video {
|
|
|
1045
1124
|
.pl-2 {
|
|
1046
1125
|
padding-left: 0.5rem;
|
|
1047
1126
|
}
|
|
1127
|
+
.pl-3 {
|
|
1128
|
+
padding-left: 0.75rem;
|
|
1129
|
+
}
|
|
1130
|
+
.pr-2 {
|
|
1131
|
+
padding-right: 0.5rem;
|
|
1132
|
+
}
|
|
1133
|
+
.pr-\[21px\] {
|
|
1134
|
+
padding-right: 21px;
|
|
1135
|
+
}
|
|
1048
1136
|
.text-left {
|
|
1049
1137
|
text-align: left;
|
|
1050
1138
|
}
|
|
@@ -1110,6 +1198,10 @@ video {
|
|
|
1110
1198
|
--tw-text-opacity: 1;
|
|
1111
1199
|
color: rgb(243 244 246 / var(--tw-text-opacity, 1));
|
|
1112
1200
|
}
|
|
1201
|
+
.text-gray-200 {
|
|
1202
|
+
--tw-text-opacity: 1;
|
|
1203
|
+
color: rgb(229 231 235 / var(--tw-text-opacity, 1));
|
|
1204
|
+
}
|
|
1113
1205
|
.text-gray-800 {
|
|
1114
1206
|
--tw-text-opacity: 1;
|
|
1115
1207
|
color: rgb(31 41 55 / var(--tw-text-opacity, 1));
|
|
@@ -1284,6 +1376,10 @@ video {
|
|
|
1284
1376
|
--tw-bg-opacity: 1;
|
|
1285
1377
|
background-color: rgb(38 52 61 / var(--tw-bg-opacity, 1));
|
|
1286
1378
|
}
|
|
1379
|
+
.hover\:bg-gray-100:hover {
|
|
1380
|
+
--tw-bg-opacity: 1;
|
|
1381
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
1382
|
+
}
|
|
1287
1383
|
.hover\:bg-gray-600:hover {
|
|
1288
1384
|
--tw-bg-opacity: 1;
|
|
1289
1385
|
background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
|
|
@@ -1292,10 +1388,22 @@ video {
|
|
|
1292
1388
|
--tw-bg-opacity: 1;
|
|
1293
1389
|
background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
|
|
1294
1390
|
}
|
|
1391
|
+
.hover\:bg-red-600:hover {
|
|
1392
|
+
--tw-bg-opacity: 1;
|
|
1393
|
+
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
|
1394
|
+
}
|
|
1295
1395
|
.hover\:bg-teal-600:hover {
|
|
1296
1396
|
--tw-bg-opacity: 1;
|
|
1297
1397
|
background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
|
|
1298
1398
|
}
|
|
1399
|
+
.hover\:text-emerald-500:hover {
|
|
1400
|
+
--tw-text-opacity: 1;
|
|
1401
|
+
color: rgb(16 185 129 / var(--tw-text-opacity, 1));
|
|
1402
|
+
}
|
|
1403
|
+
.hover\:text-red-500:hover {
|
|
1404
|
+
--tw-text-opacity: 1;
|
|
1405
|
+
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
1406
|
+
}
|
|
1299
1407
|
.focus\:ring-0:focus {
|
|
1300
1408
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1301
1409
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1322,10 +1430,22 @@ video {
|
|
|
1322
1430
|
--tw-bg-opacity: 1;
|
|
1323
1431
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
|
|
1324
1432
|
}
|
|
1433
|
+
.dark\:text-black:is([data-mode="dark"] *) {
|
|
1434
|
+
--tw-text-opacity: 1;
|
|
1435
|
+
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
1436
|
+
}
|
|
1325
1437
|
.dark\:text-gray-500:is([data-mode="dark"] *) {
|
|
1326
1438
|
--tw-text-opacity: 1;
|
|
1327
1439
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
1328
1440
|
}
|
|
1441
|
+
.dark\:text-gray-600:is([data-mode="dark"] *) {
|
|
1442
|
+
--tw-text-opacity: 1;
|
|
1443
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
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);
|
|
@@ -1338,6 +1458,10 @@ video {
|
|
|
1338
1458
|
--tw-shadow-color: #374151;
|
|
1339
1459
|
--tw-shadow: var(--tw-shadow-colored);
|
|
1340
1460
|
}
|
|
1461
|
+
.dark\:hover\:bg-gray-300:hover:is([data-mode="dark"] *) {
|
|
1462
|
+
--tw-bg-opacity: 1;
|
|
1463
|
+
background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
|
|
1464
|
+
}
|
|
1341
1465
|
@media (min-width: 640px) {
|
|
1342
1466
|
|
|
1343
1467
|
.sm\:p-0 {
|
|
@@ -1362,6 +1486,11 @@ video {
|
|
|
1362
1486
|
}
|
|
1363
1487
|
@media (min-width: 1512px) {
|
|
1364
1488
|
|
|
1489
|
+
.xl\:size-\[50px\] {
|
|
1490
|
+
width: 50px;
|
|
1491
|
+
height: 50px;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1365
1494
|
.xl\:w-1\/3 {
|
|
1366
1495
|
width: 33.333333%;
|
|
1367
1496
|
}
|
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.379",
|
|
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",
|