@quicktvui/quicktvui3 1.1.32 → 1.1.33-beta.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.css +57 -21
- package/dist/index.js +5 -5
- package/dist/src/grid-view/core/QTIGridView.d.ts +1 -1
- package/dist/src/grid-view/index.vue.d.ts +9 -7
- package/dist/src/index.d.ts +4 -0
- package/dist/src/list-view/core/QTIListView.d.ts +1 -1
- package/dist/src/plugin/QTIPluginView.d.ts +9 -0
- package/dist/src/plugin/QTPluginView.d.ts +3 -0
- package/dist/src/poster/index.vue.d.ts +33 -0
- package/dist/src/qtListen/effect.d.ts +17 -0
- package/dist/src/qtListen/index.d.ts +5 -0
- package/dist/src/qtListen/qtArray.d.ts +9 -0
- package/dist/src/qtListen/qtDiff.d.ts +2 -0
- package/dist/src/qtListen/reactive.d.ts +14 -0
- package/dist/src/qtListen/ref.d.ts +5 -0
- package/dist/src/qtListen/types.d.ts +45 -0
- package/dist/src/qtListen/watch.d.ts +16 -0
- package/dist/src/series/index.vue.d.ts +35 -0
- package/dist/src/series/item/media-series-number-item.vue.d.ts +17 -0
- package/dist/src/series/item/media-series-text-item.vue.d.ts +35 -0
- package/dist/src/tab/QTITab.d.ts +1 -0
- package/dist/src/tab/QTTabDataManager.d.ts +1 -0
- package/dist/src/tab/index.vue.d.ts +8 -2
- package/dist/src/waterfall/core/QTWaterfallDataAdapter.d.ts +2 -2
- package/dist/src/waterfall/core/QTWaterfallItemType.d.ts +2 -1
- package/dist/src/waterfall/core/QTWaterfallPluginItem.d.ts +5 -0
- package/dist/src/waterfall/core/QTWaterfallPluginSection.d.ts +5 -0
- package/dist/src/waterfall/core/QTWaterfallSectionType.d.ts +2 -1
- package/dist/src/waterfall/index.vue.d.ts +23 -1
- package/dist/src/waterfall/item/plugin-item.vue.d.ts +12 -0
- package/dist/src/waterfall/section/flex-section.vue.d.ts +4 -2
- package/dist/src/waterfall/section/plugin-section.vue.d.ts +18 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -191,21 +191,39 @@
|
|
|
191
191
|
background-color: transparent;
|
|
192
192
|
}
|
|
193
193
|
.absoluteFocusMainBgRoot[data-v-703673b8] {
|
|
194
|
-
background-color:
|
|
194
|
+
background-color: transparent;
|
|
195
195
|
margin-left: -1px;
|
|
196
196
|
margin-right: -1px;
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
|
|
200
|
-
.
|
|
200
|
+
.cornerRoot[data-v-4b767ea2] {
|
|
201
201
|
position: absolute;
|
|
202
|
+
left: 0.01px;
|
|
203
|
+
top: 0.01px;
|
|
204
|
+
z-index: 1000;
|
|
202
205
|
background-color: transparent;
|
|
203
|
-
overflow: hidden;
|
|
204
206
|
}
|
|
205
|
-
.
|
|
206
|
-
|
|
207
|
-
|
|
207
|
+
.cornerRoot_right[data-v-4b767ea2]{
|
|
208
|
+
flex-direction: row-reverse;
|
|
209
|
+
}
|
|
210
|
+
.poster_corner_img[data-v-4b767ea2]{
|
|
208
211
|
position: absolute;
|
|
212
|
+
top: 0.01px;
|
|
213
|
+
z-index: 2;
|
|
214
|
+
}
|
|
215
|
+
.cornerRoot_left .poster_corner_img[data-v-4b767ea2]{
|
|
216
|
+
left: 0.01px;
|
|
217
|
+
}
|
|
218
|
+
.cornerRoot_right .poster_corner_img[data-v-4b767ea2]{
|
|
219
|
+
right: 0.01px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
.qt-ui-poster-root-css {
|
|
224
|
+
position: absolute;
|
|
225
|
+
background-color: transparent;
|
|
226
|
+
overflow: hidden;
|
|
209
227
|
}
|
|
210
228
|
.qt-ui-poster-img-css {
|
|
211
229
|
background-color: rgba(255, 255, 255, 0.1);
|
|
@@ -289,6 +307,13 @@
|
|
|
289
307
|
}
|
|
290
308
|
|
|
291
309
|
|
|
310
|
+
.qt-ui-plugin-item-root-css {
|
|
311
|
+
position: absolute;
|
|
312
|
+
background-color: palevioletred;
|
|
313
|
+
overflow: hidden;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
|
|
292
317
|
.standard-section-css[data-v-227e921e] {
|
|
293
318
|
display: flex;
|
|
294
319
|
background-color: transparent;
|
|
@@ -405,6 +430,23 @@
|
|
|
405
430
|
}
|
|
406
431
|
|
|
407
432
|
|
|
433
|
+
.qt-ui-plugin-section-root-css[data-v-ca3d65aa] {
|
|
434
|
+
display: flex;
|
|
435
|
+
background-color: transparent;
|
|
436
|
+
}
|
|
437
|
+
.qt-ui-plugin-section-css[data-v-ca3d65aa] {
|
|
438
|
+
display: flex;
|
|
439
|
+
background-color: #40b883;
|
|
440
|
+
}
|
|
441
|
+
.qt-ui-plugin-section-title-text-css[data-v-ca3d65aa] {
|
|
442
|
+
/*width: 1920px;*/
|
|
443
|
+
/*height: 60px;*/
|
|
444
|
+
color: #ffffff;
|
|
445
|
+
background-color: red;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
408
450
|
.qt-waterfall-root-css {
|
|
409
451
|
}
|
|
410
452
|
|
|
@@ -445,6 +487,7 @@
|
|
|
445
487
|
height: 60px;
|
|
446
488
|
top: 118px;
|
|
447
489
|
left: 0;
|
|
490
|
+
background-color: transparent;
|
|
448
491
|
}
|
|
449
492
|
.clv_item_text_box {
|
|
450
493
|
width: 316px;
|
|
@@ -551,7 +594,7 @@
|
|
|
551
594
|
.number-item-container[data-v-4afb8987] {
|
|
552
595
|
width: 160px;
|
|
553
596
|
height: 80px;
|
|
554
|
-
background-color:
|
|
597
|
+
background-color: transparent;
|
|
555
598
|
border-radius: 8px
|
|
556
599
|
}
|
|
557
600
|
.number-item-container-bg-focus[data-v-4afb8987]{
|
|
@@ -562,14 +605,14 @@
|
|
|
562
605
|
}
|
|
563
606
|
.media-series-number-item-vip-root[data-v-4afb8987] {
|
|
564
607
|
position: absolute;
|
|
565
|
-
width:
|
|
608
|
+
width: 45px;
|
|
566
609
|
height: 28px;
|
|
567
610
|
left: 118px;
|
|
568
611
|
border-radius: 4px;
|
|
569
612
|
background-color: transparent;
|
|
570
613
|
}
|
|
571
614
|
.media-series-number-item-vip-text[data-v-4afb8987] {
|
|
572
|
-
width:
|
|
615
|
+
width: 45px;
|
|
573
616
|
height: 28px;
|
|
574
617
|
color: white;
|
|
575
618
|
font-weight: 400;
|
|
@@ -595,20 +638,14 @@
|
|
|
595
638
|
|
|
596
639
|
|
|
597
640
|
.text-item-container[data-v-4859f623] {
|
|
598
|
-
width: 490px;
|
|
599
|
-
height: 100px;
|
|
600
641
|
border-radius: 8px;
|
|
601
|
-
background-color:
|
|
642
|
+
background-color: transparent;
|
|
602
643
|
}
|
|
603
644
|
.text-item-container-bg-focus[data-v-4859f623]{
|
|
604
645
|
position: absolute;
|
|
605
646
|
background-color: transparent;
|
|
606
|
-
width: 490px;
|
|
607
|
-
height: 100px;
|
|
608
647
|
}
|
|
609
648
|
.text-item-container-css[data-v-4859f623] {
|
|
610
|
-
width: 490px;
|
|
611
|
-
height: 100px;
|
|
612
649
|
border-radius: 8px;
|
|
613
650
|
background-color: rgba(255, 255, 255, .1);
|
|
614
651
|
flex-direction: row;
|
|
@@ -618,23 +655,22 @@
|
|
|
618
655
|
.text-item-text[data-v-4859f623] {
|
|
619
656
|
font-weight: 400;
|
|
620
657
|
height: 100px;
|
|
621
|
-
width: 373px;
|
|
622
658
|
}
|
|
623
659
|
.text-item-text-vip[data-v-4859f623] {
|
|
624
660
|
font-weight: 400;
|
|
625
661
|
height: 100px;
|
|
626
|
-
width: 373px;
|
|
627
662
|
}
|
|
628
663
|
.media-series-text-item-vip-root[data-v-4859f623] {
|
|
629
664
|
position: absolute;
|
|
630
|
-
width:
|
|
665
|
+
width: 45px;
|
|
631
666
|
height: 28px;
|
|
632
|
-
|
|
667
|
+
right: 0.01px;
|
|
668
|
+
top: 0.01px;
|
|
633
669
|
border-radius: 4px;
|
|
634
670
|
background-color: transparent;
|
|
635
671
|
}
|
|
636
672
|
.media-series-text-item-vip-text[data-v-4859f623] {
|
|
637
|
-
width:
|
|
673
|
+
width: 45px;
|
|
638
674
|
height: 28px;
|
|
639
675
|
color: white;
|
|
640
676
|
font-weight: 400;
|