parent
448e5edc52
commit
97e4ebd09d
|
@ -97,6 +97,14 @@ const CarouselSlots = [
|
||||||
{
|
{
|
||||||
name: 'item',
|
name: 'item',
|
||||||
description: 'Custom content for the component item.'
|
description: 'Custom content for the component item.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'previcon',
|
||||||
|
description: 'Custom previous icon template.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'nexticon',
|
||||||
|
description: 'Custom next icon template.'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -130,6 +130,14 @@ export interface CarouselSlots {
|
||||||
* Custom footer template.
|
* Custom footer template.
|
||||||
*/
|
*/
|
||||||
footer(): VNode[];
|
footer(): VNode[];
|
||||||
|
/**
|
||||||
|
* Custom previous icon template.
|
||||||
|
*/
|
||||||
|
previcon(): VNode[];
|
||||||
|
/**
|
||||||
|
* Custom next icon template.
|
||||||
|
*/
|
||||||
|
nexticon(): VNode[];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -15,7 +15,9 @@
|
||||||
@click="navBackward"
|
@click="navBackward"
|
||||||
v-bind="prevButtonProps"
|
v-bind="prevButtonProps"
|
||||||
>
|
>
|
||||||
<span :class="['p-carousel-prev-icon pi', { 'pi-chevron-left': !isVertical(), 'pi-chevron-up': isVertical() }]"></span>
|
<slot name="previcon">
|
||||||
|
<component :is="isVertical() ? 'ChevronUpIcon' : 'ChevronLeftIcon'" class="p-carousel-next-icon" />
|
||||||
|
</slot>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div class="p-carousel-items-content" :style="[{ height: isVertical() ? verticalViewPortHeight : 'auto' }]" @touchend="onTouchEnd" @touchstart="onTouchStart" @touchmove="onTouchMove">
|
<div class="p-carousel-items-content" :style="[{ height: isVertical() ? verticalViewPortHeight : 'auto' }]" @touchend="onTouchEnd" @touchstart="onTouchStart" @touchmove="onTouchMove">
|
||||||
|
@ -65,7 +67,9 @@
|
||||||
@click="navForward"
|
@click="navForward"
|
||||||
v-bind="nextButtonProps"
|
v-bind="nextButtonProps"
|
||||||
>
|
>
|
||||||
<span :class="['p-carousel-prev-icon pi', { 'pi-chevron-right': !isVertical(), 'pi-chevron-down': isVertical() }]"></span>
|
<slot name="nexticon">
|
||||||
|
<component :is="isVertical() ? 'ChevronDownIcon' : 'ChevronRightIcon'" class="p-carousel-prev-icon" />
|
||||||
|
</slot>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<ul v-if="totalIndicators >= 0 && showIndicators" ref="indicatorContent" :class="indicatorsContentClasses" @keydown="onIndicatorKeydown">
|
<ul v-if="totalIndicators >= 0 && showIndicators" ref="indicatorContent" :class="indicatorsContentClasses" @keydown="onIndicatorKeydown">
|
||||||
|
@ -82,7 +86,9 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ChevronDownIcon from 'primevue/icon/chevrondown';
|
import ChevronDownIcon from 'primevue/icon/chevrondown';
|
||||||
|
import ChevronLeftIcon from 'primevue/icon/chevronleft';
|
||||||
import ChevronRightIcon from 'primevue/icon/chevronright';
|
import ChevronRightIcon from 'primevue/icon/chevronright';
|
||||||
|
import ChevronUpIcon from 'primevue/icon/chevronup';
|
||||||
import Ripple from 'primevue/ripple';
|
import Ripple from 'primevue/ripple';
|
||||||
import { DomHandler, UniqueComponentId } from 'primevue/utils';
|
import { DomHandler, UniqueComponentId } from 'primevue/utils';
|
||||||
|
|
||||||
|
@ -658,7 +664,9 @@ export default {
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
ChevronRightIcon,
|
ChevronRightIcon,
|
||||||
ChevronDownIcon
|
ChevronDownIcon,
|
||||||
|
ChevronLeftIcon,
|
||||||
|
ChevronUpIcon
|
||||||
},
|
},
|
||||||
directives: {
|
directives: {
|
||||||
ripple: Ripple
|
ripple: Ripple
|
||||||
|
|
Loading…
Reference in New Issue