Gathering detailed insights and metrics for @mariana-tek/ember-fullcalendar
Gathering detailed insights and metrics for @mariana-tek/ember-fullcalendar
Gathering detailed insights and metrics for @mariana-tek/ember-fullcalendar
Gathering detailed insights and metrics for @mariana-tek/ember-fullcalendar
An Ember addon that wraps fullcalendar in a component
npm install @mariana-tek/ember-fullcalendar
Typescript
Module System
Min. Node Version
Node Version
NPM Version
24.9
Supply Chain
48
Quality
68.4
Maintenance
25
Vulnerability
94.6
License
JavaScript (84.7%)
HTML (15.3%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
16 Stars
8 Commits
3 Forks
3 Watchers
3 Branches
1 Contributors
Updated on May 30, 2024
Latest Version
1.0.1
Package Id
@mariana-tek/ember-fullcalendar@1.0.1
Unpacked Size
9.74 kB
Size
4.25 kB
File Count
13
NPM Version
6.11.3
Node Version
12.11.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
31
An Ember addon that wraps Fullcalendar (v4) in a component.
ember install @mariana-tek/ember-fullcalendar
This addon includes @fullcalendar/core
as a dependency, but does not include any fullcalendar plugins which you will need to install manually.
As Fullcalendar v4 has a more "a la carte" structure, you will need to install the plugins you plan to use. Documentation can be found at https://fullcalendar.io/docs/initialize-es6 and https://fullcalendar.io/docs/plugin-index.
1// ember-cli-build.js 2 3'use strict'; 4 5const EmberApp = require('ember-cli/lib/broccoli/ember-app'); 6 7module.exports = function(defaults) { 8 // ...all your configuration 9 10 // If you install the @fullcalendar/daygrid plugin, 11 // you would import it's stylesheet like so: 12 app.import('node_modules/@fullcalendar/daygrid/main.css'); 13 14 return app.toTree(); 15};
Inspired by fullcalendar-react
this addon is written as a very lightweight wrapper around Fullcalendar v4. With one exception (getFullCalendarRef
) the addon simply passes attributes through to Fullcalendar. If Fullcalendar has a complimentary option it will be utilized, otherwise the attribute will simply be ignored. To use this plugin you will need to be familiar with Fullcalendar's API.
1<FullCalendar 2 @defaultDate={{this.defaultDate}} 3 @defaultView={{this.defaultView}} 4 @events={{this.events}} 5 @plugins={{this.plugins}} 6/>
getFullCalendarRef
1<FullCalendar 2 @defaultDate={{this.defaultDate}} 3 @getFullCalendarRef={{action (mut this ourCalendarRef)}} 4/>
Most attributes (e.g. eventClick
, slotDuration
) can be passed directly to the component. A few parts of Fullcalendar's API (e.g. changeView
, gotoDate
) will require you to pass an action or function to getFullCalendarRef
that stores the reference to fullcalendar so that you can call it directly:
1this.ourCalendarRef.gotoDate(new Date(1999, 1, 1))
See the Contributing guide for details.
This project is licensed under the MIT License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/8 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
135 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More