pb-sxp-ui 1.15.20 → 1.15.22-alpha.1
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 +7705 -7259
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +46 -46
- package/dist/index.js +7705 -7260
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +6 -6
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +6 -6
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +7705 -7259
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +6 -6
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/Pagebuilder/type.d.ts +10 -5
- package/es/core/components/DiyStoryPreview/PictureGroup.d.ts +16 -0
- package/es/core/components/DiyStoryPreview/PictureGroup.js +34 -0
- package/es/core/components/DiyStoryPreview/VideoWidget.d.ts +27 -0
- package/es/core/components/DiyStoryPreview/VideoWidget.js +197 -0
- package/es/core/components/DiyStoryPreview/index.d.ts +32 -0
- package/es/core/components/DiyStoryPreview/index.js +410 -0
- package/es/core/components/SxpPageCore/index.js +6 -4
- package/es/core/components/SxpPageRender/index.d.ts +0 -1
- package/es/core/components/SxpPageRender/typing.d.ts +19 -0
- package/es/core/context/SxpDataSourceProvider.d.ts +2 -1
- package/es/core/context/SxpDataSourceProvider.js +48 -97
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/materials/sxp/popup/CommodityDetail/index.js +2 -2
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +1 -1
- package/lib/core/Pagebuilder/type.d.ts +10 -5
- package/lib/core/components/DiyStoryPreview/PictureGroup.d.ts +16 -0
- package/lib/core/components/DiyStoryPreview/PictureGroup.js +37 -0
- package/lib/core/components/DiyStoryPreview/VideoWidget.d.ts +27 -0
- package/lib/core/components/DiyStoryPreview/VideoWidget.js +200 -0
- package/lib/core/components/DiyStoryPreview/index.d.ts +32 -0
- package/lib/core/components/DiyStoryPreview/index.js +413 -0
- package/lib/core/components/SxpPageCore/index.js +6 -4
- package/lib/core/components/SxpPageRender/index.d.ts +0 -1
- package/lib/core/components/SxpPageRender/typing.d.ts +19 -0
- package/lib/core/context/SxpDataSourceProvider.d.ts +2 -1
- package/lib/core/context/SxpDataSourceProvider.js +48 -97
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/lib/materials/sxp/popup/CommodityDetail/index.js +2 -2
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -135,6 +135,52 @@ a:active {
|
|
135
135
|
margin-bottom: 30px;
|
136
136
|
}
|
137
137
|
|
138
|
+
.pb-commondity {
|
139
|
+
position: relative;
|
140
|
+
height: 100%;
|
141
|
+
}
|
142
|
+
.pb-commondity-content {
|
143
|
+
padding: 21px 19px 80px;
|
144
|
+
}
|
145
|
+
.pb-commondity-content-collection {
|
146
|
+
margin-bottom: 14px;
|
147
|
+
}
|
148
|
+
.pb-commondity-content-price {
|
149
|
+
margin: 24px 0 10px 0;
|
150
|
+
}
|
151
|
+
.pb-commondity-content-info {
|
152
|
+
line-height: 17px;
|
153
|
+
}
|
154
|
+
.pb-commondity-btn {
|
155
|
+
width: -webkit-fill-available;
|
156
|
+
position: absolute;
|
157
|
+
bottom: 0;
|
158
|
+
left: 0;
|
159
|
+
right: 0;
|
160
|
+
padding: 0;
|
161
|
+
border: none;
|
162
|
+
display: -webkit-box;
|
163
|
+
display: -webkit-flex;
|
164
|
+
display: -ms-flexbox;
|
165
|
+
display: flex;
|
166
|
+
-webkit-box-align: center;
|
167
|
+
-webkit-align-items: center;
|
168
|
+
-ms-flex-align: center;
|
169
|
+
align-items: center;
|
170
|
+
-webkit-box-pack: center;
|
171
|
+
-webkit-justify-content: center;
|
172
|
+
-ms-flex-pack: center;
|
173
|
+
justify-content: center;
|
174
|
+
}
|
175
|
+
.commondityDetail-swiper-clickable-left {
|
176
|
+
padding-left: 17px !important;
|
177
|
+
text-align: left !important;
|
178
|
+
}
|
179
|
+
.commondityDetail-swiper-clickable-right {
|
180
|
+
padding-right: 17px !important;
|
181
|
+
text-align: right !important;
|
182
|
+
}
|
183
|
+
|
138
184
|
/**
|
139
185
|
* Swiper 11.1.4
|
140
186
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
@@ -490,52 +536,6 @@ a:active {
|
|
490
536
|
display: none;
|
491
537
|
}
|
492
538
|
|
493
|
-
.pb-commondity {
|
494
|
-
position: relative;
|
495
|
-
height: 100%;
|
496
|
-
}
|
497
|
-
.pb-commondity-content {
|
498
|
-
padding: 21px 19px 80px;
|
499
|
-
}
|
500
|
-
.pb-commondity-content-collection {
|
501
|
-
margin-bottom: 14px;
|
502
|
-
}
|
503
|
-
.pb-commondity-content-price {
|
504
|
-
margin: 24px 0 10px 0;
|
505
|
-
}
|
506
|
-
.pb-commondity-content-info {
|
507
|
-
line-height: 17px;
|
508
|
-
}
|
509
|
-
.pb-commondity-btn {
|
510
|
-
width: -webkit-fill-available;
|
511
|
-
position: absolute;
|
512
|
-
bottom: 0;
|
513
|
-
left: 0;
|
514
|
-
right: 0;
|
515
|
-
padding: 0;
|
516
|
-
border: none;
|
517
|
-
display: -webkit-box;
|
518
|
-
display: -webkit-flex;
|
519
|
-
display: -ms-flexbox;
|
520
|
-
display: flex;
|
521
|
-
-webkit-box-align: center;
|
522
|
-
-webkit-align-items: center;
|
523
|
-
-ms-flex-align: center;
|
524
|
-
align-items: center;
|
525
|
-
-webkit-box-pack: center;
|
526
|
-
-webkit-justify-content: center;
|
527
|
-
-ms-flex-pack: center;
|
528
|
-
justify-content: center;
|
529
|
-
}
|
530
|
-
.commondityDetail-swiper-clickable-left {
|
531
|
-
padding-left: 17px !important;
|
532
|
-
text-align: left !important;
|
533
|
-
}
|
534
|
-
.commondityDetail-swiper-clickable-right {
|
535
|
-
padding-right: 17px !important;
|
536
|
-
text-align: right !important;
|
537
|
-
}
|
538
|
-
|
539
539
|
.tow-line-ellipsis {
|
540
540
|
display: -webkit-box;
|
541
541
|
-webkit-box-orient: vertical;
|