pb-sxp-ui 1.2.0 → 1.2.2
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/index.cjs +127 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +63 -31
- package/dist/index.js +127 -83
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +3 -3
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +127 -83
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +3 -3
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +1 -0
- package/es/core/components/SxpPageRender/FingerSwipeTip/index.js +3 -3
- package/es/core/components/SxpPageRender/Hashtag/index.js +3 -1
- package/es/core/components/SxpPageRender/Navbar.js +1 -1
- package/es/core/components/SxpPageRender/VideoWidget/index.js +13 -10
- package/es/core/components/SxpPageRender/WaterFall/List.js +1 -1
- package/es/core/components/SxpPageRender/WaterFall/WaterfallList.js +1 -1
- package/es/core/components/SxpPageRender/index.d.ts +3 -0
- package/es/core/components/SxpPageRender/index.js +8 -8
- package/es/core/context/SxpDataSourceProvider.js +2 -3
- package/es/materials/sxp/HashTag/material.js +2 -1
- package/es/materials/sxp/cta/AniLink/index.js +29 -12
- package/es/materials/sxp/cta/AniLinkPopup/index.js +41 -23
- package/es/materials/sxp/popup/CommodityDetail/index.js +1 -1
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +1 -1
- package/es/materials/sxp/popup/CommodityList/index.js +10 -10
- package/es/materials/sxp/template/Link/index.js +2 -2
- package/es/materials/sxp/template/components/Img.js +1 -1
- package/es/materials/sxp/template/components/settingRender.js +5 -0
- package/lib/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +1 -0
- package/lib/core/components/SxpPageRender/FingerSwipeTip/index.js +3 -3
- package/lib/core/components/SxpPageRender/Hashtag/index.js +3 -1
- package/lib/core/components/SxpPageRender/Navbar.js +1 -1
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +13 -10
- package/lib/core/components/SxpPageRender/WaterFall/List.js +1 -1
- package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.js +1 -1
- package/lib/core/components/SxpPageRender/index.d.ts +3 -0
- package/lib/core/components/SxpPageRender/index.js +8 -8
- package/lib/core/context/SxpDataSourceProvider.js +2 -3
- package/lib/materials/sxp/HashTag/material.js +2 -1
- package/lib/materials/sxp/cta/AniLink/index.js +28 -11
- package/lib/materials/sxp/cta/AniLinkPopup/index.js +40 -22
- package/lib/materials/sxp/popup/CommodityDetail/index.js +1 -1
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +1 -1
- package/lib/materials/sxp/popup/CommodityList/index.js +9 -9
- package/lib/materials/sxp/template/Link/index.js +2 -2
- package/lib/materials/sxp/template/components/Img.js +1 -1
- package/lib/materials/sxp/template/components/settingRender.js +5 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -679,12 +679,10 @@
|
|
679
679
|
word-wrap: break-word;
|
680
680
|
}
|
681
681
|
.index-module_one-line-ellipsis__buFw1 {
|
682
|
-
display: -webkit-box;
|
683
|
-
-webkit-box-orient: vertical;
|
684
|
-
-webkit-line-clamp: 1;
|
685
682
|
text-overflow: ellipsis;
|
686
683
|
overflow: hidden;
|
687
684
|
word-break: break-all;
|
685
|
+
white-space: nowrap;
|
688
686
|
}
|
689
687
|
|
690
688
|
.index-module_tow-line-ellipsis__yyHVb {
|
@@ -1085,44 +1083,80 @@
|
|
1085
1083
|
display: inline-block;
|
1086
1084
|
-webkit-animation-name: index-module_gradientCover__5iUag;
|
1087
1085
|
animation-name: index-module_gradientCover__5iUag;
|
1086
|
+
-webkit-transform: scaleX(0);
|
1087
|
+
transform: scaleX(0);
|
1088
|
+
-webkit-animation-fill-mode: forwards;
|
1089
|
+
animation-fill-mode: forwards;
|
1088
1090
|
}
|
1089
1091
|
|
1090
|
-
@-webkit-keyframes index-
|
1092
|
+
@-webkit-keyframes index-module_fadeIn__2E-dk {
|
1091
1093
|
0% {
|
1092
|
-
-webkit-transform:
|
1093
|
-
transform:
|
1094
|
+
-webkit-transform: var(--transY);
|
1095
|
+
transform: var(--transY);
|
1096
|
+
z-index: 1000;
|
1094
1097
|
}
|
1095
1098
|
100% {
|
1096
|
-
-webkit-transform:
|
1097
|
-
transform:
|
1099
|
+
-webkit-transform: translateY(0);
|
1100
|
+
transform: translateY(0);
|
1101
|
+
z-index: 1000;
|
1098
1102
|
}
|
1099
1103
|
}
|
1100
|
-
@keyframes index-
|
1104
|
+
@keyframes index-module_fadeIn__2E-dk {
|
1101
1105
|
0% {
|
1102
|
-
-webkit-transform:
|
1103
|
-
transform:
|
1106
|
+
-webkit-transform: var(--transY);
|
1107
|
+
transform: var(--transY);
|
1108
|
+
z-index: 1000;
|
1104
1109
|
}
|
1105
1110
|
100% {
|
1106
|
-
-webkit-transform:
|
1107
|
-
transform:
|
1111
|
+
-webkit-transform: translateY(0);
|
1112
|
+
transform: translateY(0);
|
1113
|
+
z-index: 1000;
|
1108
1114
|
}
|
1109
1115
|
}
|
1110
|
-
|
1111
|
-
|
1116
|
+
@-webkit-keyframes index-module_fadeOut__MgevT {
|
1117
|
+
0% {
|
1118
|
+
-webkit-transform: translateY(0);
|
1119
|
+
transform: translateY(0);
|
1120
|
+
}
|
1121
|
+
100% {
|
1122
|
+
-webkit-transform: var(--transY);
|
1123
|
+
transform: var(--transY);
|
1124
|
+
z-index: -1;
|
1125
|
+
}
|
1112
1126
|
}
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1127
|
+
@keyframes index-module_fadeOut__MgevT {
|
1128
|
+
0% {
|
1129
|
+
-webkit-transform: translateY(0);
|
1130
|
+
transform: translateY(0);
|
1131
|
+
}
|
1132
|
+
100% {
|
1133
|
+
-webkit-transform: var(--transY);
|
1134
|
+
transform: var(--transY);
|
1135
|
+
z-index: -1;
|
1136
|
+
}
|
1137
|
+
}
|
1138
|
+
.index-module_aniLinkPopup__YT7kj {
|
1116
1139
|
position: absolute;
|
1117
|
-
|
1140
|
+
right: 0;
|
1141
|
+
bottom: 0;
|
1142
|
+
-webkit-animation-fill-mode: forwards;
|
1143
|
+
animation-fill-mode: forwards;
|
1144
|
+
-webkit-transform: var(--transY);
|
1145
|
+
transform: var(--transY);
|
1146
|
+
}
|
1147
|
+
.index-module_animated-fadeIn__8ZCbq {
|
1148
|
+
-webkit-animation-name: index-module_fadeIn__2E-dk;
|
1149
|
+
animation-name: index-module_fadeIn__2E-dk;
|
1150
|
+
-webkit-transform: var(--transY);
|
1151
|
+
transform: var(--transY);
|
1118
1152
|
z-index: -1;
|
1119
|
-
|
1120
|
-
|
1121
|
-
-webkit-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1153
|
+
}
|
1154
|
+
.index-module_animated-fadeOut__iK4oc {
|
1155
|
+
-webkit-animation-name: index-module_fadeOut__MgevT;
|
1156
|
+
animation-name: index-module_fadeOut__MgevT;
|
1157
|
+
-webkit-transform: translateY(0);
|
1158
|
+
transform: translateY(0);
|
1159
|
+
z-index: 1000;
|
1126
1160
|
}
|
1127
1161
|
.index-module_tow-line-ellipsis__GKFXr {
|
1128
1162
|
display: -webkit-box;
|
@@ -1773,7 +1807,7 @@ button.swiper-pagination-bullet {
|
|
1773
1807
|
bottom: 0;
|
1774
1808
|
left: 0;
|
1775
1809
|
right: 0;
|
1776
|
-
padding: 20px
|
1810
|
+
padding-top: 20px;
|
1777
1811
|
}
|
1778
1812
|
.clc-sxp-bottom-nudge {
|
1779
1813
|
display: -webkit-box;
|
@@ -1796,9 +1830,6 @@ button.swiper-pagination-bullet {
|
|
1796
1830
|
padding: 0 20px;
|
1797
1831
|
font-size: 14px;
|
1798
1832
|
}
|
1799
|
-
.clc-sxp-bottom-hashtag {
|
1800
|
-
margin-top: 16px;
|
1801
|
-
}
|
1802
1833
|
.clc-sxp-bottom-hashtag-item {
|
1803
1834
|
width: auto;
|
1804
1835
|
height: 26px;
|
@@ -1809,7 +1840,6 @@ button.swiper-pagination-bullet {
|
|
1809
1840
|
padding: 0 10px;
|
1810
1841
|
font-size: 10px;
|
1811
1842
|
margin-right: 8px;
|
1812
|
-
margin-bottom: 20px;
|
1813
1843
|
cursor: pointer;
|
1814
1844
|
}
|
1815
1845
|
.clc-sxp-bottom-shadow {
|
@@ -1850,6 +1880,8 @@ button.swiper-pagination-bullet {
|
|
1850
1880
|
}
|
1851
1881
|
.clc-sxp-nav-title {
|
1852
1882
|
font-size: 16px;
|
1883
|
+
width: 100%;
|
1884
|
+
text-align: center;
|
1853
1885
|
}
|
1854
1886
|
.clc-pb-video-pause {
|
1855
1887
|
position: absolute;
|