@snabcentr/client-ui 0.8.3 → 0.8.6

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.

Potentially problematic release.


This version of @snabcentr/client-ui might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "0.8.3",
3
+ "version": "0.8.6",
4
4
  "author": "Snabcentr Ltd.",
5
5
  "repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
6
6
  "license": "Commercial",
@@ -0,0 +1,13 @@
1
+ /* eslint-disable linebreak-style */
2
+ /* eslint-disable no-undef */
3
+ module.exports = {
4
+ theme: {
5
+ extend: {
6
+ screens: {
7
+ 'hover-hover': { raw: '(hover: hover)' },
8
+ 'hover-none': { raw: '(hover: none)' },
9
+ },
10
+ },
11
+ },
12
+ plugins: [],
13
+ };
@@ -648,14 +648,6 @@ video {
648
648
  position: sticky;
649
649
  }
650
650
 
651
- .-left-2 {
652
- left: -0.5rem;
653
- }
654
-
655
- .-top-2 {
656
- top: -0.5rem;
657
- }
658
-
659
651
  .bottom-0 {
660
652
  bottom: 0px;
661
653
  }
@@ -716,6 +708,16 @@ video {
716
708
  margin: 2rem;
717
709
  }
718
710
 
711
+ .my-0 {
712
+ margin-top: 0px;
713
+ margin-bottom: 0px;
714
+ }
715
+
716
+ .my-0\.5 {
717
+ margin-top: 0.125rem;
718
+ margin-bottom: 0.125rem;
719
+ }
720
+
719
721
  .my-4 {
720
722
  margin-top: 1rem;
721
723
  margin-bottom: 1rem;
@@ -737,16 +739,12 @@ video {
737
739
  margin-bottom: 2rem;
738
740
  }
739
741
 
740
- .ml-2 {
741
- margin-left: 0.5rem;
742
+ .mr-2 {
743
+ margin-right: 0.5rem;
742
744
  }
743
745
 
744
- .ml-auto {
745
- margin-left: auto;
746
- }
747
-
748
- .mr-0 {
749
- margin-right: 0px;
746
+ .mr-5 {
747
+ margin-right: 1.25rem;
750
748
  }
751
749
 
752
750
  .mr-auto {
@@ -812,6 +810,10 @@ video {
812
810
  height: 1.25rem !important;
813
811
  }
814
812
 
813
+ .\!h-8 {
814
+ height: 2rem !important;
815
+ }
816
+
815
817
  .\!h-full {
816
818
  height: 100% !important;
817
819
  }
@@ -856,6 +858,10 @@ video {
856
858
  height: 1.5rem;
857
859
  }
858
860
 
861
+ .h-8 {
862
+ height: 2rem;
863
+ }
864
+
859
865
  .h-82 {
860
866
  height: 20.5rem;
861
867
  }
@@ -872,6 +878,10 @@ video {
872
878
  height: 100%;
873
879
  }
874
880
 
881
+ .max-h-52 {
882
+ max-height: 13rem;
883
+ }
884
+
875
885
  .max-h-full {
876
886
  max-height: 100%;
877
887
  }
@@ -884,12 +894,12 @@ video {
884
894
  width: 1.25rem !important;
885
895
  }
886
896
 
887
- .w-20 {
888
- width: 5rem;
897
+ .\!w-8 {
898
+ width: 2rem !important;
889
899
  }
890
900
 
891
- .w-28 {
892
- width: 7rem;
901
+ .w-20 {
902
+ width: 5rem;
893
903
  }
894
904
 
895
905
  .w-3\/4 {
@@ -932,14 +942,6 @@ video {
932
942
  width: 24rem;
933
943
  }
934
944
 
935
- .w-\[10rem\] {
936
- width: 10rem;
937
- }
938
-
939
- .w-\[13rem\] {
940
- width: 13rem;
941
- }
942
-
943
945
  .w-\[21rem\] {
944
946
  width: 21rem;
945
947
  }
@@ -968,22 +970,22 @@ video {
968
970
  min-width: 0px !important;
969
971
  }
970
972
 
973
+ .min-w-72 {
974
+ min-width: 18rem;
975
+ }
976
+
971
977
  .min-w-\[10rem\] {
972
978
  min-width: 10rem;
973
979
  }
974
980
 
975
- .max-w-\[85\%\] {
976
- max-width: 85%;
981
+ .min-w-\[30\%\] {
982
+ min-width: 30%;
977
983
  }
978
984
 
979
985
  .max-w-full {
980
986
  max-width: 100%;
981
987
  }
982
988
 
983
- .\!flex-shrink {
984
- flex-shrink: 1 !important;
985
- }
986
-
987
989
  .flex-shrink {
988
990
  flex-shrink: 1;
989
991
  }
@@ -1032,8 +1034,8 @@ video {
1032
1034
  resize: both;
1033
1035
  }
1034
1036
 
1035
- .flex-row {
1036
- flex-direction: row;
1037
+ .grid-cols-\[repeat\(auto-fill\2c minmax\(21rem\2c 1fr\)\)\] {
1038
+ grid-template-columns: repeat(auto-fill,minmax(21rem,1fr));
1037
1039
  }
1038
1040
 
1039
1041
  .flex-col {
@@ -1060,10 +1062,6 @@ video {
1060
1062
  align-items: baseline;
1061
1063
  }
1062
1064
 
1063
- .justify-end {
1064
- justify-content: flex-end;
1065
- }
1066
-
1067
1065
  .justify-center {
1068
1066
  justify-content: center;
1069
1067
  }
@@ -1131,6 +1129,10 @@ video {
1131
1129
  row-gap: 0.5rem;
1132
1130
  }
1133
1131
 
1132
+ .\!self-center {
1133
+ align-self: center !important;
1134
+ }
1135
+
1134
1136
  .self-center {
1135
1137
  align-self: center;
1136
1138
  }
@@ -1203,6 +1205,10 @@ video {
1203
1205
  background-color: var(--tui-base-02);
1204
1206
  }
1205
1207
 
1208
+ .bg-tui-base-03 {
1209
+ background-color: var(--tui-base-03);
1210
+ }
1211
+
1206
1212
  .bg-tui-primary {
1207
1213
  background-color: var(--tui-primary);
1208
1214
  }
@@ -1262,11 +1268,26 @@ video {
1262
1268
  padding-right: 0.25rem;
1263
1269
  }
1264
1270
 
1271
+ .px-3 {
1272
+ padding-left: 0.75rem;
1273
+ padding-right: 0.75rem;
1274
+ }
1275
+
1265
1276
  .px-6 {
1266
1277
  padding-left: 1.5rem;
1267
1278
  padding-right: 1.5rem;
1268
1279
  }
1269
1280
 
1281
+ .py-1 {
1282
+ padding-top: 0.25rem;
1283
+ padding-bottom: 0.25rem;
1284
+ }
1285
+
1286
+ .py-1\.5 {
1287
+ padding-top: 0.375rem;
1288
+ padding-bottom: 0.375rem;
1289
+ }
1290
+
1270
1291
  .py-4 {
1271
1292
  padding-top: 1rem;
1272
1293
  padding-bottom: 1rem;
@@ -1277,11 +1298,6 @@ video {
1277
1298
  padding-bottom: 1.125rem;
1278
1299
  }
1279
1300
 
1280
- .py-7 {
1281
- padding-top: 1.75rem;
1282
- padding-bottom: 1.75rem;
1283
- }
1284
-
1285
1301
  .pl-4 {
1286
1302
  padding-left: 1rem;
1287
1303
  }
@@ -1307,6 +1323,11 @@ video {
1307
1323
  line-height: 2rem !important;
1308
1324
  }
1309
1325
 
1326
+ .\!text-sm {
1327
+ font-size: 0.875rem !important;
1328
+ line-height: 1.25rem !important;
1329
+ }
1330
+
1310
1331
  .\!text-xs {
1311
1332
  font-size: 0.75rem !important;
1312
1333
  line-height: 1rem !important;
@@ -1384,6 +1405,10 @@ video {
1384
1405
  color: rgb(185 28 28 / var(--tw-text-opacity));
1385
1406
  }
1386
1407
 
1408
+ .text-tui-base-05 {
1409
+ color: var(--tui-base-05);
1410
+ }
1411
+
1387
1412
  .text-tui-base-09 {
1388
1413
  color: var(--tui-base-09);
1389
1414
  }
@@ -1458,6 +1483,14 @@ video {
1458
1483
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1459
1484
  }
1460
1485
 
1486
+ .ring-tui-base-05 {
1487
+ --tw-ring-color: var(--tui-base-05);
1488
+ }
1489
+
1490
+ .ring-tui-primary {
1491
+ --tw-ring-color: var(--tui-primary);
1492
+ }
1493
+
1461
1494
  .blur {
1462
1495
  --tw-blur: blur(8px);
1463
1496
  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);
@@ -1503,6 +1536,10 @@ video {
1503
1536
  transition-duration: 150ms;
1504
1537
  }
1505
1538
 
1539
+ .duration-150 {
1540
+ transition-duration: 150ms;
1541
+ }
1542
+
1506
1543
  .duration-300 {
1507
1544
  transition-duration: 300ms;
1508
1545
  }
@@ -1547,4 +1584,28 @@ video {
1547
1584
  .md\:gap-4 {
1548
1585
  gap: 1rem;
1549
1586
  }
1587
+ }
1588
+
1589
+ @media (hover: hover) {
1590
+ .hover-hover\:hover\:ring-2:hover {
1591
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1592
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1593
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1594
+ }
1595
+
1596
+ .group:hover .hover-hover\:group-hover\:text-tui-primary {
1597
+ color: var(--tui-primary);
1598
+ }
1599
+ }
1600
+
1601
+ @media (hover: none) {
1602
+ .hover-none\:active\:ring-2:active {
1603
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1604
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1605
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1606
+ }
1607
+
1608
+ .group:active .hover-none\:group-active\:text-tui-primary {
1609
+ color: var(--tui-primary);
1610
+ }
1550
1611
  }