UNPKG

primevue

Version:

PrimeVue is a premium UI library for Vue featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock, wh

88 lines (82 loc) 3.16 kB
import { mergeProps, openBlock, createBlock, resolveDynamicComponent, withCtx, renderSlot, normalizeClass } from 'vue'; import BaseComponent from '@primevue/core/basecomponent'; import CarouselNextStyle from 'primevue/carouselnext/style'; var script$1 = { name: 'BaseCarouselNext', "extends": BaseComponent, props: { as: { type: [String, Object], "default": 'BUTTON' }, asChild: { type: Boolean, "default": false }, disabled: { type: Boolean, "default": false } }, style: CarouselNextStyle, provide: function provide() { return { $pcCarouselNext: this, $parentInstance: this }; } }; var script = { name: 'CarouselNext', "extends": script$1, inheritAttrs: false, inject: ['$pcCarousel'], computed: { effectiveDisabled: function effectiveDisabled() { var _this$$pcCarousel; return this.disabled || !!((_this$$pcCarousel = this.$pcCarousel) !== null && _this$$pcCarousel !== void 0 && _this$$pcCarousel.isNextDisabled); }, attrs: function attrs() { return mergeProps(this.asAttrs, this.a11yAttrs, this.ptmi('root')); }, asAttrs: function asAttrs() { return this.as === 'BUTTON' ? { type: 'button', disabled: this.effectiveDisabled } : undefined; }, a11yAttrs: function a11yAttrs() { var _this$$pcCarousel2, _this$$pcCarousel3, _this$$pcCarousel4, _this$$pcCarousel5, _this$$pcCarousel6, _this$$pcCarousel7; return { 'aria-label': (_this$$pcCarousel2 = this.$pcCarousel) === null || _this$$pcCarousel2 === void 0 ? void 0 : _this$$pcCarousel2.ariaNextButtonLabel, 'data-pc-name': 'carouselnext', 'data-pc-section': 'root', disabled: this.effectiveDisabled, 'data-orientation': (_this$$pcCarousel3 = this.$pcCarousel) === null || _this$$pcCarousel3 === void 0 ? void 0 : _this$$pcCarousel3.orientation, 'data-align': (_this$$pcCarousel4 = this.$pcCarousel) === null || _this$$pcCarousel4 === void 0 ? void 0 : _this$$pcCarousel4.align, 'data-page': (_this$$pcCarousel5 = this.$pcCarousel) === null || _this$$pcCarousel5 === void 0 ? void 0 : _this$$pcCarousel5.d_page, 'data-disabled': this.effectiveDisabled, 'data-swiping': (_this$$pcCarousel6 = this.$pcCarousel) !== null && _this$$pcCarousel6 !== void 0 && _this$$pcCarousel6.swiping ? '' : undefined, onClick: (_this$$pcCarousel7 = this.$pcCarousel) === null || _this$$pcCarousel7 === void 0 ? void 0 : _this$$pcCarousel7.next }; } } }; function render(_ctx, _cache, $props, $setup, $data, $options) { return !_ctx.asChild ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.as), mergeProps({ key: 0, "class": _ctx.cx('root') }, $options.attrs), { "default": withCtx(function () { return [renderSlot(_ctx.$slots, "default")]; }), _: 3 }, 16, ["class"])) : renderSlot(_ctx.$slots, "default", { key: 1, a11yAttrs: $options.a11yAttrs, "class": normalizeClass(_ctx.cx('root')), disabled: $options.effectiveDisabled }); } script.render = render; export { script as default };