@snabcentr/client-ui 0.2.2 → 0.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.
Potentially problematic release.
This version of @snabcentr/client-ui might be problematic. Click here for more details.
- package/banner/sc-banner.component.d.ts +56 -32
- package/banner/sc-banner.module.d.ts +3 -1
- package/esm2020/banner/sc-banner.component.mjs +100 -65
- package/esm2020/banner/sc-banner.module.mjs +8 -6
- package/fesm2015/snabcentr-client-ui.mjs +120 -82
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
- package/fesm2020/snabcentr-client-ui.mjs +116 -82
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +2 -1
- package/styles/tailwind/tailwind.scss +24 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@snabcentr/client-ui",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.3",
|
4
4
|
"author": "Snabcentr Ltd.",
|
5
5
|
"repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
|
6
6
|
"license": "Commercial",
|
@@ -29,6 +29,7 @@
|
|
29
29
|
"@taiga-ui/layout": ">=3.42.1",
|
30
30
|
"@taiga-ui/styles": ">=3.42.1",
|
31
31
|
"@tinkoff/ng-polymorpheus": ">=4.1.0",
|
32
|
+
"@ng-web-apis/intersection-observer": ">=3.0.0",
|
32
33
|
"echarts": "^5.4.3",
|
33
34
|
"moment": ">=2.29.4",
|
34
35
|
"ngx-echarts": "^14.0.0",
|
@@ -650,6 +650,10 @@ video {
|
|
650
650
|
bottom: 0px;
|
651
651
|
}
|
652
652
|
|
653
|
+
.bottom-4 {
|
654
|
+
bottom: 1rem;
|
655
|
+
}
|
656
|
+
|
653
657
|
.left-0 {
|
654
658
|
left: 0px;
|
655
659
|
}
|
@@ -662,10 +666,22 @@ video {
|
|
662
666
|
left: 4rem;
|
663
667
|
}
|
664
668
|
|
669
|
+
.left-2 {
|
670
|
+
left: 0.5rem;
|
671
|
+
}
|
672
|
+
|
673
|
+
.left-8 {
|
674
|
+
left: 2rem;
|
675
|
+
}
|
676
|
+
|
665
677
|
.right-0 {
|
666
678
|
right: 0px;
|
667
679
|
}
|
668
680
|
|
681
|
+
.right-2 {
|
682
|
+
right: 0.5rem;
|
683
|
+
}
|
684
|
+
|
669
685
|
.top-0 {
|
670
686
|
top: 0px;
|
671
687
|
}
|
@@ -715,10 +731,6 @@ video {
|
|
715
731
|
margin-top: 0.5rem;
|
716
732
|
}
|
717
733
|
|
718
|
-
.mt-3 {
|
719
|
-
margin-top: 0.75rem;
|
720
|
-
}
|
721
|
-
|
722
734
|
.line-clamp-3 {
|
723
735
|
overflow: hidden;
|
724
736
|
display: -webkit-box;
|
@@ -822,6 +834,10 @@ video {
|
|
822
834
|
height: 17rem;
|
823
835
|
}
|
824
836
|
|
837
|
+
.h-\[30rem\] {
|
838
|
+
height: 30rem;
|
839
|
+
}
|
840
|
+
|
825
841
|
.h-full {
|
826
842
|
height: 100%;
|
827
843
|
}
|
@@ -1163,6 +1179,10 @@ video {
|
|
1163
1179
|
padding: 0px;
|
1164
1180
|
}
|
1165
1181
|
|
1182
|
+
.p-10 {
|
1183
|
+
padding: 2.5rem;
|
1184
|
+
}
|
1185
|
+
|
1166
1186
|
.p-2 {
|
1167
1187
|
padding: 0.5rem;
|
1168
1188
|
}
|