All Projects → sorin-davidoi → fullcalendar-calendar

sorin-davidoi / fullcalendar-calendar

Licence: other
Web Component wrapper for FullCalendar

Programming Languages

HTML
75241 projects

Projects that are alternatives of or similar to fullcalendar-calendar

Gulp Vulcanize
Concatenate a set of Web Components into one file
Stars: ✭ 101 (+380.95%)
Mutual labels:  polymer, web-components
Cleverstyle Framework
CleverStyle Framework is simple, scalable, fast and secure full-stack PHP framework
Stars: ✭ 150 (+614.29%)
Mutual labels:  polymer, web-components
Polymer Build
Moved to Polymer/tools monorepo
Stars: ✭ 107 (+409.52%)
Mutual labels:  polymer, web-components
L2t Paper Slider
Polymer element for displaying slides in a carousel
Stars: ✭ 53 (+152.38%)
Mutual labels:  polymer, web-components
Polyserve
Moved to Polymer/tools monorepo
Stars: ✭ 194 (+823.81%)
Mutual labels:  polymer, web-components
Flip Clock
A flip clock, timer and countdown made with Polymer
Stars: ✭ 69 (+228.57%)
Mutual labels:  polymer, web-components
Polydev
Automatic web components profiling in chrome devtools
Stars: ✭ 118 (+461.9%)
Mutual labels:  polymer, web-components
Gdg.es
The GDG Spain official website
Stars: ✭ 16 (-23.81%)
Mutual labels:  polymer, web-components
Polymer Skeleton
💀 Skeleton for Polymer 3 app with Webpack, PostCSS and Service Workers ready.
Stars: ✭ 185 (+780.95%)
Mutual labels:  polymer, web-components
Polymer Analyzer
Moved to Polymer/tools monorepo
Stars: ✭ 162 (+671.43%)
Mutual labels:  polymer, web-components
Vaadin Charts
Vaadin Charts is a feature-rich interactive graph library that answers the data visualization needs of modern web applications
Stars: ✭ 47 (+123.81%)
Mutual labels:  polymer, web-components
mc-viewer
🌐🏠 A Web Component for visualizing Minecraft schematics
Stars: ✭ 25 (+19.05%)
Mutual labels:  polymer, web-components
Contactlab Ui Components
DEPRECATED - Basic UI components for ContactLab UX design pattern library
Stars: ✭ 31 (+47.62%)
Mutual labels:  polymer, web-components
Polymer Bundler
Moved to Polymer/tools monorepo
Stars: ✭ 1,206 (+5642.86%)
Mutual labels:  polymer, web-components
Paper Timezone
Polymer based timezone selection component
Stars: ✭ 19 (-9.52%)
Mutual labels:  polymer, web-components
Hot Table
Handsontable - Best Data Grid Web Component with Spreadsheet Look and Feel.
Stars: ✭ 114 (+442.86%)
Mutual labels:  polymer, web-components
Polymer
Our original Web Component library.
Stars: ✭ 21,723 (+103342.86%)
Mutual labels:  polymer, web-components
Web Component Tester
Moved to Polymer/tools monorepo
Stars: ✭ 571 (+2619.05%)
Mutual labels:  polymer, web-components
Gwt Polymer Elements
Polymer Web Components for GWT. A collection of Material Design widgets for desktop and mobile.
Stars: ✭ 153 (+628.57%)
Mutual labels:  polymer, web-components
Storybook
📓 The UI component explorer. Develop, document, & test React, Vue, Angular, Web Components, Ember, Svelte & more!
Stars: ✭ 67,445 (+321066.67%)
Mutual labels:  polymer, web-components

fullcalendar-calendar

Web Component wrapper for FullCalendar.

Documentation and demo available here.

⚠️ This is no longer maintained and will not be ported to Polymer 2/3. However, PRs are welcomed for bugfixes. ⚠️

Install

bower install --save fullcalendar-calendar

Usage

<link rel="import" href="fullcalendar-theme.html">
<link rel="import" href="fullcalendar-calendar.html">

<style>
  #calendar {
    --fullcalendar: {
      background: white;
    }

    --fullcalendar-borders: {
      border-color: black;
    }

    --fullcalendar-day-numbers: {
        color: black;
    }

    --fullcalendar-day-headers: {
        color: black;
        font-weight: 500;
    }

    --fullcalendar-today: {
        background: black;
    }

    --fullcalendar-event: {
        background-color: magenta;
        border-color: magenta;
    }
  }
</style>

<fullcalendar-calendar id="calendar"></fullcalendar-calendar>
<fullcalendar-calendar></fullcalendar-calendar>

fullcalendar-calendar.html includes all the required dependencies (jQuery, moment and FullCalendar). However, since these libraries do not provide HTML import files, the Javascript files are loaded directly. This may prove problematic if you use any of the libraries in other part of your project, since you will load them twice. If this is the case, use fullcalendar-calendar-no-deps.html, which includes just the WebComponent wrapper, without the dependencies. However, you must now load the dependencies yourself:

<!-- The order is important, jquery and moment must come before fullcalendar -->
<script src='jquery/dist/jquery.min.js'></script>
<script src='moment/min/moment.min.js'></script>
<script src='fullcalendar/dist/fullcalendar.min.js'></script>

<link rel="import" href="fullcalendar-theme.html">
<link rel="import" href="fullcalendar-calendar-no-deps.html">

For all the options please consult the documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].