![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@uportal/content-carousel
Advanced tools
https://uportal-project.github.io/uPortal-web-components/en/components/content-carousel/demo
# install with npm
npm install @uportal/content-carousel
# install with yarn
yarn add @uportal/content-carousel
install with maven
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>uportal__content-carousel</artifactId>
<version>{version number goes here}</version>
</dependency>
install with gradle
compile 'org.webjars.npm:uportal__content-carousel:{version number goes here}'
The component requires a type. It also allows for a carousel-height
(in rem units), a fit-to-container
property which causes it to size to its container (horizontally), and slick-options
.
<link
href="https://unpkg.com/@uportal/content-carousel/dist/slick-theme.css"
rel="stylesheet"
/>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/@uportal/content-carousel"></script>
<content-carousel
type="rss"
source="/hero.rss"
slick-options='{ "slidesToShow": 1, "infinite": true, "arrows": true }'
carousel-height="30rem"
fit-to-container="true"
>
</content-carousel>
type
(required, enum[rss, portlet, passthrough]): type of data source to use.source
(optional, string): location or content to render in slides.slick-options
(optional, slick settings): configuration for slick carousel.carousel-height
(optional, string): css height to apply on slides.fit-to-container
(optional, boolean): by default carousel will fit content, true
will make carousel match width of surrounding container.Currently this component supports CSS Variables for the following abilities. Defining the following variables will change the function for the component accordingly. They will fall back to the default behavior described below.
You should define this in your custom stylesheet.
:root {
--cc-hero-text-display: block; // Affects the grey bar at the bottom of slides. Default is 'block'.
}
There are three data source types currently supported RSS, Portlet, and Passthrough.
RSS can read any RSS feed that does not require authentication.
The URL of the feed must be passed as the source
attribute to the component.
<content-carousel type="rss" source="/content.rss"> </content-carousel>
Portlet leverages the portlet registry to display slides.
The URL to the registry must be passed as the source
attribute to the component.
The component will automatically authentice as the current user with uPortal.
Specific portlet categories can be displayed by the component by changing the URL.
For example /portletRegistry.json?category=Academics
will display only portlets within that category.
<content-carousel type="portlet" source="/portletRegistry.json">
</content-carousel>
Pass through allows for arbitrary HTML to be rendered as slides.
Add the HTML into the <content-carousel>
and include class="slick-item"
on
each slide be be rendered.
<content-carousel type="passthrough">
<div class="slick-item">arbitrary</div>
<div class="slick-item">content</div>
<div class="slick-item">displayed</div>
<div class="slick-item">as</div>
<div class="slick-item">slides</div>
</content-carousel>
The HTML content of the component can also be modified using slots.
The header
slot goes about the slides, and is outside the slide deck.
<content-carousel type="rss" source="/content.rss">
<h1 slot="header">Example Header</h1>
</content-carousel>
The empty
slot replaces the carousel when no content was found.
<content-carousel type="rss" source="/content.rss">
<p slot="empty">Uh Oh, that couldn't be found.</p>
</content-carousel>
:warning: leveraging the Vue's templating language within a slide will not work until https://github.com/vuejs/vue-web-component-wrapper/issues/8 is resolved :warning:
The slide
slot the rendering of individual slides to be changed.
The template has access to the following data to display:
interface CarouselItem {
id: string;
destinationUrl?: string;
imageUrl?: string;
altText?: string;
title?: string;
description?: string;
}
<content-carousel type="rss" source="example.rss">
<template slot="slide" slot-scope="props">
<h1 class="slick-item">{{ props.item.title }}</h1>
</template>
</content-carousel>
The component source can also be imported and used directly within other Vue projects.
import contentCarousel from '@uportal/content-carousel/src/components/ContentCarousel.vue';
FAQs
Display portlet content in a browsable carousel
We found that @uportal/content-carousel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.