This repository was archived by the owner on Feb 6, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
webcomponents/core/src/components/deck/deckdeckgo-deck Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ div.deckgo-pager {
2626 bottom : 0 ;
2727 left : var (--pager-position-left );
2828 right : var (--pager-position-right );
29+ display : var (--pager-display );
2930}
3031
3132::slotted([slot = " background" ]) {
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ export class DeckdeckgoDeck {
2121
2222 @Prop ( ) keyboard : boolean = true ;
2323
24- @Prop ( ) pager : boolean = true ;
2524 @Prop ( ) pagerPercentage : boolean = true ;
2625
2726 @Prop ( ) embedded : boolean = false ;
@@ -855,8 +854,9 @@ export class DeckdeckgoDeck {
855854 < slot name = "actions" > </ slot >
856855 < slot name = "background" > </ slot >
857856 </ div > ,
858- < div class = "deckgo-pager" > { this . pager ? < deckgo-pager active-index = { this . activeIndex } length = { this . length }
859- percentage = { this . pagerPercentage } > </ deckgo-pager > : '' } </ div >
857+ < div class = "deckgo-pager" >
858+ < deckgo-pager active-index = { this . activeIndex } length = { this . length } percentage = { this . pagerPercentage } > </ deckgo-pager >
859+ </ div >
860860 ]
861861 }
862862
You can’t perform that action at this time.
0 commit comments