UMD Web Components Library
    Preparing search index...

    Variable eventFeedConst

    eventFeed: ComponentRegistration = ...

    Event Slider Feed

    A dynamic slider component that automatically fetches and displays events from a feed. Supports both general events and academic calendar feeds with category filtering. Provides real-time event updates with automatic date formatting and responsive layout.

    <umd-element-slider-events-feed>

    • headline - Section headline (optional, accepts: heading elements)
    • actions - Call-to-action links (optional, accepts: a, button)
    • data-theme - Color theme of the component:
      • dark - Dark background with light text
    • data-token - API token for fetching events (required)
    • data-feed-type - Feed type:
      • academic - Academic calendar events
      • Default - General events feed
    • data-filter-group-ids - Comma-separated list of event categories to filter
    • resize - Triggers recalculation of date element sizes
    <!-- Basic events feed slider -->
    <umd-element-slider-events-feed data-token="events-api-key">
    <h2 slot="headline">Upcoming Events</h2>
    <a slot="actions" href="/events">All Events</a>
    </umd-element-slider-events-feed>
    <!-- Academic calendar feed -->
    <umd-element-slider-events-feed
    data-token="academic-api-key"
    data-feed-type="academic">
    <h2 slot="headline">Academic Calendar</h2>
    <div slot="actions">
    <a href="/academic-calendar">Full Calendar</a>
    <a href="/academic-calendar/deadlines">Important Deadlines</a>
    </div>
    </umd-element-slider-events-feed>
    <!-- Filtered events with dark theme -->
    <umd-element-slider-events-feed
    data-token="events-api-key"
    data-theme="dark"
    data-filter-group-ids="athletics,recreation">
    <h2 slot="headline">Sports & Recreation</h2>
    <a slot="actions" href="/athletics">Athletics Home</a>
    </umd-element-slider-events-feed>
    <!-- Multiple category filters -->
    <umd-element-slider-events-feed
    data-token="events-api-key"
    data-filter-group-ids="workshop,seminar,lecture">
    <h2 slot="headline">Learning Opportunities</h2>
    <div slot="actions">
    <a href="/workshops">All Workshops</a>
    <a href="/seminars">Seminar Series</a>
    </div>
    </umd-element-slider-events-feed>

    1.0.0